Our business model requires to charge users based on CPU hours/usage.
Initially I was thinking about simply using StopWatch and then use elapsed time as a unit of measure.
But the problem I see with this approach is that in the day time when 5000 users are hitting the server, the elapsed time for the same piece of code will be higher than in the night time when only 50 users are hitting the server.
Other option is to charge users based on the iterations performed on the data users passed in. There are couple of issues with this approach as well.
- Some functions would not require any iteration over data.
- CPU usage for
x + yis lower than that ofx + y * z.
What is a good way to calculate CPU usage information in C#/.Net so that it remains the same for all users for the same operation regardless of the server's load?
Possibly, total amount of actual assembly level instructions? Is there a way to get that information in C#?
What other approached, recommendations can you share?
Thanks a lot for looking into this.