We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
includeAll flag is not working properly. YAML snippet:
... - custom-template: name: service options: - option 1 - option 2 includeAll: true multi: true current: All ...
This is the output:
... { "current": { "text": "All", "value": "All" }, "datasource": null, "includeAll": true, "multi": true, "name": "service", "options": [ { "text": "option 1", "value": "option 1" }, { "text": "option 2", "value": "option 2" } ], "query": "option 1,option 2", "refresh": 0, "refresh_on_load": false, "type": "custom" } ...
Output should be:
... "current": { "tags": [], "text": "All", "value": "$__all" }, "datasource": null, "hide": 0, "includeAll": true, "label": "", "multi": false, "name": "service", "options": [ { "selected": true, "text": "All", "value": "$__all" }, ...
The text was updated successfully, but these errors were encountered:
@manueligno78 which grafana version are you using? I'm pretty sure that this worked well in the past..
Sorry, something went wrong.
5.3.2 and 5.1.3. I dont know if it works on 6.x versions.
Successfully merging a pull request may close this issue.
includeAll flag is not working properly.
YAML snippet:
This is the output:
Output should be:
The text was updated successfully, but these errors were encountered: