Clarify precision documentation (#2655)
This commit is contained in:
parent
c4634c1743
commit
87f4f67b44
|
@ -85,8 +85,8 @@ type AgentConfig struct {
|
||||||
// ie, if Interval=10s then always collect on :00, :10, :20, etc.
|
// ie, if Interval=10s then always collect on :00, :10, :20, etc.
|
||||||
RoundInterval bool
|
RoundInterval bool
|
||||||
|
|
||||||
// By default, precision will be set to the same timestamp order as the
|
// By default or when set to "0s", precision will be set to the same
|
||||||
// collection interval, with the maximum being 1s.
|
// timestamp order as the collection interval, with the maximum being 1s.
|
||||||
// ie, when interval = "10s", precision will be "1s"
|
// ie, when interval = "10s", precision will be "1s"
|
||||||
// when interval = "250ms", precision will be "1ms"
|
// when interval = "250ms", precision will be "1ms"
|
||||||
// Precision will NOT be used for service inputs. It is up to each individual
|
// Precision will NOT be used for service inputs. It is up to each individual
|
||||||
|
@ -230,10 +230,13 @@ var header = `# Telegraf Configuration
|
||||||
## ie, a jitter of 5s and interval 10s means flushes will happen every 10-15s
|
## ie, a jitter of 5s and interval 10s means flushes will happen every 10-15s
|
||||||
flush_jitter = "0s"
|
flush_jitter = "0s"
|
||||||
|
|
||||||
## By default, precision will be set to the same timestamp order as the
|
## By default or when set to "0s", precision will be set to the same
|
||||||
## collection interval, with the maximum being 1s.
|
## timestamp order as the collection interval, with the maximum being 1s.
|
||||||
## Precision will NOT be used for service inputs, such as logparser and statsd.
|
## ie, when interval = "10s", precision will be "1s"
|
||||||
## Valid values are "ns", "us" (or "µs"), "ms", "s".
|
## when interval = "250ms", precision will be "1ms"
|
||||||
|
## Precision will NOT be used for service inputs. It is up to each individual
|
||||||
|
## service input to set the timestamp at the appropriate precision.
|
||||||
|
## Valid time units are "ns", "us" (or "µs"), "ms", "s".
|
||||||
precision = ""
|
precision = ""
|
||||||
|
|
||||||
## Logging configuration:
|
## Logging configuration:
|
||||||
|
|
Loading…
Reference in New Issue