-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Understanding Loki observation #2267
Comments
I bit embarrassed to say this but we don't actually publish any official dashboards on grafana.com :( The dashboards you found were community contributed and may not be current. In regards to the promtail metrics they would be exported by promtail itself so you would need to scrape your promtail(s) with prometheus to see them. We do have some official dashboards for Loki and Promtail in ksonnet Some of them are generated from code, a few are just static json (mostly because they got complex enough it was too time consuming to build them from code). One challenge though is they are based on our opinionated prometheus scrape config which includes a This is an area we really want/need to improve, Thanks to @brancz for opening #1978 to start the discussion but we just haven't had a chance to really dig into this. |
@slim-bean Thanks for your answer and for the clarification: I'll wait for official dashboard but per now the two I installed are sufficient :-) |
This issue has been automatically marked as stale because it has not had any activity in the past 30 days. It will be closed in 7 days if no further activity occurs. Thank you for your contributions. |
I deployed Loki with promtail into my server with this configuration:
After I added loki to my prometheus targets, like so:
And I installed the dashboard 10880 but I encountered a problem because I could not see any graph: the dashboard require
loki_ingester_chunk_entries_count
,loki_distributor_ingester_appends_total
,promtail_file_bytes_total
andpromtail_encoded_bytes_total
metrics to be exported but none of these where in the list of Loki exported metrics.So I searched in the official documentation and I made some tests changing my configuration like that:
With this configuration I'm able to see the first two graphs (those who refers to metrics
loki_ingester_chunk_entries_count
andloki_distributor_ingester_appends_total
) but I cannot see the last two.After that I also installed the dashboard 10004 and I understood that none of the metrics that starts with the word "promtail" are exported.
Hence my question are:
loki_ingester_chunk_entries_count
andloki_distributor_ingester_appends_total
have been exported only when I added my custom metrics? Is there a way to export them "naturally"?Thanks in advance to anyone that will answer.
The text was updated successfully, but these errors were encountered: