From b4fb7c775616bbee857cc48ea081d075c2410809 Mon Sep 17 00:00:00 2001 From: Yevhenii Solomchenko Date: Fri, 26 Jul 2024 11:27:45 +0200 Subject: [PATCH 1/2] Update documentation --- tools/MatrixHelper/SettingsData.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/MatrixHelper/SettingsData.cs b/tools/MatrixHelper/SettingsData.cs index f87f8217..a5040329 100644 --- a/tools/MatrixHelper/SettingsData.cs +++ b/tools/MatrixHelper/SettingsData.cs @@ -47,6 +47,7 @@ public static Setting[] GetSettings() new("OTEL_EXPORTER_OTLP_ENDPOINT", "The URL to where traces and metrics are sent. The default value is `http://localhost:4318`. Setting a value overrides the `SPLUNK_REALM` environment variable.", string.Empty, "string", ExporterCategory), new("SPLUNK_REALM", "The name of your organization's realm, for example, `us0`. When you set the realm, telemetry is sent directly to the ingest endpoint of Splunk Observability Cloud, bypassing the Splunk Distribution of OpenTelemetry Collector.", string.Empty, "string", ExporterCategory), new("SPLUNK_ACCESS_TOKEN", "A Splunk authentication token that lets exporters send data directly to Splunk Observability Cloud. Unset by default. Required if you need to send data to the Splunk Observability Cloud ingest endpoint.", string.Empty, "string", ExporterCategory), + new("OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE", "The aggregation temporality to use on the basis of instrument kind. The available options are: `Cumulative`, `Delta` and `LowMemory` is not working", "cumulative", "string", ExporterCategory), // profiling new("SPLUNK_PROFILER_ENABLED", "Activates AlwaysOn Profiling.", "false", "boolean", ProfilingCategory), From 51ac2d88719f013a76dc7bb5b8d182d5c09eb9e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Kie=C5=82kowicz?= Date: Tue, 24 Sep 2024 05:41:27 +0200 Subject: [PATCH 2/2] Update tools/MatrixHelper/SettingsData.cs --- tools/MatrixHelper/SettingsData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/MatrixHelper/SettingsData.cs b/tools/MatrixHelper/SettingsData.cs index a5040329..8be63315 100644 --- a/tools/MatrixHelper/SettingsData.cs +++ b/tools/MatrixHelper/SettingsData.cs @@ -47,7 +47,7 @@ public static Setting[] GetSettings() new("OTEL_EXPORTER_OTLP_ENDPOINT", "The URL to where traces and metrics are sent. The default value is `http://localhost:4318`. Setting a value overrides the `SPLUNK_REALM` environment variable.", string.Empty, "string", ExporterCategory), new("SPLUNK_REALM", "The name of your organization's realm, for example, `us0`. When you set the realm, telemetry is sent directly to the ingest endpoint of Splunk Observability Cloud, bypassing the Splunk Distribution of OpenTelemetry Collector.", string.Empty, "string", ExporterCategory), new("SPLUNK_ACCESS_TOKEN", "A Splunk authentication token that lets exporters send data directly to Splunk Observability Cloud. Unset by default. Required if you need to send data to the Splunk Observability Cloud ingest endpoint.", string.Empty, "string", ExporterCategory), - new("OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE", "The aggregation temporality to use on the basis of instrument kind. The available options are: `Cumulative`, `Delta` and `LowMemory` is not working", "cumulative", "string", ExporterCategory), + new("OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE", "The aggregation temporality to use on the basis of instrument kind. The supported options are: `Cumulative` (choose cumulative aggregation temporality for all instrument kinds.), `Delta` (choose Delta aggregation temporality for Counter, Asynchronous Counter and Histogram instrument kinds, choose Cumulative aggregation for UpDownCounter and Asynchronous UpDownCounter instrument kinds). `LowMemory`, known from OpenTelemetry specification is not supported.", "Cumulative", "string", ExporterCategory), // profiling new("SPLUNK_PROFILER_ENABLED", "Activates AlwaysOn Profiling.", "false", "boolean", ProfilingCategory),