All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavefront.dto.LogDeserializer Maven / Gradle / Ivy

The newest version!
package com.wavefront.dto;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonNode;
import wavefront.report.Annotation;
import wavefront.report.ReportLog;

import java.io.IOException;
import java.util.*;

/**
 * Deserialization override for the Log class.
 *
 */
public class LogDeserializer extends JsonDeserializer {

    @Override
    public Log deserialize(JsonParser jp, DeserializationContext ctxt)
            throws IOException {
        JsonNode node = jp.getCodec().readTree(jp);

        Set specialFields = new HashSet<>(Arrays.asList("timestamp", "text", "source"));
        long timestamp = node.get("timestamp").longValue();
        String message = node.get("text").asText();

        String source = node.get("source").asText();
        List annotations = new ArrayList<>();

        Iterator> fields = node.fields();

        while (fields.hasNext()) {
            Map.Entry field = fields.next();
            if (!specialFields.contains(field.getKey())) {
                annotations.add(new Annotation(field.getKey(), field.getValue().textValue()));
            }
        }


        return new Log(new ReportLog(timestamp, message, source, annotations));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy