Grafana Cloud

Security and access controls

Agent Observability enforces security at multiple layers: tenant isolation at the API level, authentication on SDK connections, and RBAC in Grafana Cloud.

Understand tenant isolation

Every API request is scoped to a Grafana Cloud stack. Agent Observability enforces strict tenant boundaries. Generation data is scoped to the stack that exported it. Query APIs return only data for the authenticated stack. Evaluation rules and scores are stack-scoped. There is no cross-tenant data access.

Authenticate SDK requests

For Grafana Cloud, SDKs use basic authentication with your instance ID and a Cloud Access Policy Token.

FieldDescription
Instance IDNumeric Grafana Cloud stack ID from the Agent Observability Configuration page.
Cloud Access Policy TokenToken with the sigil:write scope.

Configure RBAC

Agent Observability defines five roles with increasing permissions. Assign roles through Grafana’s RBAC system to control who can view, annotate, and configure Agent Observability.

RoleAccess
Agent Observability ViewerLanding page and tutorial.
Agent Observability Data ReaderAnalytics, traces, model cards, agents, evaluation results, and experiments without conversation access.
Agent Observability ReaderConversations, analytics, traces, agents, model cards, evaluation results, and experiments.
Agent Observability Feedback WriterAll Reader permissions plus feedback writing.
Agent Observability AdminFull access including creating and configuring evaluators, evaluation rules, guards, and settings.

Only the Agent Observability Admin role can create or modify evaluation rules, templates, experiments, and guards by default. To grant guards-only access, create a custom Grafana role with grafana-agento11y-app.guards:write (and the read permissions needed for evaluator testing). All roles with data access can view evaluation results and open the evaluation configure page in view-only mode (explore settings locally; changes are not saved). Persisting configuration, running configure playground previews/tests, and other eval write APIs require grafana-agento11y-app.eval:write (or guards write where documented).

Map permissions to actions

Each Agent Observability role grants a set of permissions. Use the table below when you need to understand or audit the underlying RBAC settings.

PermissionDescriptionScope
plugins.app:accessAccess the Agent Observability plugin shell.plugins:id:grafana-agento11y-app
grafana-agento11y-app.data:readView dashboards, traces, model cards, agents, evaluation results, and evaluation configure (view-only).n/a
grafana-agento11y-app.conversations:readView conversations and request follow-ups.n/a
grafana-agento11y-app.feedback:writeSubmit ratings and annotations on conversations.n/a
grafana-agento11y-app.eval:writeCreate and manage evaluators, evaluation rules, templates, experiments, and test suites; run configure playground POST helpers (POST /eval/rules:preview, POST /eval:test, etc.). Previewing the rendered LLM-judge prompt (POST /eval:render-prompt) also requires data:read or conversations:read.n/a
grafana-agento11y-app.guards:writeCreate and manage guards (hook rules) and their evaluators. Also grants evaluator write access so guard authors can create the evaluators their guards reference. Previewing the rendered LLM-judge prompt also requires data:read or conversations:read.n/a
grafana-agento11y-app.settings:writeConfigure plugin datasource settings.n/a

Next steps