Last active
April 2, 2021 18:19
-
-
Save josephsamela/918d8ef5e10f7e5610297f5927d6bc8a to your computer and use it in GitHub Desktop.
Kibana Timelion - Average metric over time with trendline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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