-
Notifications
You must be signed in to change notification settings - Fork 813
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable ntp check by default #1433
Conversation
A host reporting more than 2-3 minutes off NTP time will throw off our alerting engine. We should set the default to 1 minute so when people enable the check they get the best results.
A higher ntp offset will prevent monitors to work properly and points submitted too far back in the past or the future are discarded.
Also: * Add a better way to have checks enabled by default * Fix #620 * Ensure that we cast exception as string (otherwise pickle can fail when persisting the collector status)
Looks good to me, will merge once it passed the CI. |
Hi @remh ! |
Hey @miketheman ! If a .yaml file is present, the agent will use this one. Logic is here: Lines 785 to 807 in c7cb52d
Does that make sense ? |
So basically this PR DataDog/chef-datadog#182 shouldn't cause any trouble. |
@remh Thanks! |
Also:
when persisting the collector status)
Supersedes #1430