Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
af6df1f
Make exponential histogram config public
alanwest Mar 22, 2023
7ffdbd3
Stub out console exporter support
alanwest Mar 22, 2023
0fb670d
Add TODO in prometheus exporter
alanwest Mar 22, 2023
b7b1dad
Add OTLP exporter support for exponential histograms
alanwest Mar 22, 2023
763ed8d
Fix console exporter
alanwest Mar 22, 2023
a1090ad
Merge branch 'main' into alanwest/exp-histogram-export
alanwest Mar 23, 2023
c05bea8
Add exponential histogram config option to example ASP.NET Core app
alanwest Mar 23, 2023
330f181
Update TODO in console exporter
alanwest Mar 23, 2023
a76536a
Fix whitespace
alanwest Mar 23, 2023
0a72fd0
Merge branch 'main' into alanwest/exp-histogram-export
alanwest Mar 27, 2023
39f6f08
Update changelogs
alanwest Mar 27, 2023
97e3fbc
Update public api
alanwest Mar 27, 2023
035663c
Update PR number
alanwest Mar 27, 2023
7806a75
Do not use IsHistogram()
alanwest Mar 27, 2023
7a1dcbd
Do not use IsHistogram()
alanwest Mar 27, 2023
20cda0d
Update changelog
alanwest Mar 27, 2023
8d017ba
3rd times the charm. Really have Prometheus ignore exponential histog…
alanwest Mar 27, 2023
5f69b7b
Add message about not displaying buckets
alanwest Mar 27, 2023
73d572b
Merge branch 'main' into alanwest/exp-histogram-export
alanwest Mar 27, 2023
78ac7b4
Merge branch 'main' into alanwest/exp-histogram-export
alanwest Mar 27, 2023
75ad349
Rename buckets to exponentialHistogramData
alanwest Mar 28, 2023
d6cddeb
Merge branch 'alanwest/exp-histogram-export' of github.com:alanwest/o…
alanwest Mar 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add TODO in prometheus exporter
  • Loading branch information
alanwest committed Mar 22, 2023
commit 0fb670d00be53d9452d0e3e9c756502f9a65c72b
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public static int WriteMetric(byte[] buffer, int cursor, Metric metric)
buffer[cursor++] = ASCII_LINEFEED;
}
}
else
else if (metric.MetricType.IsHistogram())
{
foreach (ref readonly var metricPoint in metric.GetMetricPoints())
{
Expand Down Expand Up @@ -194,6 +194,10 @@ public static int WriteMetric(byte[] buffer, int cursor, Metric metric)
buffer[cursor++] = ASCII_LINEFEED;
}
}
else
{
// TODO: Support exponential histogram.
}

buffer[cursor++] = ASCII_LINEFEED;

Expand Down