Skip to content

Commit

Permalink
update spansdroppedblocked metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
bhillmer committed Jan 23, 2024
1 parent 6f2f74b commit 3cc95b2
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions signalfx-org-metrics/metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,12 @@ sf.org.apm.numSpanBytesReceivedByToken:
sf.org.apm.numSpansDroppedBlocked:
brief: The number of spans that APM was unable to process or has dropped due to a blocked trace or too many spans in the trace.
description: |
The number of spans that APM was unable to process or has dropped because the trace has a blocked trace ID or too many spans in the trace.
The number of spans that APM was unable to process or has dropped. A span can be
dropped for the following reasons:
* blockedTraceID: Trace has over 100k spans
* tooManySpansInTrace: Trace submitted over 100k spans
``sf.org.apm.numSpansDroppedBlocked`` has the following dimensions and data resolution:
* Dimension(s): `orgId`
* Data resolution: 1 second
Expand All @@ -143,7 +148,12 @@ sf.org.apm.numSpansDroppedBlocked:
sf.org.apm.numSpansDroppedBlockedByToken:
brief: The number of spans for a specific token that APM was unable to process or has dropped due to a blocked trace or too many spans in the trace
description: |
The number of spans for a specific token that APM was unable to process or has dropped because the trace has a blocked trace ID or too many spans in the trace.
The number of spans for a specific token that APM was unable to process or has dropped. A span can be
dropped for the following reasons:
* blockedTraceID: Trace has over 100k spans
* tooManySpansInTrace: Trace submitted over 100k spans
``sf.org.apm.numSpansDroppedBlocked`` has the following dimensions and data resolution:
* Dimension(s): `orgId`
* Data resolution: 1 second
Expand All @@ -154,12 +164,14 @@ sf.org.apm.numSpansDroppedInvalid:
brief: The number of invalid spans Splunk APM receives.
description: |
The number of invalid spans Splunk APM receives. A span can be
invalid for the following reasons: if there is no start time, trace ID, or service associated with it.
invalid for the following reasons:
* invalidTraceID: Trace ID isn't a 16-byte or 32-byte hex number
* noOperationName: No operation name was provided
* spanTooLarge: Span body exceeds 64KiB
* zeroStartTime: The start timestamp is 0
* zipkinV2BinaryAnnotations: Unsupported Zipkin feature
``sf.org.apm.numSpansDroppedInvalid`` has the following dimensions and data resolution:
* Dimension(s): `orgId`
* Data resolution: 1 second
Expand All @@ -171,8 +183,14 @@ sf.org.apm.numSpansDroppedInvalidByToken:
token.
description: |
The number of invalid spans Splunk APM receives for a specific
access token. A span can be invalid if there is no start time, trace ID, or
service associated with it, or if there are too many spans in the trace.
access token. A span can be invalid for the following reasons:
* invalidTraceID: Trace ID isn't a 16-byte or 32-byte hex number
* noOperationName: No operation name was provided
* spanTooLarge: Span body exceeds 64KiB
* zeroStartTime: The start timestamp is 0
* zipkinV2BinaryAnnotations: Unsupported Zipkin feature
``sf.org.apm.numSpansDroppedInvalidByToken`` has the following dimensions and data resolution:
* Dimension(s): `orgId`, `tokenId`
* Data resolution: 1 second
Expand Down

0 comments on commit 3cc95b2

Please sign in to comment.