I'm using Windows ADK to measure my service start time.
The service start time consists of container init time, service init time and image load time.
By using WPA to check performance data, container init time takes most of service start time - about 700 ms.
Service init time is about 10ms.
I believe service init time is what my service codes start running until it report 'Running' status to SCM.
What's container init time?
and how could I analyze the root cause and improve it?
huangjj