Render · Example Payload

Render Get Bandwidth Sources Example

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Render Get Bandwidth Sources Example is an example object payload from Render, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "get-bandwidth-sources",
  "method": "GET",
  "path": "/metrics/bandwidth-sources",
  "summary": "Get bandwidth usage breakdown by traffic source",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "data": [
          {
            "labels": {
              "resource": "srv-abc123",
              "trafficSource": "total"
            },
            "values": [
              {
                "timestamp": 1709856000,
                "value": 125.5
              },
              {
                "timestamp": 1709859600,
                "value": 98.2
              }
            ]
          },
          {
            "labels": {
              "resource": "srv-abc123",
              "trafficSource": "http"
            },
            "values": [
              {
                "timestamp": 1709856000,
                "value": 100
              },
              {
                "timestamp": 1709859600,
                "value": 75.8
              }
            ]
          },
          {
            "labels": {
              "resource": "srv-abc123",
              "trafficSource": "websocket"
            },
            "values": [
              {
                "timestamp": 1709856000,
                "value": 25.5
              },
              {
                "timestamp": 1709859600,
                "value": 22.4
              }
            ]
          }
        ]
      }
    }
  ]
}