Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

LimitBandwidth

Kowshik Prakasam and Pieter Noordhuis edited this page Feb 28, 2013 · 1 revision

Limits the network bandwidth for a container.

Request

TODO

Response

TODO

Errors

TODO

Definition

package warden;

message LimitBandwidthRequest {
  required string handle = 1;

  optional uint64 rate  = 2; // Bandwidth rate in byte(s)/sec
  optional uint64 burst = 3; // Allow burst size in byte(s)
}

message LimitBandwidthResponse {
  optional uint64 rate  = 1; // Bandwidth rate in byte(s)/sec
  optional uint64 burst = 2; // Allow burst size in byte(s)
}
Clone this wiki locally