Dear all, I’m using Graylog 6 but I can’t see any way to let users create their own streams as before in previous versions.
Is it possible or not using GRaylog version 6.0?
Thanks a lot!!!
Dear all, I’m using Graylog 6 but I can’t see any way to let users create their own streams as before in previous versions.
Is it possible or not using GRaylog version 6.0?
Thanks a lot!!!
Hello @robertito,
That is possible and one of the prebuilt permissions should account for the creation of streams under System/Users and Teams. Another approach would be to create your own role, head to the api browser with the below address editing where appropriate.
https://your.graylog.url:9000/api/api-browser
Search for the below api endpoint
“Roles : User roles”
Take what I have below and enter it into the JSON body text box.
{
“name”: “Streams Editor”,
“description”: “Pipelines!”,
“permissions”: [
“streams:create”,
“streams:read”,
“streams:edit”,
“streams:delete”
],
“read_only”: false
}
You should then find the role of ‘Streams Editor’ when editing a user/team.
Thanks a lot!!!
That’s OK.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.