Skip to content

usm: Added chef, puppet, ansible #16723

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

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 32 additions & 2 deletions content/en/universal_service_monitoring/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Universal Service Monitoring
kind: documentation
aliases:
aliases:
- /tracing/universal_service_monitoring/
further_reading:
- link: "https://www.datadoghq.com/blog/universal-service-monitoring-datadog/"
Expand Down Expand Up @@ -281,6 +281,36 @@ If you configure the `system-probe` with environment variables, as is common wit
DD_SYSTEM_PROBE_SERVICE_MONITORING_ENABLED=true
```

{{% /tab %}}
{{% tab "Chef" %}}

Set the following attributes on your nodes:

```rb
node["datadog"]["system_probe"]["service_monitoring_enabled"] = true
```

{{% /tab %}}
{{% tab "Puppet" %}}

Set `service_monitoring_enabled`:

```conf
class { 'datadog_agent::system_probe':
service_monitoring_enabled => true,
}
```

{{% /tab %}}
{{% tab "Ansible" %}}

Add the following attributes in your playbook:

```yaml
service_monitoring_config:
enabled: true
```

{{% /tab %}}
{{% tab "Windows" %}}

Expand Down Expand Up @@ -320,7 +350,7 @@ After enabling Universal Service Monitoring, you can:

- Navigate to **APM** > **Service Catalog** or **APM** > **Service Map** to [visualize your services and their dependencies][3].

- Click into specific Service pages to see golden signal metrics (requests, errors, and duration), and correlate these against recent code changes with [Deployment Tracking][2].
- Click into specific Service pages to see golden signal metrics (requests, errors, and duration), and correlate these against recent code changes with [Deployment Tracking][2].

- Create [monitors][4], [dashboards][5], and [SLOs][6] using the `universal.http.*` metrics.

Expand Down