Timelion

how i can implement formula of simple interest in timelion graph?

Can you explain in greater detail what you are planning to do?
How does your data look like? How does the chart look like you want to see?

` .es(index="terrena_1*", metric="sum:Job Size (GB)", split="Client.keyword:5")
.lines(fill=8, steps=1, width=3)
.label("$1", "^.* > Client.keyword:(\S+) > .*")
.title("Alert chart of 30 %")
.yaxis(1,min=0,max=100,null,'Sum of Job Size (%)')
.multiply(100)
.divide(100000),

.es(index="terrena_1*", metric="sum:Job Size (GB)", split="Client.keyword:5")
.lines()
.multiply(70)
.divide(100000)
.label("$1 Alert 30%","^.* > Client.keyword:(\S+) > .*")`

I want to create an alert line which will show alert when it goes below 30% of the volume and above 30% of the volume of the data.

Kibana has an alerting solution (Alerting | Kibana Guide [7.13] | Elastic) but it doesn't support Timelion at the moment

I updated kibana 7.13 version but it is always showing "kibana server is not ready yet"

How can we use mathlion, elastalert and enhanced table with kibana 7.13?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.