You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Common/ProfileEvents.cpp
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -238,7 +238,12 @@
238
238
\
239
239
M(CannotRemoveEphemeralNode, "Number of times an error happened while trying to remove ephemeral node. This is not an issue, because our implementation of ZooKeeper library guarantee that the session will expire and the node will be removed.") \
240
240
\
241
-
M(RegexpCreated, "Compiled regular expressions. Identical regular expressions compiled just once and cached forever.") \
241
+
M(RegexpWithMultipleNeedlesCreated, "Regular expressions with multiple needles (VectorScan library) compiled.") \
242
+
M(RegexpWithMultipleNeedlesGlobalCacheHit, "Number of times we fetched compiled regular expression with multiple needles (VectorScan library) from the global cache.") \
243
+
M(RegexpWithMultipleNeedlesGlobalCacheMiss, "Number of times we failed to fetch compiled regular expression with multiple needles (VectorScan library) from the global cache.") \
244
+
M(RegexpLocalCacheHit, "Number of times we fetched compiled regular expression from a local cache.") \
245
+
M(RegexpLocalCacheMiss, "Number of times we failed to fetch compiled regular expression from a local cache.") \
246
+
\
242
247
M(ContextLock, "Number of times the lock of Context was acquired or tried to acquire. This is global lock.") \
243
248
M(ContextLockWaitMicroseconds, "Context lock wait time in microseconds") \
0 commit comments