public enum StatsdFlavor extends java.lang.Enum<StatsdFlavor>
| Enum Constant and Description |
|---|
DATADOG
https://docs.datadoghq.com/guides/dogstatsd/#datagram-format
|
ETSY
https://github.com/etsy/statsd/blob/master/docs/metric_types.md
|
TELEGRAF
https://www.influxdata.com/blog/getting-started-with-sending-statsd-metrics-to-telegraf-influxdb/
For gauges to work as expected, you should set `delete_gauges = false` in your input options as documented here:
https://github.com/influxdata/telegraf/tree/master/plugins/inputs/statsd
|
| Modifier and Type | Method and Description |
|---|---|
static StatsdFlavor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatsdFlavor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatsdFlavor ETSY
public static final StatsdFlavor DATADOG
public static final StatsdFlavor TELEGRAF
public static StatsdFlavor[] values()
for (StatsdFlavor c : StatsdFlavor.values()) System.out.println(c);
public static StatsdFlavor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null