Skip to content

replicationOutgoingStats

Get the time series of total outgoing bandwidth from the replication clusters.

Arguments

Argument Type Description
input (required) ReplicationBandwidthOutgoingInput! Input for InternalReplicationBandwidthOutgoing.

Returns

InternalReplicationBandwidthOutgoingResponse!

Sample

query ReplicationOutgoingStats($input: ReplicationBandwidthOutgoingInput!) {
  replicationOutgoingStats(input: $input)
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "replicationOutgoingStats": {
      "items": [
        {
          "stat": 0,
          "time": "2024-01-01T00:00:00.000Z"
        }
      ]
    }
  }
}