I need to perform an analysis based on a lookup file named checkin_rooms.csv, which includes a column confroom_ipaddress with values such as:
For each IP address in this file, I want to check the Splunk logs for the following conditions in the index=fow_checkin:
Example Log Entries:
Could someone please guide me on how to construct this query to identify which IP addresses from the lookup file meet these criteria? Thanks in advance
Hi @Tajuddin ,
in addition to the questions from @PickleRick I need to know: the two conditions you listed are related with OR or AND?
then what's the name of the field (in the main search) to compare with confroom_ipaddress of the checkin_rooms.csv lookup? i use IP_Address but you can change.
anyway, eventually change my main search:
index=fow_checkin
[| inputlookup checkin_rooms.csv | rename confroom_ipaddress AS IP_Address | fields IP_Address ]
("IpAddress(from request body)" OR NOT "display button:panel-*")
| ...
Ciao.
Giuseppe
This can have multiple solutions depending on your data parameters (especially cardinality).
Your main problem (performancewise) will be the second condition. Because how can you find something that's not there? You have to list everything that is there and compare with what you get from the first conditon. With a small result set that's relatively quick but with a big one - not so much.
Also:
1. Do you have any fields extracted from your events?
2. In the second type of events is there a space between ipaddress: and the actual address or not?