From d943b11e0a6ccf95fc1d52d7f69bbdc4e6babd79 Mon Sep 17 00:00:00 2001 From: Kaveet Laxmidas Date: Tue, 24 Jun 2025 15:22:50 -0500 Subject: [PATCH] fix(typo): Update name of CompositeExperimentalMetricsBackend The documentation incorrectly spells "CompositeExperimentalMetricsBackend," which is defined here with the proposed spelling: https://github.com/getsentry/sentry/blob/377e7d8bd378016ea1d22d6900cdced96740889b/src/sentry/metrics/composite_experimental.py#L11 --- develop-docs/backend/application-domains/metrics.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/develop-docs/backend/application-domains/metrics.mdx b/develop-docs/backend/application-domains/metrics.mdx index 93bae8f8504bf..c00b9013e08df 100644 --- a/develop-docs/backend/application-domains/metrics.mdx +++ b/develop-docs/backend/application-domains/metrics.mdx @@ -145,9 +145,9 @@ LOGGING['handlers']['console:metrics'] = { } ``` -## Composit Experimental Backend +## Composite Experimental Backend -The current implementation of the `MetricsBackend` is known as `CompositExperimentalMetricsBackend`. The `CompositeExperimentalMetricsBackend` reports all operations to both Datadog and Sentry. For this reason, you will be able to see your metrics on both platforms. +The current implementation of the `MetricsBackend` is known as `CompositeExperimentalMetricsBackend`. The `CompositeExperimentalMetricsBackend` reports all operations to both Datadog and Sentry. For this reason, you will be able to see your metrics on both platforms. ```python SENTRY_METRICS_BACKEND = "sentry.metrics.composite_experimental.CompositeExperimentalMetricsBackend"