Skip to content

Commit 9519b7b

Browse files
authored
[Prometheus] Clarify propagation delay description in docs (#96)
1 parent 34b22f5 commit 9519b7b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

prometheus/docs/localstack_metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
`localstack_event_propagation_delay_seconds`
6666

67-
- **Description:** End-to-end latency between event creation and processing
67+
- **Description:** End-to-end latency between event creation (at source) until just before being sent to a target for processing.
6868
- **Labels:** `event_source`, `event_target`
6969
- **Type:** histogram
7070

prometheus/localstack_prometheus/metrics/event_processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Performance and latency metrics
2424
LOCALSTACK_EVENT_PROPAGATION_DELAY_SECONDS = Histogram(
2525
"localstack_event_propagation_delay_seconds",
26-
"End-to-end latency between event creation and processing",
26+
"End-to-end latency between event creation (at source) until just before being sent to a target for processing.",
2727
["event_source", "event_target"],
2828
buckets=[0.005, 0.05, 0.5, 5, 30, 60, 300, 900, 3600],
2929
)

0 commit comments

Comments
 (0)