org.collectd.protocol.PropertyNames Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcollectd Show documentation
Show all versions of jcollectd Show documentation
The jcollectd package implements the collectd protocol in Java, making it possible for Java applications to push data into collectd over the wire.
The newest version!
package org.collectd.protocol;
public interface PropertyNames {
String KEY_PREFIX = "jcd.";
String SEND_INTERVAL = "jcd.sendinterval";
String TEMPLATE = "jcd.tmpl";
String BEANS = "jcd.beans";
String DESTINATION = "jcd.dest";
String CONNECTION_URL = "jcd.mx.url";
String INSTANCE = "jcd.instance";
String HOST = "host";
String HOSTNAME = "hostname";
String HOSTALIAS = "jcd.hostalias"; // resolve order: alias, host, hostname
String NAMES_ONLY = "jcd.namesOnly";
String METRIC_TYPE_FIELD = "mx.metricTypeField"; // metricType (default)
String MX_DESCRIPTORS = "mx.descriptors"; // true (default)
String LOCAL_ADDRESS = "laddr";
String INTERFACE_ADDRESS = "ifaddr";
}