Documentation Index
Fetch the curated documentation index at: https://grafana_com_website/llms.txt
Fetch the complete documentation index at: https://grafana_com_website/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: /docs/grafana-cloud/send-data/alloy/reference/stdlib/json_path.md (append .md) or send Accept: text/markdown to /docs/grafana-cloud/send-data/alloy/reference/stdlib/json_path/. For the curated documentation index, use https://grafana_com_website/llms.txt. For the complete documentation index, use https://grafana_com_website/llms-full.txt.
json_path
The json_path function lookup values using jsonpath syntax.
The function expects two strings. The first string is the JSON string used look up values. The second string is the JSONPath expression.
json_path always returns a list of values. If the JSONPath expression doesn’t match any values, an empty list is returned.
A common use case of json_path is to decode and filter the output of a local.file or remote.http component to an Alloy syntax value.
Remember to escape double quotes when passing JSON string literals to
json_path.For example, the JSON value
{"key": "value"}is properly represented by the string"{\"key\": \"value\"}".
Examples
> json_path("{\"key\": \"value\"}", ".key")
["value"]
> json_path("[{\"name\": \"Department\",\"value\": \"IT\"},{\"name\":\"TestStatus\",\"value\":\"Pending\"}]", "[?(@.name == \"Department\")].value")
["IT"]
> json_path("{\"key\": \"value\"}", ".nonexists")
[]
> json_path("{\"key\": \"value\"}", ".key")[0]
valueWas this page helpful?
Related resources from Grafana Labs


