<p>J’essaie d’analyser certains journaux IIS7 (format W3C) et je m’intéresse au champ <code>time-taken</code> et à son unité.</p>
<p>Selon <a href="http://technet.microsoft.com/en-us/library/cc786596(v=ws.10).aspx" rel="noopener nofollow ugc">Microsoft</a>, l’unité est la milliseconde.</p>
<pre><code class="lang-auto">The length of time that the action took, in milliseconds.
</code></pre>
<p>Selon la <a href="http://www.w3.org/TR/WD-logfile.html" rel="noopener nofollow ugc">documentation w3c</a>, c’est en secondes</p>
<pre><code class="lang-auto">Time taken for transaction to complete in seconds, field has type <fixed>
</code></pre>
<p>Quelle est la bonne réponse ?</p>