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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...