I am looking for SPL which we can check the who can update the whitelist in lookup table and also the what changes are done , compare with previous one.
Thanks,
Sahil
The following search will give you a list of lookups, who can read and who can edit them. These are based on roles, so you can see who has the access to the roles and that will give you an idea of who can edit the lookups in terms of users. For checking who edited the lookup, the closest that you can get is if you install the Splunk app for lookup file editing . It will give you an idea of who edited which lookup. Regarding comparing the changes, it is unfortunately not possible as of now via SPL. Lookup editor app however creates a backup of your last change, so if you have the app, you'll have to manually compare the lookups or do some Python scripting and create an app which will do it for you.
| rest/servicesNS/-/-/data/lookup-table-files
| table title eai:acl.perms.read eai:acl.perms.write
Once lookup editor app is installed, the following search will tell you who edited which lookup:
index=_internal "Lookup edited successfully" | table _time user namespace lookup_file
++If this helps, please consider accepting as an answer++
Just quick Question.
How to check the Lookup table version update via SPL.
I can see who edit the file, also need to check the Version history , Is there SPL we can see the details?
The following search will give you a list of lookups, who can read and who can edit them. These are based on roles, so you can see who has the access to the roles and that will give you an idea of who can edit the lookups in terms of users. For checking who edited the lookup, the closest that you can get is if you install the Splunk app for lookup file editing . It will give you an idea of who edited which lookup. Regarding comparing the changes, it is unfortunately not possible as of now via SPL. Lookup editor app however creates a backup of your last change, so if you have the app, you'll have to manually compare the lookups or do some Python scripting and create an app which will do it for you.
| rest/servicesNS/-/-/data/lookup-table-files
| table title eai:acl.perms.read eai:acl.perms.write
Once lookup editor app is installed, the following search will tell you who edited which lookup:
index=_internal "Lookup edited successfully" | table _time user namespace lookup_file
++If this helps, please consider accepting as an answer++