tombolaltd / ecs-monitor

A simple monitoring solution for Amazon's Elastic Container Service (ECS)
MIT License
60 stars 17 forks source link

Address the AWS '10 services per cluster limitation' #18

Closed marc-costello closed 7 years ago

marc-costello commented 7 years ago

The service streams currently have a limitation, it's going to be crippling very quickly. Essentially the AWS describeServices request has a 10 service per cluster limit. So we will have to split the service arns into chunks of 10; making multiple describe calls for each cluster.

serviceStreams.js:52 and serviceStreams.js:70 are 2 places effected by this.

marc-costello commented 7 years ago

2be01bb