You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
305 B
12 lines
305 B
#!/usr/bin/env bash
|
|
|
|
cd /tmp/
|
|
|
|
curl -sSO https://dl.google.com/cloudagents/install-monitoring-agent.sh
|
|
sudo bash install-monitoring-agent.sh
|
|
rm install-monitoring-agent.sh
|
|
|
|
curl -sSO https://dl.google.com/cloudagents/install-logging-agent.sh
|
|
sudo bash install-logging-agent.sh
|
|
rm install-logging-agent.sh
|