Skip to content
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

Add tolaration and auto discovery notes for redpanda integration #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
22 changes: 21 additions & 1 deletion redpanda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,16 @@ agents:
tag: <NEW_TAG>
repository: <YOUR_PRIVATE_REPOSITORY>/<AGENT_NAME>
```
4. Also make sure to change toleration settings like the following:
```yaml
tolerations:
- key: 'redpanda-node'
operator: 'Equal'
value: 'true'
effect: NoSchedule
```

4. Use the new `values.yaml` file to upgrade the Agent:
5. Use the new `values.yaml` file to upgrade the Agent:

```shell
helm upgrade -f values.yaml <RELEASE_NAME> datadog/datadog
Expand Down Expand Up @@ -103,6 +111,18 @@ For containerized environments, Autodiscovery is configured by default after the

Metrics are automatically collected in Datadog's server. For more information, see [Autodiscovery Integration Templates][2].

If you are using a Helm chart add conf resource like:

```yaml
confd:
redpanda.yaml: |-
ad_identifiers:
- redpanda
init_config:
instances:
- openmetrics_endpoint: http://%%host%%:9644/metrics
```

##### Log collection

By default, log collection is disabled in the Datadog Agent. Log collection is available for Agent v6.0+.
Expand Down