All Apps and Add-ons

Trying to query hadoop but no data or irrelevant results are being returned

jcampbell1977
Explorer

So our main index is our actual index and index_archive is the virtual index that is querying hadoop. When I query only the main index, we get results, but none from our virtual index.

index=main OR index=main_archive
user=exampleuser
| search (NOT "exampleExlude" NOT oauth_client_name=example-productionname )
| where isnotnull(ip_forwarded_for)

| eval source= mvindex(fwd_list, 0)
| eval fwd_list = split(ip_forwarded_for, ",")
| table _time, user, source, authorization_description, authorization_success, user_agent, method, path
| sort _time asc

0 Karma

DalJeanis
Legend

First, at the very least, there is something odd about that code. Did you accidentally copy lines 5 and 6 in reverse order? Here is what I would expect to be the correct order, with the most efficient search usage...

(index=main OR index=main_archive)  user=exampleuser ip_forwarded_for=* 
( NOT oauth_client_name=example-productionname) (NOT "exampleExclude")
| eval source= mvindex(split(ip_forwarded_for,","),0) 
| table _time, user, source, authorization_description, authorization_success, user_agent, method, path 
| sort _time asc

Second, exactly how are the fields ip_forwarded_for and oauth_client_name created? Certain extractions are not available in Hunk virtual indexes. They don't sound like they would apply to those fields, but I'd check that before spending too much time on anything else.

0 Karma
Get Updates on the Splunk Community!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...