Reputation: 131
I need to launch a container product and I have query regarding the aws metering services. I was following this doc for container metering services https://docs.aws.amazon.com/marketplace/latest/userguide/entitlement-and-metering-for-paid-products.html. Coming to my queries which are as below.
1) Do I need to add any code to my container to call the APIs for metering?
2) What if I don't want to add this API code in my main container can I create a separate container just for metering API calls?
3) How the metering will work? any simple explanation will be appreciated.
Upvotes: 1
Views: 324
Reputation: 882
To measure the product usage so that you can charge customers, you need to write the code that invokes/calls metering APIs.
Now, where to integrate that code? You can either add it to your primary container (recommended as it is simple) OR you can create a separate container for it (use a sidecar pattern).
How does metering work? There are two APIs, from which you need to use one API based on your requirement.
Upvotes: 1