Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add archived and histogram metrics #1054

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
117 changes: 113 additions & 4 deletions signalfx-org-metrics/metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,7 @@ sf.org.numBadMetricMetricTimeSeriesCreateCallsByToken:
sf.org.numCustomMetrics:
brief: Number of custom metrics monitored
description: |
Number of custom metrics monitored by Infrastructure Monitoring.
Number of custom metrics monitored by Infrastructure Monitoring, including archived and histogram metrics. For billing purposes, 10 archived custom metrics count as 1 real-time custom metric, and 1 histogram custom metric counts as 8 real-time custom metrics.

* Dimension(s): `orgId`
* Data resolution: 10 minutes
Expand Down Expand Up @@ -1322,7 +1322,7 @@ sf.org.numComputationsThrottledByToken:
sf.org.numCustomMetricsByToken:
brief: Per token number of custom metrics monitored
description: |
One value per token; number of custom metrics monitored by Splunk Observability Cloud.
One value per token; number of custom metrics monitored by Splunk Observability Cloud, including archived and histogram metrics.
The sum of all the values might be less than the value of `sf.org.numCustomMetrics`.
To learn more, see [Metrics for values by token](#metrics-for-values-by-token).

Expand Down Expand Up @@ -2277,7 +2277,116 @@ sf.org.rum.grossReplayContentBytesReceived:
description: |
The possibly compressed wire size of the payloads before the payloads are decompressed and decoded, per RUM session replay.

* Dimensions: `orgId`
* Data resolution: 10 seconds
* Dimensions: `orgId`
* Data resolution: 10 seconds
metric_type: counter
title: sf.org.rum.grossReplayContentBytesReceived

sf.org.numArchivedCustomMetrics:
brief: The number of custom metrics stored as archived metrics.
description: |
The raw number of custom metrics that are stored in the archival route. To learn more about archived metrics, see [Archived metrics](https://docs.splunk.com/observability/en/infrastructure/metrics-pipeline/metrics-pipeline-intro.html#archived-metrics) in the Splunk documentation.

* Dimensions: `orgId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numArchivedCustomMetrics

sf.org.numArchivedCustomMetricsByToken:
brief: The number of archived custom metrics stored per token
description: |
One value per token; number of archived custom metrics stored in Splunk Observability Cloud.
The sum of all the values might be less than the value of `sf.org.numArchivedCustomMetrics`.

* Dimension(s): `orgId`, `tokenId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numArchivedCustomMetricsByToken

sf.org.numBillableArchivedCustomMetrics:
brief: The number of billable archived custom metrics
description: |
The number of billable custom metrics stored in the archival route. 10 archived custom metrics count as 1 real-time custom metric.

For example, a count of 50 archived custom metrics would be billed as 5 real-time custom metrics.

* Dimensions: `orgId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numBillableArchivedCustomMetrics

sf.org.numBillableArchivedCustomMetricsByToken:
brief: The number of billable archived custom metrics stored per token
description: |
One value per token; the number of billable archived custom metrics stored in Splunk Observability Cloud.
The sum of all the values might be less than the value of `sf.org.numBillableArchivedCustomMetrics`.

* Dimensions: `orgId`, `tokenId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numBillableArchivedCustomMetricsByToken

sf.org.numHistogramCustomMetrics:
brief: The number of histogram custom metrics received by Splunk Infrastructure Monitoring
description: |
The raw number of histogram custom metrics received by Splunk Infrastructure Monitoring. For billing purposes, 1 histogram custom metric counts as 8 custom metrics.

For example, a value of 5 histogram custom metrics would be billed as 40 normal custom metrics.

* Dimensions: `orgId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numHistogramCustomMetrics

sf.org.numHistogramCustomMetricsByToken:
brief: The number of histogram custom metrics received per token
description: |
One value per token; the number of histogram custom metrics received by Splunk Infrastructure Monitoring.
The sum of all the values might be less than the value of `sf.org.numHistogramCustomMetrics`.

* Dimensions: `orgId`, `tokenId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numHistogramCustomMetricsByToken

sf.org.numArchivedDatapointsReceived:
brief: The number of data points received on the archival route
description: |
The raw number of data points received by Splunk Infrastructure Monitoring from metrics in the archival route.

* Dimensions: `orgId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numArchivedDatapointsReceived

sf.org.numBillableDatapoints:
brief: The number of billable data points received by Splunk Infrastructure Monitoring
description: |
The final number of billable data points received by Splunk Infrastructure Monitoring. This includes archived and histogram data points. For billing purposes, 10 archived data points count as 1 normal data point, and 1 histogram data point counts as 8 normal data points.

This value is standardized, meaning archived and histogram data points are converted to normal data points.

* Dimensions: `orgId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numBillableDatapoints

sf.org.numBillableArchivedDatapoints:
brief: The number of billable archived data points stored in Splunk Observability Cloud
description: |
The final number of billable archived data points stored in Splunk Observability Cloud.

* Dimensions: `orgId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numBillableArchivedDatapoints

sf.org.numBillableHistogramDatapoints:
brief: The number of billable histogram data points received by Splunk Infrastructure Monitoring
description: |
The final number of billable histogram data points received by Splunk Infrastructure Monitoring.

* Dimensions: `orgId`
* Data resolution: 10 minutes
metric_type: counter
title: sf.org.numBillableHistogramDatapoints
Loading