Getting Data In

How do you change apps in in the API (Java)?

scottq
New Member

So I am following the Java Splunk API tutorials and Can list apps and saved searches but for the life of me I cannot figure out how to get saved searches per app.

This is what I have but it defaults to the main app and not the app I am trying to look for.

Collection<SavedSearch> savedSearches = service.getApplications().get("a_different_app").getService().getSavedSearches().values();
    for (SavedSearch ss: savedSearches){
        System.out.println(ss.getName());
    }

As you can see I am trying to go to a different app other than the default "Search & Reporting" so I tried that on from this one below.

Collection<SavedSearch> savedSearches = service.getSavedSearches().values();
    for (SavedSearch ss: savedSearches){
        System.out.println(ss.getName());
    }

Both codes above prints out the saved searched for the "Search & Reporting".

Can anyone help with printing the searches from certain apps and then run said search from that app?

Thanks

Tags (2)
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

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

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...