Profiles can be managed using REST API.

Profile creation

A new profile can be created with REST API query /api/profile/create

https://hostname:8090/api/profile/create
{
  "name": "profile1",
  "rate": "1",
  "metrics": ["4", "11"],
  "rules": ["13"]
}

Where

Profile changing

Profile can be changed with REST API query /api/profile/update

https://hostname:8090/api/profile/update
{
  "id": "18",
  "name": "profile1",
  "rate": "1",
  "metrics": ["4", "11"],
  "rules": ["13"]
}

Where

Profile deletion

Profile can be deleted with REST API query /api/profile/delete

https://hostname:8090/api/profile/delete
{
  "id": "18"
}

Where

When profile is deleted, its metrics acquisition will be stopped on all nodes, for which the profile was set.

Obtaining profile information

The profile information can be obtained with REST API query /api/profile/list

https://hostname:8090/api/profile/list
{
  "id": "18"
}

Where

If profile Id is set, the response will contain this profile information only. If profile Id is not set, the response will contain information about all the profiles on backend server.

For each profile, the response contains the same fields as /api/profile/update query.