LogoLogo
Support PortalCalyptia CoreContact Us
Calyptia Core API
Calyptia Core API
  • Specification
  • About
  • API reference
    • Verification email
    • Projects
      • Tokens
      • Members
      • Invite
      • Agents
      • Aggregators
      • Core instances
      • Aggregator pipelines
      • Pipelines
      • Environments
      • Metrics
      • Config sections
      • Fleets
        • Status
      • Aws contracts
      • Processing rule templates
      • Saml mappings
    • Project tokens
    • Members
    • Join project
    • Agents
      • Config history
      • Metrics
      • Metrics by plugin
      • Metrics over time
      • Metrics over time by plugin
      • Errors
    • Aggregators
      • Ping
      • Resource profiles
      • Pipelines
      • Pipelines metrics
    • Core instance files
    • Core instance secrets
    • Resource profiles
    • Aggregator pipelines
      • Config history
      • Status history
      • Files
      • Secrets
      • Ports
    • Pipeline files
    • Pipeline logs
    • Pipeline checks
    • Core instance checks
    • Ingest checks
    • Pipeline secrets
    • Pipeline ports
    • Config validate
    • Config validate v2
    • Environments
    • Pipeline metrics
    • Aggregator metrics
    • Cluster objects
    • Trace sessions
      • Records
    • Config sections
    • Processing rules
    • Preview processing rule
    • Fleets
      • Status
      • Config
      • Files
      • Agent errors
    • Fleet files
    • Search
    • Aws customer redirect
    • Cluster object regexes
    • Processing rule templates
    • Validate fluentbit config
    • Saml mappings
    • Core instances
      • Files
      • Secrets
      • Pipelines
      • Ingest checks
      • Checks
      • Cluster objects
      • Metrics
      • Metrics by plugin
      • Metrics over time
      • Metrics over time by plugin
    • Pipelines
      • Logs
      • Checks
      • Cluster objects
      • Metadata
      • Trace sessions
      • Trace session
        • Records
      • Config section set
      • Processing rules
      • Metrics
      • Metrics by plugin
      • Metrics over time
      • Metrics over time by plugin
      • Cluster object regexes
    • Agent errors
      • Dismiss
  • Specification
Powered by GitBook
On this page
  1. API reference
  2. Agents

Metrics over time by plugin

PreviousMetrics over timeNextErrors

Agent metrics over time organized by plugin

get
Authorizations
Path parameters
agentIDstring · uuidRequired
Query parameters
startstring · durationOptional

Option to filter metrics since the given time ago

Default: -24h
intervalstring · durationOptional

Option to set the time window to group metrics

Default: 1h
Responses
200
OK
application/json
get
GET /v2/agents/{agentID}/metrics_over_time_by_plugin HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "inputs": [
    {
      "instance": "storage_backlog.3",
      "metrics": {
        "bytes": [
          {
            "time": "2025-05-11T09:52:17.508Z",
            "value": 1
          }
        ],
        "records": [
          {
            "time": "2025-05-11T09:52:17.508Z",
            "value": 1
          }
        ]
      }
    }
  ],
  "filters": [
    {
      "instance": "storage_backlog.3",
      "metrics": {
        "bytes": [
          {
            "time": "2025-05-11T09:52:17.508Z",
            "value": 1
          }
        ],
        "records": [
          {
            "time": "2025-05-11T09:52:17.508Z",
            "value": 1
          }
        ]
      }
    }
  ],
  "outputs": [
    {
      "instance": "storage_backlog.3",
      "metrics": {
        "bytes": [
          {
            "time": "2025-05-11T09:52:17.508Z",
            "value": 1
          }
        ],
        "records": [
          {
            "time": "2025-05-11T09:52:17.508Z",
            "value": 1
          }
        ]
      }
    }
  ]
}