Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use cloudwatch to determine if linux service is running

Suppose I have an ec2 instance with service /etc/init/my_service.conf with contents

script
    exec my_exec
end script

How can I monitor that ec2 instance such that if my_service stopped running I can act on it?

like image 924
mingxiao Avatar asked Aug 05 '15 17:08

mingxiao


1 Answers

You can publish a custom metric to CloudWatch in the form of a "heart beat".

  • Have a small script running via cron on your server checking the process list to see whether my_service is running and if it is, make a put-metric-data call to CloudWatch.
  • The metric could be as simple as pushing the number "1" to your custom metric in CloudWatch.
  • Set up a CloudWatch alarm that triggers if the average for the metric falls below 1
  • Make the period of the alarm be >= the period that the cron runs e.g. cron runs every 5 minutes, make the alarm alarm if it sees the average is below 1 for two 5 minute periods.
  • Make sure you also handle the situation in which the metric is not published (e. g. cron fails to run or whole machine dies). you would want to setup an alert in case the metric is missing. (see here: AWS Cloudwatch Heartbeat Alarm)
  • Be aware that the custom metric will add an additional cost of 50c to your AWS bill (not a big deal for one metric - but the equation changes drastically if you want to push hundred/thousands of metrics - i.e. good to know it's not free as one would expect)

See here for how to publish a custom metric: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/publishingMetrics.html

like image 116
BestPractices Avatar answered Sep 26 '22 13:09

BestPractices