From 3d56a3eb3602aea285587db018e78bc9e4402355 Mon Sep 17 00:00:00 2001 From: RizaFarheen Date: Wed, 14 Dec 2022 13:05:29 +0400 Subject: [PATCH] Remove docs --- docs/Conductor/adding-datadog.md | 35 -------------------------------- sidebars.js | 8 -------- 2 files changed, 43 deletions(-) delete mode 100644 docs/Conductor/adding-datadog.md diff --git a/docs/Conductor/adding-datadog.md b/docs/Conductor/adding-datadog.md deleted file mode 100644 index 32b70a50..00000000 --- a/docs/Conductor/adding-datadog.md +++ /dev/null @@ -1,35 +0,0 @@ -# DataDog Integration - -Datadog is an observability service that monitors various tools and servers through a SaaS platform. Conductor is a microservice and workflow orchestration platform with a wealth of metrics that can be used to monitor the server. If you are already using Datadog, you might just want to integrate these metrics into your DataDog instance. Read on to learn how! - -## Conductor Integration - -You can find the instance of Datadog integration in the [Community](https://github.com/Netflix/conductor-community) version of Conductor. This guide will take you through the steps in integrating Datadog with the Open Source version of Conductor. - -## Setting Up DataDog - -We'll assume that the Conductor is currently running on your system. If not, clone the GitHub repository and get it [running locally](/content/docs/getting-started/install/running-locally-docker). - -1. First, we will add the metrics dependency to the `server/build.gradle` file. - -```java - implementation 'com.netflix.conductor:conductor-metrics:3.10.0' -``` -2. Next, update the `application.properties` file with the Datadog parameters. This can be found in `server/src/main/resources`. There are already a few Datadog entries here, but let's just fully replace them with the following: - - -```shell -# Turn on the metrics -management.metrics.export.datadog.enabled=true -# Check the URL of your datadog instance. By default, they are sent to https://app.datadoghq.com/ -management.metrics.export.datadog.uri=https://us5.datadoghq.com -# Your secret key from Datadog -management.metrics.export.datadog.api-key= -# Optional -management.metrics.export.datadog.step=10s -# Turns on the Conductor specific metrics -conductor.metrics-datadog.enabled=true - -``` - -Now restart your Conductor server, and you should see metrics flowing into your Datadog instance right away! \ No newline at end of file diff --git a/sidebars.js b/sidebars.js index 3c7f64cb..9107bf36 100644 --- a/sidebars.js +++ b/sidebars.js @@ -257,14 +257,6 @@ module.exports = { 'getting-started/concepts/access-control-tags' ], }, - { - type: 'category', - label: 'Extending Conductor', - collapsed: true, - items: [ - 'Conductor/adding-datadog' - ], - }, { type: 'category', label: 'Use Cases',