aboutsummaryrefslogtreecommitdiff
path: root/src/zentelemetry/stats.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-03-05 00:08:19 +0100
committerGitHub Enterprise <[email protected]>2026-03-05 00:08:19 +0100
commitd8940b27c8a5c070c3b48ca9e575929df8d1d888 (patch)
tree00fa4547ac968234d93aa5c77b573819e340dcd3 /src/zentelemetry/stats.cpp
parentFixing various compiler issues (#807) (diff)
downloadzen-d8940b27c8a5c070c3b48ca9e575929df8d1d888.tar.xz
zen-d8940b27c8a5c070c3b48ca9e575929df8d1d888.zip
added TEST_SUITE_BEGIN/END around some TEST_CASEs which didn't have them (#809)
* added TEST_SUITE_BEGIN/END around some TEST_CASEs which didn't have them * fixed some stats issues * ScopedSpan should Initialize * annotated classes in stats.h with some documentation comments
Diffstat (limited to 'src/zentelemetry/stats.cpp')
-rw-r--r--src/zentelemetry/stats.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zentelemetry/stats.cpp b/src/zentelemetry/stats.cpp
index fcfcaf45e..a417bb52c 100644
--- a/src/zentelemetry/stats.cpp
+++ b/src/zentelemetry/stats.cpp
@@ -631,7 +631,7 @@ EmitSnapshot(const HistogramSnapshot& Snapshot, CbObjectWriter& Cbo)
{
Cbo << "t_count" << Snapshot.Count << "t_avg" << Snapshot.Avg;
Cbo << "t_min" << Snapshot.Min << "t_max" << Snapshot.Max;
- Cbo << "t_p75" << Snapshot.P75 << "t_p95" << Snapshot.P95 << "t_p99" << Snapshot.P999;
+ Cbo << "t_p75" << Snapshot.P75 << "t_p95" << Snapshot.P95 << "t_p99" << Snapshot.P99 << "t_p999" << Snapshot.P999;
}
void