stop EC2 windows not having activity

0

How can I stop an EC2 instance with a lambda or in any other way when it is detected that it has no activity in the last 15 minutes?

Luis
demandé il y a un an230 vues
1 réponse
0
Réponse acceptée

To stop EC2 with Lambda, the code in the following document may be useful.
https://repost.aws/knowledge-center/start-stop-lambda-eventbridge

It seems to me that incorporating a method of detecting no activity in the past 15 minutes into this code would accomplish your requirement.
As for how to get the activity, there is a CloudWatch metric for EC2 called NetworkIn.
How about using the metrics here to alarm and trigger Lambda if the threshold falls below the threshold?
This metric is the amount of network traffic received by EC2, so if the value is low for the past 15 minutes, an alarm is raised to indicate that no communication is being sent to EC2 (EC2 is rarely used).

profile picture
EXPERT
répondu il y a un an
profile picture
EXPERT
vérifié il y a 2 mois
  • Thanks for the link. It has served me well. Although I still don't understand or see a way to identify if the Instance hasn't had any activity for the last 15 minutes. I want to shut down the EC2 instance as long as there is no activity on the instance in the last 15 min.

    Thank you

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions