Skip to content

Instantly share code, notes, and snippets.

@josephsamela
Last active April 2, 2021 18:19
Show Gist options
  • Save josephsamela/918d8ef5e10f7e5610297f5927d6bc8a to your computer and use it in GitHub Desktop.
Save josephsamela/918d8ef5e10f7e5610297f5927d6bc8a to your computer and use it in GitHub Desktop.
Kibana Timelion - Average metric over time with trendline
.es(
index=name_of_index,
timefield='name_of_timefield',
metric='avg:name_of_metric'
).yaxis(
label="Y-Axis_label",
min=75,
max=85
).title("Title of average metric vs. Time"),
.es(
index=name_of_index,
timefield='name_of_timefield',
metric='avg:name_of_metric'
).trend()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment