com.signalfx.metrics.connection.DataPointReceiver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signalfx-codahale Show documentation
Show all versions of signalfx-codahale Show documentation
Dropwizard Codahale metrics plugin for signalfx
The newest version!
package com.signalfx.metrics.connection;
import java.util.List;
import java.util.Map;
import com.signalfx.metrics.SignalFxMetricsException;
import com.signalfx.metrics.protobuf.SignalFxProtocolBuffers;
public interface DataPointReceiver {
void addDataPoints(String auth, List dataPoints)
throws SignalFxMetricsException;
void backfillDataPoints(String auth, String metric, String metricType, String orgId, Map dimensions,
List datumPoints)
throws SignalFxMetricsException;
Map registerMetrics(String auth, Map metricTypes)
throws SignalFxMetricsException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy