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 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则