Skip to content
Snippets Groups Projects
Commit 129bc458 authored by Christoph Alt's avatar Christoph Alt
Browse files

added a small comment for the refresh option on filters

parent c1186827
Branches
1 merge request!11Adding Dashboards for Percolation and for the roofline dashboard
...@@ -3,6 +3,10 @@ from collections import namedtuple ...@@ -3,6 +3,10 @@ from collections import namedtuple
from dashboards.influx_queries import show_tag_values, get_tag_values, show_field_keys from dashboards.influx_queries import show_tag_values, get_tag_values, show_field_keys
from typing import List from typing import List
"""
multi: maps to the multi_value option
refresh: maps to the grafanalib.Template refresh 1= on dashboard load 2= on timer range change
"""
Filter = namedtuple( Filter = namedtuple(
"Filter", ("name", "multi", "default_value", "refresh"), defaults=("", True, "", 1) "Filter", ("name", "multi", "default_value", "refresh"), defaults=("", True, "", 1)
) )
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment