rusticity-core 0.1.5

Core AWS SDK integration for Rusticity
Documentation
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
use crate::config::AwsConfig;
use anyhow::Result;

#[derive(Clone, Debug)]
pub struct Instance {
    pub instance_id: String,
    pub name: String,
    pub state: String,
    pub instance_type: String,
    pub availability_zone: String,
    pub public_ipv4_dns: String,
    pub public_ipv4_address: String,
    pub elastic_ip: String,
    pub ipv6_ips: String,
    pub monitoring: String,
    pub security_groups: String,
    pub key_name: String,
    pub launch_time: String,
    pub platform_details: String,
    pub status_checks: String,
    pub alarm_status: String,
}

#[derive(Clone, Debug)]
pub struct InstanceTag {
    pub key: String,
    pub value: String,
}

pub struct Ec2Client {
    config: AwsConfig,
}

impl Ec2Client {
    pub fn new(config: AwsConfig) -> Self {
        Self { config }
    }

    pub async fn list_instances(&self) -> Result<Vec<Instance>> {
        let client = self.config.ec2_client();
        let mut instances = Vec::new();
        let mut next_token: Option<String> = None;

        loop {
            let mut request = client.describe_instances();
            if let Some(token) = next_token {
                request = request.next_token(token);
            }

            let response = request.send().await?;

            if let Some(reservations) = response.reservations {
                for reservation in reservations {
                    if let Some(insts) = reservation.instances {
                        for inst in insts {
                            let tags: std::collections::HashMap<String, String> = inst
                                .tags()
                                .iter()
                                .filter_map(|t| {
                                    Some((t.key()?.to_string(), t.value()?.to_string()))
                                })
                                .collect();

                            let name = tags.get("Name").cloned().unwrap_or_default();

                            let state = inst
                                .state()
                                .and_then(|s| s.name())
                                .map(|n| n.as_str().to_string())
                                .unwrap_or_default();

                            let security_groups = inst
                                .security_groups()
                                .iter()
                                .filter_map(|sg| sg.group_name())
                                .collect::<Vec<_>>()
                                .join(", ");

                            let ipv6_ips = inst
                                .network_interfaces()
                                .iter()
                                .flat_map(|ni| ni.ipv6_addresses())
                                .filter_map(|ip| ip.ipv6_address())
                                .collect::<Vec<_>>()
                                .join(", ");

                            let launch_time = inst
                                .launch_time()
                                .map(|dt| {
                                    let timestamp = dt.secs();
                                    chrono::DateTime::from_timestamp(timestamp, 0)
                                        .map(|dt| dt.format("%Y-%m-%d %H:%M:%S (UTC)").to_string())
                                        .unwrap_or_default()
                                })
                                .unwrap_or_default();

                            instances.push(Instance {
                                instance_id: inst.instance_id().unwrap_or("").to_string(),
                                name,
                                state,
                                instance_type: inst
                                    .instance_type()
                                    .map(|t| t.as_str().to_string())
                                    .unwrap_or_default(),
                                availability_zone: inst
                                    .placement()
                                    .and_then(|p| p.availability_zone())
                                    .unwrap_or("")
                                    .to_string(),
                                public_ipv4_dns: inst.public_dns_name().unwrap_or("").to_string(),
                                public_ipv4_address: inst
                                    .public_ip_address()
                                    .unwrap_or("")
                                    .to_string(),
                                elastic_ip: String::new(),
                                ipv6_ips,
                                monitoring: inst
                                    .monitoring()
                                    .and_then(|m| m.state())
                                    .map(|s| s.as_str().to_string())
                                    .unwrap_or_default(),
                                security_groups,
                                key_name: inst.key_name().unwrap_or("").to_string(),
                                launch_time,
                                platform_details: inst.platform_details().unwrap_or("").to_string(),
                                status_checks: String::new(),
                                alarm_status: String::new(),
                            });
                        }
                    }
                }
            }

            next_token = response.next_token;
            if next_token.is_none() {
                break;
            }
        }

        Ok(instances)
    }

