Hi, I need help!
I have this query.
Ticket_Encryption_Type=0x17 Account_Domain="ad.contoso.com"
but I need, pull all the Service name in a list.
how can I do that?
thanks
It depends on the what you want the output to look like. This will give you a list of Service Names and a count of how many of each were found.
index=foo Ticket_Encryption_Type=0x17 Account_Domain="ad.contoso.com"
| stats count by Service_Name
It depends on the what you want the output to look like. This will give you a list of Service Names and a count of how many of each were found.
index=foo Ticket_Encryption_Type=0x17 Account_Domain="ad.contoso.com"
| stats count by Service_Name