Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Fix Datadog integration update example #2405

Merged
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
6 changes: 3 additions & 3 deletions docs/products/kafka/howto/datadog-customised-metrics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ As example to sent the ``kafka.log.log_size`` and ``kafka.log.log_end_offset`` m

.. code::

avn service integration-update \
-c kafka_custom_metrics=['kafka.log.log_size','kafka.log.log_end_offset'] \
-c include_topics=['topic1','topic2'] \
avn service integration-update \
-c kafka_custom_metrics="['kafka.log.log_size','kafka.log.log_end_offset']" \
-c include_topics="['topic1','topic2']" \
INTEGRATION_ID

Once the update is successful and metrics have been collected and pushed, you should see them in your Datadog explorer.
Expand Down
Loading