-
Notifications
You must be signed in to change notification settings - Fork 6
🎨 Add prometheus metrics: vector, loki, tempo, grafana, jaeger #1280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 54 commits
f0d8cf0
e906b41
14c751d
293f63c
f7f72ec
94cfb76
509c717
1a65ecf
77ee45e
c9c70d6
7b8be53
bcd61cd
58e1030
ed8d479
dda6e01
f6f4f36
5dca5c3
4a653ef
3a21f0f
48fbbca
08c57db
5ecbfec
3ea41b5
29f2f2e
cdef57f
c0f393e
34a86fd
df3f5df
ac44663
4100b87
759f657
d60fd0c
a1e36c7
b856eb0
81ce9fb
0e32699
a5b9950
70695e2
786a5d9
038be52
5e1f220
5448087
534f6f4
1e15c94
6571bb8
c05f58c
9a8113b
acf8518
62f4547
6cb9761
dc8fbb1
e5b6414
0261014
e268b8d
3add80f
9407426
0decbe0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |
|
|
||
| sources: | ||
| # Receive GELF messages from Docker containers via UDP | ||
| vector_metrics: | ||
| type: internal_metrics | ||
| scrape_interval_secs: 23 | ||
|
||
| docker_gelf: | ||
| type: socket | ||
| address: "0.0.0.0:12201" | ||
|
|
@@ -115,7 +118,11 @@ sinks: | |
|
|
||
| healthcheck: | ||
| enabled: true | ||
|
|
||
| prometheus_exporter: | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For future reference, documentation that makes clear why this is necessary.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. will add this thx |
||
| type: prometheus_exporter | ||
| inputs: | ||
| - vector_metrics | ||
| address: "0.0.0.0:9598" | ||
| # Send to Graylog via GELF over TCP | ||
| graylog: | ||
| type: socket | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be nice to have a link with this config excerpt documentation for future.
it looks like it exports metrics to prometheus (aka sends them directly) but the URL is looks more like it exposes metrics 🤔
Looks like this link https://opentelemetry.io/docs/collector/internal-telemetry/#prometheus-endpoint-for-internal-metrics
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is the right link but there is no concise paragraph about it, the information is scattered on this page