Package com.wavefront.ingester
Class ReportPointDecoderWrapper
- java.lang.Object
-
- com.wavefront.ingester.ReportPointDecoderWrapper
-
- All Implemented Interfaces:
ReportableEntityDecoder<String,ReportPoint>
@Deprecated public class ReportPointDecoderWrapper extends Object implements ReportableEntityDecoder<String,ReportPoint>
Deprecated.WrapsDecoderasReportableEntityDecoder.- Author:
- vasily@wavefront.com
-
-
Constructor Summary
Constructors Constructor Description ReportPointDecoderWrapper(Decoder<String> delegate)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddecode(String msg, List<ReportPoint> out, String customerId)Deprecated.Decode entities (points, spans, etc) and dump them into an output array.voiddecode(String msg, List<ReportPoint> out, String customerId, IngesterContext ctx)Deprecated.Decode graphite points and dump them into an output array.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.wavefront.ingester.ReportableEntityDecoder
decode
-
-
-
-
Method Detail
-
decode
public void decode(String msg, List<ReportPoint> out, String customerId)
Deprecated.Description copied from interface:ReportableEntityDecoderDecode entities (points, spans, etc) and dump them into an output array. The supplied customer id will be set and no customer id extraction will be attempted.- Specified by:
decodein interfaceReportableEntityDecoder<String,ReportPoint>- Parameters:
msg- Message to parse.out- List to output the parsed point.customerId- The customer id to use as the table for the resulting entities.
-
decode
public void decode(String msg, List<ReportPoint> out, String customerId, IngesterContext ctx)
Deprecated.Description copied from interface:ReportableEntityDecoderDecode 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:
decodein interfaceReportableEntityDecoder<String,ReportPoint>- 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.
-
-