用于查找按小时运行的实例数量的 API - AWS
我正在寻找可以返回一天中每小时运行的实例数的 API。
I am looking for API that can return number of instances that run during the course of the day for each of the hour.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这是我的任务,我将创建一个每小时在 cron 作业中运行的 php 脚本,并在数据库中记录 EC2 实例信息(其中运行实例数)。
然后只需使用正确的参数查询数据库即可。
If it was my task, I would create a php script that runs in cron job every hour and record EC2 instances information (Running number of instances a part of that) in the database.
Then just query the database to with the right parameters.