Dashboards & Visualizations

app list dropdown

dipanjan80
Explorer

Hi,
I am trying to add the app list dropdown on my custom page.
Can you please suggest some ways.

0 Karma
1 Solution

somesoni2
Revered Legend

You can use following search with REST command to list all the apps present in the current splunk instance(where the dashboard is created).

| REST /services/apps/local splunk_server=local | table label

Include this search in your dashboard.

View solution in original post

somesoni2
Revered Legend

You can use following search with REST command to list all the apps present in the current splunk instance(where the dashboard is created).

| REST /services/apps/local splunk_server=local | table label

Include this search in your dashboard.

somesoni2
Revered Legend

For getting list of apps to which the current user has permission, you can use following:

| REST /services/apps/local splunk_server=local |search [ | rest /services/authentication/current-context | table username | rename username as eai:acl.perms.write] | table label

Any app where write permission is given to Everyone will not listed here. The reason for this is for Everyone, splunk uses "*" which can be escaped in a search string. To get list of apps to which the current user has explicit write permission, use above. For explicit read, changed eai:acl.perms.write to eai:acl.perms.read.

Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...