All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.satori.composer.stats.ddog.DdogMetricPoint Maven / Gradle / Ivy

The newest version!
package com.satori.composer.stats.ddog;

public class DdogMetricPoint {
  public long timestamp;
  public float value;

  public DdogMetricPoint(float value) {
    this(value, System.currentTimeMillis() / 1000);
  }

  public DdogMetricPoint(float value, long timestamp) {
    this.timestamp = timestamp;
    this.value = value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy