Hello everyone, thanks for taking the time to read this topic and helping me out in advance.
Issue
The situation is as follows:
I have a JSON file laying on a server that is reachable through HTTP with the URL http://192.168.10.1:666/data.json, in Grafana I installed and configured the JSON file for parsing JSON responses from a backend, the specific JSON plugin is JSON plugin for Grafana | Grafana Labs . The situation is as follows, using this as a data source on a panel, I want to display a number that is correlated to the key “active_users”, the JSON file is as follows (some data is redacted for security reasons):
{
"id": 18,
"plan": "premium",
"created_at": "2023-03-03T04:53:04.381+01:00",
"starts_at": "2022-02-11",
"expires_at": "2025-02-11",
"historical_max": 449,
"maximum_user_count": 449,
"licensee": {
*Redacted*
},
"add_ons": {
},
"expired": false,
"overage": 0,
"user_limit": 449,
"active_users": 345
}
Question
How, with the given info, do I set up a panel that will query this data source and display the number of “active_users”?




