Splunk ITSI

Splunk ITSI Correlation search Name

ManjunathNargun
New Member

hi,

How to identify the correlation search name using the Report name found in skipped searches.

We are trying to resolve the skipped searches issue. Any help would be much appreciated.

ManjunathNargun_1-1693583296515.png

 

Thanks!

Labels (1)
0 Karma

andrew_nelson
Communicator

Extract the search key (The hex string you have redacted) using either split or rex to a field called keyID substituting search_name for whatever the field is called in your data. 

 

| eval keyID=mvindex(split(search_name, " - "), 1)

 

OR 

 

| rex field=search_name "Indicator - (?<keyID>[^\s]+) - "

 

 

Then you can use the ITSI API endpoints to tie them to the base searches: 

 

| join type=left keyID 
    [| rest splunk_server=local /servicesNS/nobody/SA-ITOA/itoa_interface/kpi_base_search report_as=text 
    | eval value=spath(value,"{}") 
    | mvexpand value 
    | eval title = spath(value, "title"), keyID = spath(value, "_key"), frequency = spath(value, "alert_period") 
    | fields title, keyID, frequency ]  

 

0 Karma
Get Updates on the Splunk Community!

Customer Experience | Splunk 2024: New Onboarding Resources

In 2023, we were routinely reminded that the digital world is ever-evolving and susceptible to new ...

Celebrate CX Day with Splunk: Take our interactive quiz, join our LinkedIn Live ...

Today and every day, Splunk celebrates the importance of customer experience throughout our product, ...

How to Get Started with Splunk Data Management Pipeline Builders (Edge Processor & ...

If you want to gain full control over your growing data volumes, check out Splunk’s Data Management pipeline ...