We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87836f2 commit 36d08fdCopy full SHA for 36d08fd
2 files changed
simpleclient/src/main/java/io/prometheus/client/Histogram.java
@@ -164,8 +164,8 @@ public double observeDuration() {
164
*/
165
public static class Child {
166
public static class Value {
167
- private double sum;
168
- private double[] buckets;
+ public double sum;
+ public double[] buckets;
169
}
170
171
private Child(double[] buckets) {
simpleclient/src/main/java/io/prometheus/client/Summary.java
@@ -91,8 +91,8 @@ public double observeDuration() {
91
92
93
94
- private double count;
95
+ public double count;
96
97
98
// Having these seperate leaves us open to races,
0 commit comments