Hello, I'm trying to monitor y trafficserver and especially average transaction response time.
As a start, I had a look at tstop source code, which use proxy.process.http.total_transactions_time and proxy.process.http.incoming_requests from stats_over_http plugin. It builds client_req_time, dividing total_transactions_time by incoming_requests which give an average time per request. So far, so good. But I also see in tools/tstop/stats.h is divided by 10.000.000 to get milliseconds (line 286 & 292). I could understand 1.000.000 to convert nanoseconds into millisecond; I also could understand 1.000 to convert microseconds into millisecond or nanoseconds into microsecond. But here, why using 10.000.000 ? Since my monitoring will mimic tstop, I want to make sure I have the right units :) Regards, Jean-Baptiste
