Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR monitor/resource-manager] BUG fix: Fixing type of MetricValue.Count to be double instead of the incorrect int64 it had before #4164

Merged
merged 2 commits into from
Jul 8, 2019
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