You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm new to mongodb-grafana. I'm trying to create variable and I'm facing some issues. please anyone help me to sort it out
Cannot create query variable, it not showing preview of values. my query is db.status_all.aggregate([ {"$group": { "_id": "$client"}}, {"$project": { "client": "$_id", "_id": 0 }} ] ). it will give all client values but in preview it not showing
If i try to create custom variables it is working, but still multi select is not working, after enable multi select it will show only for one client value, it showing no data for the 'All' option and for more than one value option as well. I tried these ways both are not working a. {"$match":{"client":"$client"}} b. {"$match":{"client":{"$in":["$client"]}}}
The text was updated successfully, but these errors were encountered:
Found the solution for multi-value variable
I used like this {"$match":{"client":{"$in":[[clients:json]]}}},
but for the first issue still I couldn't find the solution!!
Hi,
I'm new to mongodb-grafana. I'm trying to create variable and I'm facing some issues. please anyone help me to sort it out
The text was updated successfully, but these errors were encountered: