grafana version: grafana/grafana:9.0.6-ubuntu
loki version: grafana/loki:2.3.0
(did not use latest because it says no labels found when adding as datasource)
Issue with loki is by default it shows nothing
This causes hours of people trying to figure out what is going on
Videos i see have log browser but i am using newer grafana and i do not see log browser
here is what i see and i have zero idea what to do or where to go
when i added loki as datasource it says labels found
so where are the labels found?
I have containers pushing logs to loki from docker-compose file like below
services:
hello-world:
image: test/hello-world
logging:
driver: loki
options:
loki-url: "http://localhost:3100/loki/api/v1/push"
...
and when i curl loki from the container, i get this
# curl -G -s "http://loki:3100/loki/api/v1/label" | jq .
{
"status": "success",
"data": [
"__name__"
]
}
so how do i have loki show logs or find any logs?