diff options
| author | Stefan Boberg <[email protected]> | 2026-03-05 00:08:19 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-05 00:08:19 +0100 |
| commit | d8940b27c8a5c070c3b48ca9e575929df8d1d888 (patch) | |
| tree | 00fa4547ac968234d93aa5c77b573819e340dcd3 /src/zentelemetry/stats.cpp | |
| parent | Fixing various compiler issues (#807) (diff) | |
| download | zen-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.cpp | 2 |
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 |