Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions jmx-metrics/docs/target-systems/cassandra.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ These metrics are sourced from Cassandra's exposed Dropwizard Metrics for each n
* Instrument Type: DoubleValueObserver

* Name: `cassandra.client.request.range_slice.latency.count`
* Description: Total token range read request latency
* Unit: `µs`
* Description: Number of token range read request operations
* Unit: `1`
* Instrument Type: LongSumObserver

* Name: `cassandra.client.request.range_slice.latency.max`
Expand Down Expand Up @@ -48,8 +48,8 @@ These metrics are sourced from Cassandra's exposed Dropwizard Metrics for each n
* Instrument Type: DoubleValueObserver

* Name: `cassandra.client.request.read.latency.count`
* Description: Total standard read request latency
* Unit: `µs`
* Description: Number of standard read request operations
* Unit: `1`
* Instrument Type: LongSumObserver

* Name: `cassandra.client.request.read.latency.max`
Expand Down Expand Up @@ -78,8 +78,8 @@ These metrics are sourced from Cassandra's exposed Dropwizard Metrics for each n
* Instrument Type: DoubleValueObserver

* Name: `cassandra.client.request.write.latency.count`
* Description: Total regular write request latency
* Unit: `µs`
* Description: Number of regular write request operations
* Unit: `1`
* Instrument Type: LongSumObserver

* Name: `cassandra.client.request.write.latency.max`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ void endToEnd() {
assertSum(
metric,
"cassandra.client.request.range_slice.latency.count",
"Total token range read request latency",
"µs"),
"Number of token range read request operations",
"1"),
metric ->
assertGauge(
metric,
Expand Down Expand Up @@ -88,8 +88,8 @@ void endToEnd() {
assertSum(
metric,
"cassandra.client.request.read.latency.count",
"Total standard read request latency",
"µs"),
"Number of standard read request operations",
"1"),
metric ->
assertGauge(
metric,
Expand Down Expand Up @@ -124,8 +124,8 @@ void endToEnd() {
assertSum(
metric,
"cassandra.client.request.write.latency.count",
"Total regular write request latency",
"µs"),
"Number of regular write request operations",
"1"),
metric ->
assertGauge(
metric,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ otel.instrument(clientRequestRangeSliceLatency,

otel.instrument(clientRequestRangeSliceLatency,
"cassandra.client.request.range_slice.latency.count",
"Total token range read request latency", "µs", "Count",
"Number of token range read request operations", "1", "Count",
otel.&longCounterCallback)

otel.instrument(clientRequestRangeSliceLatency,
Expand Down Expand Up @@ -64,7 +64,7 @@ otel.instrument(clientRequestReadLatency,

otel.instrument(clientRequestReadLatency,
"cassandra.client.request.read.latency.count",
"Total standard read request latency", "µs", "Count",
"Number of standard read request operations", "1", "Count",
otel.&longCounterCallback)

otel.instrument(clientRequestReadLatency,
Expand Down Expand Up @@ -98,7 +98,7 @@ otel.instrument(clientRequestWriteLatency,

otel.instrument(clientRequestWriteLatency,
"cassandra.client.request.write.latency.count",
"Total regular write request latency", "µs", "Count",
"Number of regular write request operations", "1", "Count",
otel.&longCounterCallback)

otel.instrument(clientRequestWriteLatency,
Expand Down