-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f29a4c
commit 806f0d0
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
include_recipe 'datadog::dd-agent' | ||
|
||
# Build a data structure with configuration. | ||
# @see https://github.com/DataDog/dd-agent/blob/master/conf.d/ntp.yaml.example | ||
# @example | ||
# node.override['datadog']['ntp']['instances'] = [ | ||
# { | ||
# 'offset_threshold' => '600', | ||
# 'host' => 'pool.ntp.org', | ||
# 'port' => 'ntp', | ||
# 'version' => '3', | ||
# 'timeout' => '5' | ||
# } | ||
# ] | ||
datadog_monitor 'ntp' do | ||
instances node['datadog']['ntp']['instances'] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<%# Sanitize the compiled Mash to standard Array/Hash objects by way of JSON -%> | ||
<%= JSON.parse(({ 'instances' => @instances }).to_json).to_yaml %> | ||
|
||
init_config: | ||
# Nothing to configure here |