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

com.vlkan.log4j2.logstash.layout.resolver.TimestampResolver Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.vlkan.log4j2.logstash.layout.resolver;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.TextNode;
import org.apache.logging.log4j.core.LogEvent;
import org.apache.logging.log4j.core.util.datetime.FastDateFormat;

public class TimestampResolver implements TemplateResolver {

    private static final TimestampResolver INSTANCE = new TimestampResolver();

    private TimestampResolver() {
        // Do nothing.
    }

    public static TimestampResolver getInstance() {
        return INSTANCE;
    }

    @Override
    public String getName() {
        return "timestamp";
    }

    @Override
    public JsonNode resolve(TemplateResolverContext context, LogEvent logEvent) {
        long timestampMillis = logEvent.getTimeMillis();
        FastDateFormat timestampFormat = context.getTimestampFormat();
        String timestamp = timestampFormat.format(timestampMillis);
        return new TextNode(timestamp);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy