Select-Splunk Cmdlet
Searches Splunk data.
Syntax
Select-Splunk [parameters]
Remarks
The Select-Splunk cmdlet allows you to use a syntax similar to SQL SELECT statements to search Splunk data.
$conn = Connect-Splunk -User 'MyUserName' -Password 'MyPassword' -URL 'MyURL' Select-Splunk -Connection $conn -Table "DataModels" -Columns @("Name","Owner") -Where "Id='SampleDataset'"