Reputation: 5117
I want to design something like amazon cloud watch for real time monitoring of applications I own and I run in my own cluster of machines (not AWS cluster).
Basic requirement:
Possible approach that I think will work but I need suggestions on:
Pointer on this are really appreciated.
Upvotes: 3
Views: 441
Reputation: 675
For your basic requirements.
If you still need the cloudwatch metric for other monitoring purposes, either you could try below options
Another Approach
Based on your listed other approaches, maybe it's a worth a try looking for AWS Lambda , instead of creating a module that sends data with a snippet of code, In lambda, you will still have a chunk of code as a standalone application that you will setup on how it will be triggered depending on your setup either cronjob style or some aws services with Cloudwatch Events
Upvotes: 2