-
-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segregate data per customer #569
Comments
I don't understand. The list of services is filtered by customer if a user is assigned to a customer. See https://github.com/alerta/alerta/blob/master/alerta/views/alerts.py#L507 |
Uhm.. ok, so maybe it's me who didn't understand how to assign a customer to a user. this is my alerta configuration DATABASE_URL = 'postgresql://alerta:[email protected]/alerta' PLUGINS = [ NOTIFICATION_BLACKOUT = True #########AUTHENTICATION########### ####### web UI ######## COLUMNS = ['severity', 'status', 'createTime', "customer", 'origin', 'environment', 'service', 'resource', 'event', 'text', 'owner'] LOGGINGAUDIT_TRAIL = ['admin', 'write', 'auth'] LOG_HANDLERS = ['file'] |
Is your feature request related to a problem? Please describe.
I noticed that when creating multiple customer on alerta, some information are shared among all of them (i.e. services). this is probably because there is no filter that serves to segregate the information on this criterion.
Describe the solution you'd like
Will be cool if there were a filter based on visible customer to segregate informations among different customers.
Describe alternatives you've considered
i did not see an alternative, cause the data are queryed on db, so i think the solution can be to make a query, with a where condition which contains the customer names that each user is allowed to view
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: