Repository URL to install this package:
Version:
1:7.26.0-1 ▾
|
datadog-agent
/
opt
/
datadog-agent
/
embedded
/
lib
/
python3.8
/
site-packages
/
datadog_linkerd-2.7.0.dist-info
/
METADATA
|
---|
Metadata-Version: 2.1
Name: datadog-linkerd
Version: 2.7.0
Summary: The Linkerd check
Home-page: https://github.com/DataDog/integrations-core
Author: Datadog
Author-email: packages@datadoghq.com
License: BSD
Keywords: datadog agent linkerd check
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: System :: Monitoring
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Description-Content-Type: text/markdown
Requires-Dist: datadog-checks-base (>=16.2.0)
Provides-Extra: deps
# Linkerd Integration
## Overview
This check collects distributed system observability metrics from [Linkerd][1].
## Setup
### Installation
The Linkerd check is included in the [Datadog Agent][2] package, so you don't need to install anything else on your server.
### Configuration
<!-- xxx tabs xxx -->
<!-- xxx tab "Host" xxx -->
#### Host
To configure this check for an Agent running on a host:
1. Edit the `linkerd.d/conf.yaml` file, in the `conf.d/` folder at the root of your [Agent's configuration directory][3]. See [sample linkerd.d/conf.yaml][4] for all available configuration options.
2. [Restart the Agent][5].
<!-- xxz tab xxx -->
<!-- xxx tab "Containerized" xxx -->
#### Containerized
For containerized environments, see the [Autodiscovery Integration Templates][6] for guidance on applying the parameters below.
##### Linkerd v1
| Parameter | Value |
| -------------------- | --------------------------------------------------------------------- |
| `<INTEGRATION_NAME>` | `linkerd` |
| `<INIT_CONFIG>` | blank or `{}` |
| `<INSTANCE_CONFIG>` | `{"prometheus_url": "http://%%host%%:9990/admin/metrics/prometheus"}` |
##### Linkerd v2
| Parameter | Value |
| -------------------- | --------------------------------------------------------------------- |
| `<INTEGRATION_NAME>` | `linkerd` |
| `<INIT_CONFIG>` | blank or `{}` |
| `<INSTANCE_CONFIG>` | `{"prometheus_url": "http://%%host%%:4191/metrics"}` |
##### Log collection
Collecting logs is disabled by default in the Datadog Agent. To enable it, see [Kubernetes log collection][12].
| Parameter | Value |
| -------------- | ---------------------------------------------------- |
| `<LOG_CONFIG>` | `{"source": "linkerd", "service": "<SERVICE_NAME>"}` |
To increase the verbosity of the data plane logs, see [the official Linkerd documentation][13].
<!-- xxz tab xxx -->
<!-- xxz tabs xxx -->
### Validation
[Run the Agent's status subcommand][7] and look for `linkerd` under the Checks section.
## Data Collected
### Metrics
See [metadata.csv][8] for a list of default metrics provided by this integration.
For linkerd v1, see [finagle metrics docs][9] for a detailed description of some of the available metrics and [this gist][10] for an example of metrics exposed by linkerd.
Attention: Depending on your linkerd configuration, some metrics might not be exposed by linkerd.
To list the metrics exposed by your current configuration, run
```bash
curl <linkerd_prometheus_endpoint>
```
Where `linkerd_prometheus_endpoint` is the linkerd prometheus endpoint (you should use the same value as the `prometheus_url` config key in your `linkerd.yaml`)
If you need to use a metric that is not provided by default, you can add an entry to `linkerd.yaml`.
Simply follow the examples present in the [default configuration][4].
### Service Checks
**linkerd.prometheus.health**:<br>
Returns `CRITICAL` if the Agent fails to connect to the prometheus endpoint, otherwise returns `OK`.
## Troubleshooting
Need help? Contact [Datadog support][11].
[1]: https://linkerd.io
[2]: https://app.datadoghq.com/account/settings#agent
[3]: https://docs.datadoghq.com/agent/guide/agent-configuration-files/#agent-configuration-directory
[4]: https://github.com/DataDog/integrations-core/blob/master/linkerd/datadog_checks/linkerd/data/conf.yaml.example
[5]: https://docs.datadoghq.com/agent/guide/agent-commands/?tab=agentv6v7#restart-the-agent
[6]: https://docs.datadoghq.com/agent/kubernetes/integrations/
[7]: https://docs.datadoghq.com/agent/guide/agent-commands/#agent-status-and-information
[8]: https://github.com/DataDog/integrations-core/blob/master/linkerd/metadata.csv
[9]: https://twitter.github.io/finagle/guide/Metrics.html
[10]: https://gist.githubusercontent.com/arbll/2f63a5375a4d6d5acface6ca8a51e2ab/raw/bc35ed4f0f4bac7e2643a6009f45f9068f4c1d12/gistfile1.txt
[11]: https://docs.datadoghq.com/help/
[12]: https://docs.datadoghq.com/agent/kubernetes/log/
[13]: https://linkerd.io/2/tasks/modifying-proxy-log-level/