Query application logs

Kibana is deprecated and has been replaced with LokiStack.

Open the console in the Administrator view and switch to Logs in the Observe section. You can query the logs using Grafanas LogQL.

View namespace logs

  • View logs by selecting namespace in the UI

    namespace logs
  • Or use the query language

    { kubernetes_namespace_name="demo-fortune" } | json

View error logs

  • Filter by logtype error in the UI

    error logs
  • Or use the query language

    { kubernetes_namespace_name="syn-kyverno" } | json | level=~"error|err|eror"