org.collectd.model.Notification 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;
/**
* Notification data type.
*/
@lombok.Getter
@lombok.Setter
@lombok.ToString(callSuper = true)
public class Notification extends PluginData {
private Severity severity;
private String message;
}