Search for hostnames in kibana

Viewed 677

I've tried searching for hostnames in kibana using part of the server name:

B-wit-a2pgw-*

Also I tried:

hostname: B-wit-a2pgw-*

And:

instance: B-wit-a2pgw-*

I have the time frame set to today. But nothing turns up in the kibana console. What am I doing wrong?

2 Answers

you can search it as servername:B*wit*a2pgw*, or if the field name is hostname then

hostname:B*wit*a2pgw*

If your hostname field is already analyzed you can use this:

hostname.raw: B-wit-a2pgw-*

In case isn't already analyzed you can use this:

hostname: B-wit-a2pgw-*

Related