Griesbacher / histou

Adds templates to Grafana in combination with nagflux
GNU General Public License v2.0
35 stars 16 forks source link

Support for Last, Max and Average #39

Closed jstark1 closed 3 years ago

jstark1 commented 3 years ago

is there a way to display the Last, Max and Average values like pnp does?

sni commented 3 years ago

Same as in #40, Histou basically has nothing to do with pnp and is just a template engine to generate grafana graphs.

dan-m-joh commented 3 years ago

If you mean in the legend, see:

setLegend(
show = SHOW_LEGEND,
values = false,
min = false,
max = false,
current = false,
total = false,
avg = false,
alignAsTable = false,
rightSide = false,
hideEmpty = true
)

If you want it in the graph itself - i do not think this is possible (as histou stands today). (I would be happy proven wrong on this...)

jstark1 commented 3 years ago

setLegend works perfect, thanks