Managing System Users
Viewing the User List
Viewing the user list is available through the system web interface. The list is located in the Administration section on the Users page and displays employee profiles to which access is available.
User profiles can be created manually through the web interface. They can also be created automatically based on data received from monitoring agents and/or integration with Active Directory or using GraphQL. The basics of working with GraphQL are described in Working with GraphQL.
Viewing the Group List
Viewing the group list is possible in two ways:
- Through the system web interface. The group list is located in the Administration section on the Users page
- Through a GraphQL query in the following format:
{
department{
departments{
id
name
}
}
}
Viewing Group Changes
To view group changes, use the following GraphQL query:
{
department{
department (id:1) {
id
name
}
}
}
where id:1 is the ID of a specific group.
To compare, you need to execute two or more queries: the first query is executed at the beginning of the analyzed period, and the second query is executed at the end of the analyzed period. Differences in the responses indicate parameter changes.
Managing System Access Roles
Viewing the Access Role List
There are two ways to view the access role list:
- Through the system web interface. The role list is located in the Settings/Access Roles section
- Sending a GraphQL query in the following format:
query{
access_role{
access_role_list{
items{
element{
__typename
id
name
}
}
}
}
}
Was the article helpful?