You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is an example where we bring together NetApp Cluster, StorageVM, and Volumes for an expanded view of NetApp Volumes.
221
+
222
+
```SPL
223
+
index=* sourcetype=cisco:intersight:storageNetAppVolumes | dedup Moid | rename Array.Moid as array | rename Tenant.Moid as vm | rename Name as VolumeName | eval SizeTB=round('StorageUtilization.Total'/1024/1024/1024/1024, 2) | eval UsedTB=round('StorageUtilization.Used'/1024/1024/1024/1024, 2) | join array [search index=* sourcetype=cisco:intersight:storageNetAppClusters | dedup Moid | rename Moid as array | rename Name as ArrayName | rename Model as ArrayModel | table array, ArrayName, ArrayModel] | join vm [search index=* sourcetype=cisco:intersight:storageNetAppStorageVms | dedup Moid | rename Moid as vm | rename Name as VmName] | table source, ArrayName, ArrayModel, VmName, VolumeName, UsedTB, SizeTB, Type | sort source, ArrayName, VmName, VolumeName
224
+
```
225
+
217
226
## Tags
218
227
219
228
Tags from Intersight are actually quite challenging in Splunk. The default Splunk [spath](https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Spath) decode of the JSON from Intersight will naturally create two multivalue fields... a `Tags{}.Key` field will have all of the keys and a `Tags{}.Value` field will have all of the values. For example...
Copy file name to clipboardExpand all lines: splunkbase/details.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,10 @@ The Add-on leverages the [Cisco Intersight RESTful API](https://intersight.com/a
4
4
5
5
>New Inventory types are not automatically added to existing configurations. Please review your input configurations after upgrading to enable the new options.
6
6
7
-
|Options| Intersight API | Splunk sourcetype |
7
+
|Option| Intersight API | Splunk sourcetype |
8
8
| --- | --- | --- |
9
-
|Enable AAA Audit Records |[aaa/AuditRecords][1]| cisco:intersight:aaaAuditRecords|
Further documentation, sample searches, and known issues are all available at [the Github repository](https://github.com/jerewill-cisco/intersight-splunk-addon).
0 commit comments