D6527: dirstate: add counter events for work queue depth

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Mon Sep 23 19:26:06 UTC 2019


durin42 updated this revision to Diff 16595.

REPOSITORY
  rHG Mercurial

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

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
@@ -15,6 +15,9 @@
 
 from .i18n import _
 from .node import nullid
+
+from hgdemandimport import tracing
+
 from . import (
     encoding,
     error,
@@ -921,6 +924,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