Skip to content

Instantly share code, notes, and snippets.

@alq666
Last active December 24, 2015 03:29
Show Gist options
  • Select an option

  • Save alq666/6738119 to your computer and use it in GitHub Desktop.

Select an option

Save alq666/6738119 to your computer and use it in GitHub Desktop.
An example of datadog's chef recipe for nginx
default_overrides({
:datadog => {
:api_key => "...",
# ...
}
})
default_overrides({
:datadog => {
:instances => [
{
:nginx_status_url => "http://localhost:81/nginx_status/",
:tags => ["prod"]
},
]
},
})
run_list(
# ...
"recipe[datadog::nginx]"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment