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
gefragt vor einem Jahr1460 Aufrufe
2 Antworten
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
beantwortet vor einem Jahr
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
EXPERTE
beantwortet vor einem Jahr

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen