Example roles.ini

Does anyone have a functional roles.ini that limits a user to being able to view the ‘problems’ dashlet and allow them to acknowledge problems/make comments?

I tried to use this:

[Support]
users = “support”
permissions = “monitoring/command/acknowledge-problem,monitoring/command/remove-acknowledgement,monitoring/command/comment/*”
groups = “Support”

But when the user ‘support’ logs in there are no dashlets available.

Does anyone already have a role configured that allows very minimal actions inside of the web interface, could you share please?

Hey @bmf614

try adding generale module access:

[Support]
users = “support”
permissions = “module/monitoring,monitoring/command/acknowledge-problem,monitoring/command/remove-acknowledgement,monitoring/command/comment/*”
groups = “Support”

That indeed took care of it, thanks.