![JAR search and dependency download from the Maven repository](/logo.png)
com.signalfx.appd.process.reporter.Reporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appd-process Show documentation
Show all versions of appd-process Show documentation
SignalFx AppDynamics metric processor.
The newest version!
/**
* Copyright (C) 2015 SignalFx, Inc.
*/
package com.signalfx.appd.process.reporter;
import java.util.List;
import com.signalfx.metrics.protobuf.SignalFxProtocolBuffers;
/**
* Reporter handles reporting data points to SignalFx
*
* @author 9park
*/
public interface Reporter {
/**
* Report data points to SignalFx.
*
* @param dataPoints
* list of data points.
* @throws ReportException
* when error occurs while sending dada points.
*/
void report(List dataPoints) throws ReportException;
class ReportException extends Exception {
public ReportException(String message, Throwable cause) {
super(message, cause);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy