This is a minor bug that hte developers have been notified on and will probably be fixed very soon.
Note that when the unix app gets installed a flag that is supposed to be set doesnt get.
Your default.data in the unix app looks like this:
/splunk/etc/apps/unix/metadata more default.meta
[tags]
export = system
[props]
export = system
[transforms]
export = system
[eventtypes]
access = read : [ * ], write : [ admin, power ]
Note that even though the tag stanza is set to be global, the eventtype does not have such a flag.
In order to be able to see these eventtypes outside of the unix app, and hence have the search on the "tag=access" work without errors, the following needs to be changed:
[eventtypes]
access = read : [ * ], write : [ admin, power ]
export = system
Then a server restart is needed, and searching should work just fine...
Cheers,
.gz
... View more