Skip to content

Commit

Permalink
Merge pull request grafana#255 from shokada/add_hide
Browse files Browse the repository at this point in the history
Add 'hide' param to influxdb target
  • Loading branch information
trotttrotttrott authored Aug 24, 2020
2 parents 0cfef6b + 2d416be commit 41ed8c0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions grafonnet/influxdb.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*
* @param alias 'Alias By' pattern
* @param datasource Datasource
* @param hide Disable query on graph
*
* @param rawQuery Enable/disable raw query mode
*
Expand All @@ -26,6 +27,7 @@

alias=null,
datasource=null,
hide=null,

rawQuery=null,

Expand All @@ -42,6 +44,7 @@

[if alias != null then 'alias']: alias,
[if datasource != null then 'datasource']: datasource,
[if hide != null then 'hide']: hide,

[if query != null then 'query']: query,
[if rawQuery != null then 'rawQuery']: rawQuery,
Expand Down

0 comments on commit 41ed8c0

Please sign in to comment.