Kibana - Timelion

Hi there,

I am using Kibana 7.11 (current) - Timelion.

With following I get the NGINX Request Time of a bunch of servers:

.es(index=filebeat*, timefield=@timestamp, metric=max:nginx.request.request_time).lines(fill=1, width=1).color(green).label("Request Time").title("NGINX Request Time")

I don't know how to query for a specific server (nginx.request.server_name) AND (log.file.path.)

Has someone an idea?

You can specify a lucene query as the q parameter of the .es function:
.es(index=filebeat*, q='lucene query')

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