Verify that your asset and identity data was added to Splunk Enterprise Security
Verify that your asset or identity data was added to Splunk Enterprise Security by searching and viewing dashboards.
Prerequisites
- Extract asset and identity data in Splunk Enterprise Security.
- Format an asset or identity list as a lookup.
- Configure a new asset or identity list.
Steps
- Verify asset lookup data by making sure that a specific asset record exists in the asset lookup.
- Choose an asset record with data in the
ip
,mac
,nt_host
, ordns
fields from an asset list. - Search for it in Splunk Web.
| makeresults | eval src="1.2.3.4" | `get_asset(src)`
- Choose an asset record with data in the
- View all available assets in your instance using one of the following methods. Compare the number of rows with your asset data sources to verify the number of asset records matches your expectations, or spot check specific records.
- View the Asset Center dashboard. See Asset Center dashboard in Use Splunk Enterprise Security..
- Use the assets macro.
| `assets`
- Search the data model.
|`datamodel("Identity_Management", "All_Assets")` |`drop_dm_object_name("All_Assets")`
- Verify identity lookup data by making sure that a specific identity record exists in the identity lookup.
- Choose an identity record with data in the
identity
field. - Search for it in Splunk Web.
| makeresults | eval user="VanHelsing" | `get_identity4events(user)`
- Choose an identity record with data in the
- View all available identities in your instance using one of the following methods. Compare the number of rows with your identity data sources to verify the number of identity records matches your expectations, or spot check specific records.
- View the Identity Center dashboard. See Identity Center dashboard in Use Splunk Enterprise Security.
- Use the identities macro.
| `identities`
- Search the data model.
|`datamodel("Identity_Management", "All_Identities")` |`drop_dm_object_name("All_Identities")`