api2/types: add necessary types for node status
we want to use concrete types instead of value Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
8e898895cc
commit
75054859ff
|
@ -751,9 +751,8 @@ impl Default for GarbageCollectionStatus {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#[api()]
|
#[api()]
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Default, Serialize, Deserialize)]
|
||||||
/// Storage space usage information.
|
/// Storage space usage information.
|
||||||
pub struct StorageStatus {
|
pub struct StorageStatus {
|
||||||
/// Total space (bytes).
|
/// Total space (bytes).
|
||||||
|
@ -1507,3 +1506,49 @@ pub struct JobScheduleStatus {
|
||||||
#[serde(skip_serializing_if="Option::is_none")]
|
#[serde(skip_serializing_if="Option::is_none")]
|
||||||
pub last_run_endtime: Option<i64>,
|
pub last_run_endtime: Option<i64>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[api]
|
||||||
|
#[derive(Serialize, Deserialize, Default)]
|
||||||
|
#[serde(rename_all = "kebab-case")]
|
||||||
|
/// Node memory usage counters
|
||||||
|
pub struct NodeMemoryCounters {
|
||||||
|
/// Total memory
|
||||||
|
pub total: u64,
|
||||||
|
/// Used memory
|
||||||
|
pub used: u64,
|
||||||
|
/// Free memory
|
||||||
|
pub free: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[api]
|
||||||
|
#[derive(Serialize,Deserialize,Default)]
|
||||||
|
#[serde(rename_all = "kebab-case")]
|
||||||
|
/// Contains general node information such as the fingerprint`
|
||||||
|
pub struct NodeInformation {
|
||||||
|
/// The SSL Fingerprint
|
||||||
|
pub fingerprint: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[api(
|
||||||
|
properties: {
|
||||||
|
memory: {
|
||||||
|
type: NodeMemoryCounters,
|
||||||
|
},
|
||||||
|
root: {
|
||||||
|
type: StorageStatus,
|
||||||
|
},
|
||||||
|
info: {
|
||||||
|
type: NodeInformation,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
)]
|
||||||
|
#[derive(Serialize, Deserialize, Default)]
|
||||||
|
#[serde(rename_all = "kebab-case")]
|
||||||
|
/// The Node status
|
||||||
|
pub struct NodeStatus {
|
||||||
|
pub memory: NodeMemoryCounters,
|
||||||
|
pub root: StorageStatus,
|
||||||
|
/// Total CPU usage since last query.
|
||||||
|
pub cpu: f64,
|
||||||
|
pub info: NodeInformation,
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue