pub struct Overview {
pub version: String,
pub redundancy: Option<RedundancyInfo>,
pub java: Option<JavaInfo>,
pub os: Option<OsInfo>,
pub uptime: i64,
pub memory: Vec<i64>,
pub cpu: f64,
pub disk: Option<DiskInfo>,
pub license: Option<OverviewLicense>,
pub extra: BTreeMap<String, Value>,
}Expand description
GET /data/api/v1/overview — the status call (platform + runtime).
Fields§
§version: StringVersion + build revision in one string, e.g.
"8.3.6 (b2026042713)".
redundancy: Option<RedundancyInfo>Redundancy block, when reported.
java: Option<JavaInfo>JVM block {version, vendor, name}, when reported.
os: Option<OsInfo>OS block {name, arch, version}, when reported.
uptime: i64Gateway uptime in epoch MILLISECONDS (live capture: 338137
≈ 5½ minutes — a seconds interpretation would be off by 1000×).
memory: Vec<i64>[used, max] heap bytes (live capture: [338137088i64, 1073741824i64]).
cpu: f64CPU utilization as a 0–1 FRACTION (live capture: 0.0031).
NOT percent — systemPerformance/currentGauges reports percent
(4.88). No silent conversion between the two, ever.
disk: Option<DiskInfo>Disk block {total, used} bytes, when reported.
license: Option<OverviewLicense>License state block, when reported.
extra: BTreeMap<String, Value>Unknown keys round-trip (passthrough-shaped --json).