2021-11-12 14:27:05 +00:00
|
|
|
export interface IHostSummaryPlatforms {
|
|
|
|
platform: string;
|
|
|
|
hosts_count: number;
|
|
|
|
}
|
|
|
|
|
2022-05-12 15:58:50 +00:00
|
|
|
export interface IHostSummaryLabel {
|
|
|
|
id: number;
|
|
|
|
name: string;
|
|
|
|
description: string;
|
2022-06-10 18:29:45 +00:00
|
|
|
label_type: "regular" | "builtin";
|
2022-05-12 15:58:50 +00:00
|
|
|
}
|
|
|
|
|
2021-08-16 14:30:19 +00:00
|
|
|
export interface IHostSummary {
|
2022-05-12 15:58:50 +00:00
|
|
|
all_linux_count: number;
|
2021-11-12 14:27:05 +00:00
|
|
|
totals_hosts_count: number;
|
|
|
|
platforms: IHostSummaryPlatforms[] | null;
|
2021-08-16 14:30:19 +00:00
|
|
|
online_count: number;
|
|
|
|
offline_count: number;
|
2022-05-23 19:11:02 +00:00
|
|
|
mia_count: number; // DEPRECATED: to be removed in Fleet 5.0
|
2021-08-16 14:30:19 +00:00
|
|
|
new_count: number;
|
2022-05-12 15:58:50 +00:00
|
|
|
builtin_labels: IHostSummaryLabel[];
|
2021-08-16 14:30:19 +00:00
|
|
|
}
|