Whatever the question is, pushgateway is not the answer. It only has one use case (*).
Probably what you want is cloudwatch_exporter <https://github.com/prometheus/cloudwatch_exporter>, and you scrape it directly from prometheus. If cloudwatch_exporter doesn't give what you need, and you end up writing a script which talks to cloudwatch and produces your own custom metrics, then write them to a text file for the node_exporter textfile collector. If your network does not allow prometheus to talk directly to cloudwatch_exporter (or node_exporter), then you can look at PushProx <https://github.com/prometheus-community/PushProx> - but really it's much better if you can fix your networking so prometheus can talk directly to the exporter. If necessary, just run another prometheus instance directly alongside the exporter. ----- (*) that is for one-shot scripts which want to store their result somewhere before terminating, so it can be scraped later. -- You received this message because you are subscribed to the Google Groups "Prometheus Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-users/7b72c7cd-ed7b-4d49-a847-7d10327743e8o%40googlegroups.com.

