User audit report
It would be helpful if there was a report that admins could run that would allow for quick audits of users, their security roles, and which elasticubes to which they have access.
Currently, getting this information isn't very straightforward - it could maybe be done using the API? Ideas?
-
I'm kind of new to this, but I think it'd be pretty straight forward to write a script that uses the API to do that.
I tested this on a dashboard level script (warning the template literal syntax below will break pdf generation and also reporting):
jQuery.get('/api/v1/users',function(users){
users.forEach(function(user, i){
console.log(`User ${i}: ` + user["_id"])
});
});and sure enough in the console you get:
You could probably get all the data you want and feed that into a widget?
Please sign in to leave a comment.
Comments
1 comment