loki

Installation
SKILL.md

Loki

LogQL Syntax Gotchas

Stream Selector (required first)

{app="nginx", namespace=~"prod|staging"}
  • At least one label matcher required
  • =~ is regex, not glob (use .* not *)

Filter Order Matters

{app="api"} |= "error" | json | level="error" | line_format "{{.message}}"

Filters apply left-to-right. Put cheap filters (string match) before expensive ones (json parse).

Installs
3
First Seen
Feb 5, 2026
loki — kontrolplane/skills