EC2 Instances uptime

0

Looking to generate a report for the uptime of all the EC2 instances running on aws. What is the best way to get this report?

profile pictureAWS
已提問 1 年前檢視次數 1463 次
2 個答案
2

Open CloudShell, type pwsh then press the Enter key to start a PowerShell session, then run the following to calculate the running time of each EC2 instance in every region:

foreach($region in (Get-EC2Region).RegionName) { Get-EC2Instance -Region $region | ForEach-Object { [pscustomobject]@{InstanceId = $_.Instances.InstanceId; UptimeInDays = ((Get-Date) - $_.Instances.UsageOperationUpdateTime).Days; Region = $region }}}

The output should look something like this:

InstanceId          UptimeInDays Region
----------          ------------ ------
i-1234567890abcdef0          554 eu-west-1
i-1234567890abcdef1          501 eu-west-2
AWS
Trent
已回答 1 年前
0

Hi, for a quick start and short feedback loop from your customer, you may want to start with 3rd-party packaged services running as SaaS.

See https://www.comparitech.com/net-admin/aws-monitoring-services/

profile pictureAWS
專家
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南