Serverless Pricing
Is the delay time also included in the charges?
Is there a way to know the total time the worker was operating, excluding the delay time and execution time? Because, I want to charge my customers for the total time they use my service.
Solution:Jump to solution
There isn't really an accurate way of determining cold start time + execution time automatically unfortunately. You have to look at the metrics for your endpoint and try to determine a base line.
3 Replies
You are charged for the cold-start portion of delay time, not for the time that your request is in the queue before its picked up by a worker.
Solution
There isn't really an accurate way of determining cold start time + execution time automatically unfortunately. You have to look at the metrics for your endpoint and try to determine a base line.
Ok, Thank you