forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatsd.toml
More file actions
35 lines (31 loc) · 840 Bytes
/
Copy pathstatsd.toml
File metadata and controls
35 lines (31 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[sinks.statsd]
title = "Statsd"
beta = true
common = false
delivery_guarantee = "best_effort"
egress_method = "streaming"
function_category = "transmit"
healthcheck = false
requirements = {}
input_types = ["metric"]
write_to_description = "[StatsD][urls.statsd] metrics service"
<%= render("_partials/_component_options.toml", type: "sink", name: "statsd") %>
[sinks.statsd.options.address]
type = "string"
common = true
examples = ["127.0.0.1:8125"]
default = "127.0.0.1:8125"
description = "The UDP socket address to send stats to."
[sinks.statsd.options.namespace]
type = "string"
common = true
examples = ["service"]
required = true
description = "A prefix that will be added to all metric names."
[[sinks.statsd.output.examples]]
label = "Generic"
body = """\
```text
gorets:1|c\nglork:320|ms\ngaugor:333|g\nuniques:765|s
```\
"""