Hello Splunk Enjoyers! I have problem
Information about routers arrives every minute, so
What I have: name_of_router and serial_number of client on index = routers
What i want: i want to make alert, if serial_number has changed.
How should i do this?
@ITWhisperer thanks! its work!
and how can i result serial number and serial_number where serial_number >1? not count
If you want to keep the events, use eventstats
| eventstats dc(serial_number) as count by name
| where count > 1
@ITWhisperer its works!
so how can i result events where serial number had changed, not count
Can you share some depersonalised events in a code block </>
for example:
| table name serial_number
result:
name | serial_number
cisco1 | ABC123456
cisco1 | cdf95959595
| stats dc(serial_number) as count by name
| where count > 1