Hi Everyone,
Is there someone who knows how to export Splunk ITSI Entities to a CSV file including their aliases, fields and services? Thanks!
You might want to use the outputcsv command.
Like this:
| inputlookup itsi_entities_lookup
| eval alias=coalesce(title, "N/A")
| fields title, alias, fields, service
| outputcsv itsi_entities_export.csv
Hey,
Check this out, but not sure ATM how to get an associated service.