Hi All,
I am using Grafana Cloud with Hosted Logs. I upload the logs with metadata, and then they are displayed in the UI as follows:
Now I can set an ad hoc filter (that magnifier glas with “+”) to the lognumber. The filter is interpreted by the UI as {service_name=“TD1_100”, lognumber=“00000000000005766488”}
That is wrong, because lognumber is not part of the stream labels, it’s a metadata tag.
If I modify the query as follows, the result is correct.
{service_name=“TD1_100”}|lognumber=“00000000000005766488”
This is also how the “Explore” view handles it. But why is it handled differently in the dashboard? Is it a bug or a feature?