Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions events/metric.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ message CounterEvent {
required string applicationId = 1; /// ID of the contained application.
required int32 instanceIndex = 2; /// Instance index of the contained application. (This, with applicationId, should uniquely identify a container.)

required double cpuPercentage = 3; /// CPU used, on a scale of 0 to 100.
required uint64 memoryBytes = 4; /// Bytes of memory used.
required uint64 diskBytes = 5; /// Bytes of disk used.
required double cpuPercentage = 3; /// CPU used, on a scale of 0 to 100.
required uint64 memoryBytes = 4; /// Bytes of memory used.
required uint64 diskBytes = 5; /// Bytes of disk used.
required uint64 memoryBytesQuota = 6; /// Maximum bytes of memory allocated to container.
required uint64 diskBytesQuota = 7; /// Maximum bytes of disk allocated to container.
}