Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class MetricValue {
* number of values that contributed to the average value.
*/
@JsonProperty(value = "count")
private Long count;
private Double count;

/**
* Get the timestamp for the metric value in ISO 8601 format.
Expand Down Expand Up @@ -157,7 +157,7 @@ public MetricValue withTotal(Double total) {
*
* @return the count value
*/
public Long count() {
public Double count() {
return this.count;
}

Expand All @@ -167,7 +167,7 @@ public Long count() {
* @param count the count value to set
* @return the MetricValue object itself.
*/
public MetricValue withCount(Long count) {
public MetricValue withCount(Double count) {
this.count = count;
return this;
}
Expand Down
Loading