    pub async fn list_tags(&self, instance_id: &str) -> Result<Vec<InstanceTag>> {
        let client = self.config.ec2_client();

        let response = client
            .describe_tags()
            .filters(
                aws_sdk_ec2::types::Filter::builder()
                    .name("resource-id")
                    .values(instance_id)
                    .build(),
            )
            .send()
            .await?;

        let mut tags = Vec::new();
        if let Some(tag_list) = response.tags {
            for tag in tag_list {
                if let (Some(key), Some(value)) = (tag.key, tag.value) {
                    tags.push(InstanceTag { key, value });
                }
            }
        }

        Ok(tags)
    }

    pub async fn get_cpu_metrics(&self, instance_id: &str) -> Result<Vec<(i64, f64)>> {
        let client = self.config.cloudwatch_client();
        let now = chrono::Utc::now();
        let start_time = now - chrono::Duration::hours(3);

        let response = client
            .get_metric_statistics()
            .namespace("AWS/EC2")
            .metric_name("CPUUtilization")
            .dimensions(
                aws_sdk_cloudwatch::types::Dimension::builder()
                    .name("InstanceId")
                    .value(instance_id)
                    .build(),
            )
            .start_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                start_time.timestamp_millis(),
            ))
            .end_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                now.timestamp_millis(),
            ))
            .period(300)
            .statistics(aws_sdk_cloudwatch::types::Statistic::Average)
            .send()
            .await?;

        let mut data_points = Vec::new();
        if let Some(datapoints) = response.datapoints {
            for dp in datapoints {
                if let (Some(timestamp), Some(value)) = (dp.timestamp, dp.average) {
                    data_points.push((timestamp.secs(), value));
                }
            }
        }

        data_points.sort_by_key(|(ts, _)| *ts);
        Ok(data_points)
    }

    pub async fn get_network_in_metrics(&self, instance_id: &str) -> Result<Vec<(i64, f64)>> {
        let client = self.config.cloudwatch_client();
        let now = chrono::Utc::now();
        let start_time = now - chrono::Duration::hours(3);

        let response = client
            .get_metric_statistics()
            .namespace("AWS/EC2")
            .metric_name("NetworkIn")
            .dimensions(
                aws_sdk_cloudwatch::types::Dimension::builder()
                    .name("InstanceId")
                    .value(instance_id)
                    .build(),
            )
            .start_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                start_time.timestamp_millis(),
            ))
            .end_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                now.timestamp_millis(),
            ))
            .period(300)
            .statistics(aws_sdk_cloudwatch::types::Statistic::Average)
            .send()
            .await?;

        let mut data_points = Vec::new();
        if let Some(datapoints) = response.datapoints {
            for dp in datapoints {
                if let (Some(timestamp), Some(value)) = (dp.timestamp, dp.average) {
                    data_points.push((timestamp.secs(), value));
                }
            }
        }

        data_points.sort_by_key(|(ts, _)| *ts);
        Ok(data_points)
    }

    pub async fn get_network_out_metrics(&self, instance_id: &str) -> Result<Vec<(i64, f64)>> {
        let client = self.config.cloudwatch_client();
        let now = chrono::Utc::now();
        let start_time = now - chrono::Duration::hours(3);

        let response = client
            .get_metric_statistics()
            .namespace("AWS/EC2")
            .metric_name("NetworkOut")
            .dimensions(
                aws_sdk_cloudwatch::types::Dimension::builder()
                    .name("InstanceId")
                    .value(instance_id)
                    .build(),
            )
            .start_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                start_time.timestamp_millis(),
            ))
            .end_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                now.timestamp_millis(),
            ))
            .period(300)
            .statistics(aws_sdk_cloudwatch::types::Statistic::Average)
            .send()
            .await?;

        let mut data_points = Vec::new();
        if let Some(datapoints) = response.datapoints {
            for dp in datapoints {
                if let (Some(timestamp), Some(value)) = (dp.timestamp, dp.average) {
                    data_points.push((timestamp.secs(), value));
                }
            }
        }

        data_points.sort_by_key(|(ts, _)| *ts);
        Ok(data_points)
    }

    pub async fn get_network_packets_in_metrics(
        &self,
        instance_id: &str,
    ) -> Result<Vec<(i64, f64)>> {
        let client = self.config.cloudwatch_client();
        let now = chrono::Utc::now();
        let start_time = now - chrono::Duration::hours(3);

        let response = client
            .get_metric_statistics()
            .namespace("AWS/EC2")
            .metric_name("NetworkPacketsIn")
            .dimensions(
                aws_sdk_cloudwatch::types::Dimension::builder()
                    .name("InstanceId")
                    .value(instance_id)
                    .build(),
            )
            .start_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                start_time.timestamp_millis(),
            ))
            .end_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                now.timestamp_millis(),
            ))
            .period(300)
            .statistics(aws_sdk_cloudwatch::types::Statistic::Average)
            .send()
            .await?;

        let mut data_points = Vec::new();
        if let Some(datapoints) = response.datapoints {
            for dp in datapoints {
                if let (Some(timestamp), Some(value)) = (dp.timestamp, dp.average) {
                    data_points.push((timestamp.secs(), value));
                }
            }
        }

        data_points.sort_by_key(|(ts, _)| *ts);
        Ok(data_points)
    }

    pub async fn get_network_packets_out_metrics(
        &self,
        instance_id: &str,
    ) -> Result<Vec<(i64, f64)>> {
        let client = self.config.cloudwatch_client();
        let now = chrono::Utc::now();
        let start_time = now - chrono::Duration::hours(3);

        let response = client
            .get_metric_statistics()
            .namespace("AWS/EC2")
            .metric_name("NetworkPacketsOut")
            .dimensions(
                aws_sdk_cloudwatch::types::Dimension::builder()
                    .name("InstanceId")
                    .value(instance_id)
                    .build(),
            )
            .start_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                start_time.timestamp_millis(),
            ))
            .end_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                now.timestamp_millis(),
            ))
            .period(300)
            .statistics(aws_sdk_cloudwatch::types::Statistic::Average)
            .send()
            .await?;

        let mut data_points = Vec::new();
        if let Some(datapoints) = response.datapoints {
            for dp in datapoints {
                if let (Some(timestamp), Some(value)) = (dp.timestamp, dp.average) {
                    data_points.push((timestamp.secs(), value));
                }
            }
        }

        data_points.sort_by_key(|(ts, _)| *ts);
        Ok(data_points)
    }

    pub async fn get_metadata_no_token_metrics(
        &self,
        instance_id: &str,
    ) -> Result<Vec<(i64, f64)>> {
        let client = self.config.cloudwatch_client();
        let now = chrono::Utc::now();
        let start_time = now - chrono::Duration::hours(3);

        let response = client
            .get_metric_statistics()
            .namespace("AWS/EC2")
            .metric_name("MetadataNoToken")
            .dimensions(
                aws_sdk_cloudwatch::types::Dimension::builder()
                    .name("InstanceId")
                    .value(instance_id)
                    .build(),
            )
            .start_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                start_time.timestamp_millis(),
            ))
            .end_time(aws_sdk_cloudwatch::primitives::DateTime::from_millis(
                now.timestamp_millis(),
            ))
            .period(300)
            .statistics(aws_sdk_cloudwatch::types::Statistic::Average)
            .send()
            .await?;

        let mut data_points = Vec::new();
        if let Some(datapoints) = response.datapoints {
            for dp in datapoints {
                if let (Some(timestamp), Some(value)) = (dp.timestamp, dp.average) {
                    data_points.push((timestamp.secs(), value));
                }
            }
        }

        data_points.sort_by_key(|(ts, _)| *ts);
        Ok(data_points)
    }
}