D6527: dirstate: add counter events for work queue depth

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Mon Jun 17 18:43:10 EDT 2019


durin42 updated this revision to Diff 15563.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6527?vs=15479&id=15563

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D6527/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D6527

AFFECTED FILES
  mercurial/dirstate.py

CHANGE DETAILS

diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -13,6 +13,8 @@
 import os
 import stat
 
+from hgdemandimport import tracing
+
 from .i18n import _
 from .node import nullid
 from . import (
@@ -908,6 +910,7 @@
         def traverse(work, alreadynormed):
             wadd = work.append
             while work:
+                tracing.counter('dirstate work', len(work))
                 nd = work.pop()
                 visitentries = match.visitchildrenset(nd)
                 if not visitentries:



To: durin42, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list