We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When run on the following log line, I would like to see the pattern { blah.abc.uID: 1 } included:
{ blah.abc.uID: 1 }
2019-11-13T11:33:39.626+0000 I WRITE [conn23773] remove MyDb.MyColl command: { q: { blah.abc.uID: "H062634" }, limit: 0 } planSummary: COLLSCAN keysExamined:0 docsExamined:139649 ndeleted:1 keysDeleted:3 numYields:1091 locks:{ Global: { acquireCount: { r: 1093, w: 1093 } }, Database: { acquireCount: { w: 1093 } }, Collection: { acquireCount: { w: 1092 } }, oplog: { acquireCount: { w: 1 } } } 308ms
Currently the DB, collection and operation is detected correctly, but not the pattern:
QUERIES namespace operation pattern count min (ms) max (ms) mean (ms) 95%-ile (ms) sum (ms) MyDb.MyColl remove None 2 281 308 294.5 306.65 589
The text was updated successfully, but these errors were encountered:
Interesting logging quirk .. remove commands in 3.6+ appear to log q: instead of query:, but older logs definitely used query:.
remove
q:
query:
Sorry, something went wrong.
8d3e48c
stennie
No branches or pull requests
Expected behavior
When run on the following log line, I would like to see the pattern
{ blah.abc.uID: 1 }
included:2019-11-13T11:33:39.626+0000 I WRITE [conn23773] remove MyDb.MyColl command: { q: { blah.abc.uID: "H062634" }, limit: 0 } planSummary: COLLSCAN keysExamined:0 docsExamined:139649 ndeleted:1 keysDeleted:3 numYields:1091 locks:{ Global: { acquireCount: { r: 1093, w: 1093 } }, Database: { acquireCount: { w: 1093 } }, Collection: { acquireCount: { w: 1092 } }, oplog: { acquireCount: { w: 1 } } } 308ms
Actual/current behavior
Currently the DB, collection and operation is detected correctly, but not the pattern:
Environment
The text was updated successfully, but these errors were encountered: