org.collectd.model.PluginData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of collectd-core Show documentation
Show all versions of collectd-core Show documentation
OSGi module sending metrics to Collectd.
The newest version!
package org.collectd.model;
/**
* Common data type for collectd.
*/
@lombok.Getter
@lombok.Setter
@lombok.ToString
public abstract class PluginData {
private String host;
private long time;
private String plugin;
private String pluginInstance;
private String type;
private String typeInstance;
private boolean sign;
private boolean encrypt;
}