Home
last modified time | relevance | path

Searched refs:latency_monitor_threshold (Results 1 – 5 of 5) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dlatency.h71 #define latencyStartMonitor(var) if (server.latency_monitor_threshold) { \
79 #define latencyEndMonitor(var) if (server.latency_monitor_threshold) { \
85 if (server.latency_monitor_threshold && \
86 (var) >= server.latency_monitor_threshold) \
H A Dlatency.c240 server.latency_monitor_threshold == 0) in createLatencyReport()
301 server.latency_monitor_threshold) in createLatencyReport()
404 …og slow commands execution for you.\n", (unsigned long long)server.latency_monitor_threshold*1000); in createLatencyReport()
408 … SET slowlog-log-slower-than %llu'.\n", (unsigned long long)server.latency_monitor_threshold*1000); in createLatencyReport()
H A Dconfig.c706 server.latency_monitor_threshold = strtoll(argv[1],NULL,10); in loadServerConfigFromString()
707 if (server.latency_monitor_threshold < 0) { in loadServerConfigFromString()
1188 "latency-monitor-threshold",server.latency_monitor_threshold,0,LLONG_MAX){
1386 server.latency_monitor_threshold);
2193 …rewriteConfigNumericalOption(state,"latency-monitor-threshold",server.latency_monitor_threshold,CO…
H A Dserver.h1274 long long latency_monitor_threshold; member
H A Dserver.c1720 server.latency_monitor_threshold = CONFIG_DEFAULT_LATENCY_MONITOR_THRESHOLD; in initServerConfig()