Class ReportPointDecoderWrapper

    • Constructor Detail

      • ReportPointDecoderWrapper

        public ReportPointDecoderWrapper​(@NotNull
                                         Decoder<String> delegate)
        Deprecated.
    • Method Detail

      • decode

        public void decode​(String msg,
                           List<ReportPoint> out,
                           String customerId)
        Deprecated.
        Description copied from interface: ReportableEntityDecoder
        Decode 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:
        decode in interface ReportableEntityDecoder<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: ReportableEntityDecoder
        Decode 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:
        decode in interface ReportableEntityDecoder<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.