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

com.wavefront.sdk.entities.logs.WavefrontLogSender Maven / Gradle / Ivy

The newest version!
package com.wavefront.sdk.entities.logs;

import com.wavefront.sdk.common.annotation.Nullable;

import java.io.IOException;
import java.util.Map;

/**
 * 

WavefrontLogSender interface.

* * @author goppegard * @version $Id: $Id */ public interface WavefrontLogSender { /** * This method is used for sending log meta-data to wavefront. This metadata will be stored in LOG atom in wavefront. * * @param name Log file name/source * @param value Value for log stream * @param timestamp epoch timestamp * @param source Logging source * @param tags Labels associated with log source * @throws java.io.IOException throws an Exception */ void sendLog(String name, double value, @Nullable Long timestamp, @Nullable String source, @Nullable Map tags) throws IOException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy