Re: $msec variable in proxy_set_header

2015-11-14 Thread Donatas Abraitis
Already found the problem. There was timer_resolution set to 100ms, which distorted these latencies. On Sat, Nov 14, 2015 at 12:09 PM, Donatas Abraitis < [email protected]> wrote: > Hi there! > > I want to know when $msec is used in proxy_set_header directive? I set: > > location / { >

$msec variable in proxy_set_header

2015-11-14 Thread Donatas Abraitis
Hi there! I want to know when $msec is used in proxy_set_header directive? I set: location / { proxy_set_header X-Queue-Start $msec; } But it's set with the same value as $r->start_sec + $r->start_msec. Is it true, that $msec == ("%d.%d", $r->start_sec, $r->start_msec)? Or it's really generate