Laravel Community Tools by
Tighten
Laravel Versions
PHP Releases
Nova Packages
Laravel Tricks
Forge Recipes
Forge Recipes
Staff Picks
All Recipes
Login
Staff Picks
All Recipes
Login
Back to Recipes
Install Datadog Agent
9 years ago
iolson
un-tested
Clone
bash
Copy
# Set up apt so that it can download through https: sudo apt-get update sudo apt-get install apt-transport-https # Set up the Datadog deb repo on your system and import Datadog's apt key: sudo sh -c "echo 'deb http://apt.datadoghq.com/ stable main' > /etc/apt/sources.list.d/datadog.list" sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C7A7DA52 # Update your local apt repo and install the Agent: sudo apt-get update sudo apt-get install datadog-agent # Copy the example config into place and plug in your API key: sudo sh -c "sed 's/api_key:.*/api_key: <DATADOG API KEY>/' /etc/dd-agent/datadog.conf.example > /etc/dd-agent/datadog.conf" # Start the Agent: sudo /etc/init.d/datadog-agent start
Comments
No comments yet.
Log in
to leave a comment.