diff options
author | Maximilien <maximilien@deuxfleurs.fr> | 2022-02-17 09:38:57 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-03-14 10:51:52 +0100 |
commit | b6561f6e1bcb6a8de13a186405a480e356df89d8 (patch) | |
tree | 344f40eae5a2395454c193b0ba67fedfc771543b /script/telemetry/elastic/apm-config.yaml | |
parent | 2cab84b1fe423a41b356211e592a614c95ec4e0c (diff) | |
download | garage-b6561f6e1bcb6a8de13a186405a480e356df89d8.tar.gz garage-b6561f6e1bcb6a8de13a186405a480e356df89d8.zip |
Add docker-compose for traces & metrics
Diffstat (limited to 'script/telemetry/elastic/apm-config.yaml')
-rw-r--r-- | script/telemetry/elastic/apm-config.yaml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/script/telemetry/elastic/apm-config.yaml b/script/telemetry/elastic/apm-config.yaml new file mode 100644 index 00000000..1c1e6452 --- /dev/null +++ b/script/telemetry/elastic/apm-config.yaml @@ -0,0 +1,10 @@ +apm-server: + # Defines the host and port the server is listening on. Use "unix:/path/to.sock" to listen on a unix domain socket. + host: "0.0.0.0:8200" +#-------------------------- Elasticsearch output -------------------------- +output.elasticsearch: + # Array of hosts to connect to. + # Scheme and port can be left out and will be set to the default (`http` and `9200`). + # In case you specify and additional path, the scheme is required: `http://localhost:9200/path`. + # IPv6 addresses should always be defined as: `https://[2001:db8::1]:9200`. + hosts: ["localhost:9200"] |