D6524: catapipe: add support for COUNTER events
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Fri Jun 14 23:16:05 UTC 2019
Closed by commit rHGff562d711919: catapipe: add support for COUNTER events (authored by durin42).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D6524?vs=15476&id=15524
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D6524/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D6524
AFFECTED FILES
contrib/catapipe.py
CHANGE DETAILS
diff --git a/contrib/catapipe.py b/contrib/catapipe.py
--- a/contrib/catapipe.py
+++ b/contrib/catapipe.py
@@ -44,6 +44,7 @@
_TYPEMAP = {
'START': 'B',
'END': 'E',
+ 'COUNTER': 'C',
}
_threadmap = {}
@@ -78,6 +79,11 @@
verb, session, label = ev.split(' ', 2)
if session not in _threadmap:
_threadmap[session] = len(_threadmap)
+ if verb == 'COUNTER':
+ amount, label = label.split(' ', 1)
+ payload_args = {'value': int(amount)}
+ else:
+ payload_args = {}
pid = _threadmap[session]
ts_micros = (now - start) * 1000000
out.write(json.dumps(
@@ -88,7 +94,7 @@
"ts": ts_micros,
"pid": pid,
"tid": 1,
- "args": {}
+ "args": payload_args,
}))
out.write(',\n')
finally:
To: durin42, #hg-reviewers, pulkit
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list