opensearch_client/common/
resource_stats.rs1use crate::common;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct ResourceStats {
16 #[serde(rename = "average")]
17 pub average: common::ResourceStat,
18 #[serde(rename = "thread_info")]
19 pub thread_info: common::ThreadInfo,
20 #[serde(rename = "min")]
21 pub min: common::ResourceStat,
22 #[serde(rename = "total")]
23 pub total: common::ResourceStat,
24 #[serde(rename = "max")]
25 pub max: common::ResourceStat,
26}
27
28impl ResourceStats {
29 pub fn new(
30 average: common::ResourceStat,
31 thread_info: common::ThreadInfo,
32 min: common::ResourceStat,
33 total: common::ResourceStat,
34 max: common::ResourceStat,
35 ) -> ResourceStats {
36 ResourceStats {
37 average,
38 thread_info,
39 min,
40 total,
41 max,
42 }
43 }
44}