- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Naga
Engager
02-24-2021
04:31 AM
Here is the requirement:
I wanted to create a form with list of Apps in my Search head Dropdown. If the Developer choose any App from the list then it should show what level of permission (Read / Write) to whom in the dashboard. Is the App metadata writing this information anywhere in the logs. Or can we get this via REST API Search?
Sample Output
App | Permission |
Dashboard Examples | READ - * ; WRITE - POWER |
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

manjunathmeti
Champion
02-24-2021
05:20 AM
hi @Naga ,
Check this:
| rest /services/apps/local
| rename "eai:acl.perms.read" AS read, "eai:acl.perms.write" AS write
| fields title label version read write
| strcat "READ - " read "; WRITE - " write permissions
If this reply helps you, an upvote/like would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

manjunathmeti
Champion
02-24-2021
05:20 AM
hi @Naga ,
Check this:
| rest /services/apps/local
| rename "eai:acl.perms.read" AS read, "eai:acl.perms.write" AS write
| fields title label version read write
| strcat "READ - " read "; WRITE - " write permissions
If this reply helps you, an upvote/like would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Naga
Engager
03-02-2021
07:16 AM
Thank you manjunath. It helped a lot. Can we get the same in internal logs? We have different search head and each set is owned by different teams like Team 1 Splunk Infra / Team 2 / Team 3.
