summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/datadog-agent.nix
Commit message (Collapse)AuthorAge
* datadog-agent: add option to enable trace agentRob Vermaas2018-10-23
|
* datadog-agent: remove privateTmp=trueDomen Kožar2018-09-19
| | | | This allows postgres integration to connect to socket in /tmp
* datadog: add live process monitoringDomen Kožar2018-09-13
|
* nixos: remove unneeded api_key from configDomen Kožar2018-09-13
|
* nixos/datadog-agent: Fix type of use_dogstatsd (#45587)Sarah Brofeldt2018-08-25
|
* nixos/datadog-agent: Add option to configure datadog integrationsVincent Ambo2018-08-09
| | | | | | | | | | Introduces an option `services.datadog-agent.extraIntegrations` that can be set to include additional Datadog agent integrations from the integrations-core repository. Documentation and an example is provided with the change. Relates to NixOS/nixpkgs#40399
* nixos/datadog-agent: Refactor to allow arbitrary check configsVincent Ambo2018-08-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactors the datadog-agent (i.e. V6) module to let users configure arbitrary checks, not just a limited set, without having to resort to linking the files manually and updating the systemd unit. Checks are now configured via a `services.datadog-agent.checks` option which takes an attribute set in which the keys refer directly to Datadog check names, and the values are attribute sets representing Datadog's configuration structure. With this mechanism users can configure arbitrary integrations, for example for the `ntp`-check, simply by saying: services.datadog-agent.checks.ntp = { init_config = null; # ... other check configuration options as per Datadog # documentation }; The previous check-specific configuration options for non-default checks have been removed. Disk & network check configuration options have been kept rather than making them a `default`-value of the `checks`-option because they will be overridden by user-configurations in that case. Relates to NixOS/nixpkgs#40399.
* nixos/datadog-agent: add moduleRodney Lorrimar2018-08-09
This is the new v6 version of datadog-agent. The old v5 module is kept as dd-agent.