OpAMP Protocol Sequence
OpAMP protocol execution flow and callback sequence
OpAMP Commander is a comprehensive management platform for OpenTelemetry agents that implements the Open Agent Management Protocol (OpAMP). It provides a centralized solution for managing, monitoring, and configuring distributed telemetry collection agents.
Manage all your OpenTelemetry agents from a single web-based interface. Monitor agent health, status, and performance metrics in real-time.
Update agent configurations dynamically without restarting agents. Push configuration changes to individual agents or groups of agents instantly.
Automatically discover and register new agents as they come online. Track agent inventory and deployment status across your infrastructure.
Manage agent versions and coordinate upgrades across your fleet. Roll out updates gradually with canary deployments.
Built-in authentication and authorization ensure secure communication between the server and agents. Support for TLS/SSL encryption and JWT-based authentication.
OpAMP Commander follows a modern, layered architecture designed for scalability and maintainability.
graph TB
subgraph Clients
CLI[opampctl CLI]
Agent[OpAMP Agents<br/>OpenTelemetry Collectors]
WebUI[Web UI<br/>Planned]
end
subgraph "OpAMP Commander Server"
Server[OpAMP Commander<br/>API Server]
end
subgraph Storage
DB[(MongoDB<br/>Database)]
end
CLI -->|HTTP/REST<br/>Management API| Server
Agent -->|WebSocket/gRPC<br/>OpAMP Protocol| Server
WebUI -.->|HTTP/REST| Server
Server -->|Persist Data| DB
style Server fill:#4a90e2,stroke:#333,stroke-width:2px,color:#fff
style DB fill:#6c757d,stroke:#333,stroke-width:2px,color:#fff
style CLI fill:#28a745,stroke:#333,stroke-width:2px,color:#fff
style Agent fill:#ffc107,stroke:#333,stroke-width:2px,color:#000
style WebUI fill:#17a2b8,stroke:#333,stroke-width:2px,color:#fffAgent Registration & Management:
sequenceDiagram
participant Agent as OpAMP Agent
participant Server as OpAMP Commander
participant DB as MongoDB
Agent->>Server: Connect via WebSocket
Server->>DB: Store Agent Info
Server->>Agent: Send Configuration
Agent->>Server: Report Status
Server->>DB: Update Agent StateConfiguration Management via CLI:
sequenceDiagram
participant Admin as Administrator
participant CLI as opampctl
participant Server as OpAMP Commander
participant Agent as OpAMP Agent
Admin->>CLI: opampctl create agentgroup
CLI->>Server: POST /api/v1/agentgroups
Server->>CLI: Group Created
Admin->>CLI: opampctl update config
CLI->>Server: PUT /api/v1/agents/{id}/update-agent-config
Server->>Agent: Push New Configuration
Agent->>Server: Acknowledge
Server->>CLI: Update SuccessfulDeploy and manage OpenTelemetry collectors across your infrastructure for comprehensive observability.
Configure distributed tracing and metrics collection for containerized applications.
Enforce standardized telemetry collection policies across your organization.
Control sampling rates and filter telemetry data to optimize storage and processing costs.
Ready to start using OpAMP Commander? Check out our Getting Started Guide for installation and setup instructions.
OpAMP protocol execution flow and callback sequence
Was this page helpful?