Reputation: 875
Is is possible to retreive memory/network/cpu stats or graphs from an api for a IBM Bluemix Container?
I know it is possible to show graphics in the IBM Bluemix console. But I want to show the graphics on my own webpage, which runs outside Bluemix.
Upvotes: 0
Views: 74
Reputation: 360
Monitoring and logging of Bluemix containers is documented at https://www.ng.bluemix.net/docs/containers/container_ml_ov.html
If you do cf ic inspect <container>
you will see JSON describing the memory and CPUs available to your containers.
Upvotes: 2