2020-08-03 06:53:42 +02:00
|
|
|
namespace k8s.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Describes the resource usage metrics of a container pull from metrics server API.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ContainerMetrics
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Defines container name corresponding to the one from pod.spec.containers.
|
|
|
|
|
/// </summary>
|
2021-12-13 07:31:59 -08:00
|
|
|
[JsonPropertyName("name")]
|
2020-08-03 06:53:42 +02:00
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The resource usage.
|
|
|
|
|
/// </summary>
|
2021-12-13 07:31:59 -08:00
|
|
|
[JsonPropertyName("usage")]
|
2020-08-03 06:53:42 +02:00
|
|
|
public IDictionary<string, ResourceQuantity> Usage { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|