From f46f39fdead6e2b0b92e354d6d597a92576e9be0 Mon Sep 17 00:00:00 2001 From: sspaeti Date: Fri, 18 Nov 2022 15:51:17 +0100 Subject: [PATCH 1/3] add reference from metric collection --- docs/operator-guides/collecting-metrics.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/operator-guides/collecting-metrics.md b/docs/operator-guides/collecting-metrics.md index 6c21b274022b..3fc6a1e57460 100644 --- a/docs/operator-guides/collecting-metrics.md +++ b/docs/operator-guides/collecting-metrics.md @@ -266,3 +266,6 @@ Configure two additional env vars to the Datadog endpoint: ## Metrics Visit [OssMetricsRegistry.java](https://github.com/airbytehq/airbyte/blob/master/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/OssMetricsRegistry.java) to get a complete list of metrics Airbyte is sending. +## Additional information + +A different approach to collection metrics shows the tutorial [Airbyte Monitoring with dbt and Metabase](https://airbyte.com/blog/airbyte-monitoring-with-dbt-and-metabase) by accessing Airbyte's Postgres DB. The code is open on [airbytehq/open-data-stack](https://github.com/airbytehq/open-data-stack). From 562aae18a98f4aa9de5adaa2d101111d718187d5 Mon Sep 17 00:00:00 2001 From: sspaeti Date: Fri, 25 Nov 2022 09:57:22 +0100 Subject: [PATCH 2/3] adding more context --- docs/operator-guides/collecting-metrics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/operator-guides/collecting-metrics.md b/docs/operator-guides/collecting-metrics.md index 3fc6a1e57460..77f95be8b319 100644 --- a/docs/operator-guides/collecting-metrics.md +++ b/docs/operator-guides/collecting-metrics.md @@ -268,4 +268,4 @@ Visit [OssMetricsRegistry.java](https://github.com/airbytehq/airbyte/blob/master ## Additional information -A different approach to collection metrics shows the tutorial [Airbyte Monitoring with dbt and Metabase](https://airbyte.com/blog/airbyte-monitoring-with-dbt-and-metabase) by accessing Airbyte's Postgres DB. The code is open on [airbytehq/open-data-stack](https://github.com/airbytehq/open-data-stack). +Suppose you are looking for a non-production way of collecting metrics with dbt and Metabase, the tutorial [Airbyte Monitoring with dbt and Metabase](https://airbyte.com/blog/airbyte-monitoring-with-dbt-and-metabase) by accessing Airbyte's Postgres DB. The source code is open on [airbytehq/open-data-stack](https://github.com/airbytehq/open-data-stack). Think of it as an exploratory for data analysts and data engineers of building a dashboard on top of the existing Airbyte Postgres database versus the Prometheus more for DevOps engineers in production. From 3daed49da2b9c832663cbe21fd3fa3c2fef0cd29 Mon Sep 17 00:00:00 2001 From: sspaeti Date: Fri, 25 Nov 2022 09:58:05 +0100 Subject: [PATCH 3/3] remove empty line --- docs/operator-guides/collecting-metrics.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/operator-guides/collecting-metrics.md b/docs/operator-guides/collecting-metrics.md index 77f95be8b319..03013efb75a6 100644 --- a/docs/operator-guides/collecting-metrics.md +++ b/docs/operator-guides/collecting-metrics.md @@ -267,5 +267,4 @@ Configure two additional env vars to the Datadog endpoint: Visit [OssMetricsRegistry.java](https://github.com/airbytehq/airbyte/blob/master/airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/OssMetricsRegistry.java) to get a complete list of metrics Airbyte is sending. ## Additional information - Suppose you are looking for a non-production way of collecting metrics with dbt and Metabase, the tutorial [Airbyte Monitoring with dbt and Metabase](https://airbyte.com/blog/airbyte-monitoring-with-dbt-and-metabase) by accessing Airbyte's Postgres DB. The source code is open on [airbytehq/open-data-stack](https://github.com/airbytehq/open-data-stack). Think of it as an exploratory for data analysts and data engineers of building a dashboard on top of the existing Airbyte Postgres database versus the Prometheus more for DevOps engineers in production.