1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* Hanzo Cloud API
*
* The Hanzo Cloud API as a customer calls it: every operation under /v1/ except the operator's admin product, relay routes, legacy spellings and capabilities still reached by flag. Tagged by product: the first path segment after /v1/.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct FleetMetrics {
/// At is when this reading was MEASURED, RFC 3339 in UTC — not when the board was built. A console decides staleness by comparing it to now; the board deliberately does not decide that for it.
#[serde(rename = "at", skip_serializing_if = "Option::is_none")]
pub at: Option<String>,
/// GPUUtil is aggregate accelerator utilization as a FRACTION of 1 — 0.42 is 42% busy, never 42. Across all of the unit's cards, not one of them.
#[serde(rename = "gpuUtil", skip_serializing_if = "Option::is_none")]
pub gpu_util: Option<f64>,
/// Load1 is the host's 1-minute load average — runnable processes, not a percentage, so it is read against the unit's core count and can exceed 1.
#[serde(rename = "load1", skip_serializing_if = "Option::is_none")]
pub load1: Option<f64>,
/// MemFree is host memory still available, in BYTES. It is what the source reported, not fleetSpec.Memory minus MemUsed.
#[serde(rename = "memFree", skip_serializing_if = "Option::is_none")]
pub mem_free: Option<i32>,
/// MemUsed is host memory in use, in BYTES.
#[serde(rename = "memUsed", skip_serializing_if = "Option::is_none")]
pub mem_used: Option<i32>,
}
impl FleetMetrics {
pub fn new() -> FleetMetrics {
FleetMetrics {
at: None,
gpu_util: None,
load1: None,
mem_free: None,
mem_used: None,
}
}
}