Package com.wavefront.ingester
Class HistogramDecoder
- java.lang.Object
-
- com.wavefront.ingester.HistogramDecoder
-
-
Constructor Summary
Constructors Constructor Description HistogramDecoder()Deprecated.HistogramDecoder(String defaultHostName)Deprecated.HistogramDecoder(Supplier<String> defaultHostNameSupplier)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddecodeReportPoints(String msg, List<ReportPoint> out)Deprecated.Certain decoders support decoding the customer id from the input line itself.voiddecodeReportPoints(String msg, List<ReportPoint> out, String customerId)Deprecated.Decode graphite points and dump them into an output array.voiddecodeReportPoints(String msg, List<ReportPoint> out, String customerId, IngesterContext ctx)Deprecated.Decode graphite points and dump them into an output array.
-
-
-
Method Detail
-
decodeReportPoints
public void decodeReportPoints(String msg, List<ReportPoint> out, String customerId)
Deprecated.Description copied from interface:DecoderDecode graphite points and dump them into an output array. The supplied customer id will be set and no customer id extraction will be attempted.- Specified by:
decodeReportPointsin interfaceDecoder<String>- Parameters:
msg- Message to parse.out- List to output the parsed point.customerId- The customer id to use as the table for the result ReportPoint.
-
decodeReportPoints
public void decodeReportPoints(String msg, List<ReportPoint> out, String customerId, IngesterContext ctx)
Deprecated.Description copied from interface:DecoderDecode graphite points and dump them into an output array. The supplied customer id will be set and no customer id extraction will be attempted.- Specified by:
decodeReportPointsin interfaceDecoder<String>- Parameters:
msg- Message to parse.out- List to output the parsed point.customerId- The customer id to use as the table for the result ReportPoint.ctx- The ingester context with extra params for decoding.
-
decodeReportPoints
public void decodeReportPoints(String msg, List<ReportPoint> out)
Deprecated.Description copied from interface:DecoderCertain decoders support decoding the customer id from the input line itself.- Specified by:
decodeReportPointsin interfaceDecoder<String>- Parameters:
msg- Message to parse.out- List to output the parsed point.
-
-