Skip to content
Snippets Groups Projects
Commit b01aaadd authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

Split callback metric lambda functions down onto their own lines to keep line lengths under 90

parent 1071c7d9
No related branches found
No related tags found
Loading
......@@ -133,29 +133,36 @@ def register_process_collector():
if HAVE_PROC_SELF_STAT:
process_metrics.register_callback(
"cpu_user_seconds_total", lambda: float(stats["utime"]) / TICKS_PER_SEC
"cpu_user_seconds_total",
lambda: float(stats["utime"]) / TICKS_PER_SEC
)
process_metrics.register_callback(
"cpu_system_seconds_total", lambda: float(stats["stime"]) / TICKS_PER_SEC
"cpu_system_seconds_total",
lambda: float(stats["stime"]) / TICKS_PER_SEC
)
process_metrics.register_callback(
"cpu_seconds_total", lambda: (float(stats["utime"] + stats["stime"])) / TICKS_PER_SEC
"cpu_seconds_total",
lambda: (float(stats["utime"] + stats["stime"])) / TICKS_PER_SEC
)
process_metrics.register_callback(
"virtual_memory_bytes", lambda: int(stats["vsize"])
"virtual_memory_bytes",
lambda: int(stats["vsize"])
)
process_metrics.register_callback(
"resident_memory_bytes", lambda: int(stats["rss"]) * BYTES_PER_PAGE
"resident_memory_bytes",
lambda: int(stats["rss"]) * BYTES_PER_PAGE
)
process_metrics.register_callback(
"start_time_seconds", lambda: boot_time + int(stats["starttime"]) / TICKS_PER_SEC
"start_time_seconds",
lambda: boot_time + int(stats["starttime"]) / TICKS_PER_SEC
)
if HAVE_PROC_SELF_FD:
process_metrics.register_callback(
"open_fds", lambda: sum(fd_counts.values())
"open_fds",
lambda: sum(fd_counts.values())
)
if HAVE_PROC_SELF_LIMITS:
......@@ -169,5 +176,6 @@ def register_process_collector():
return None
process_metrics.register_callback(
"max_fds", lambda: _get_max_fds()
"max_fds",
lambda: _get_max_fds()
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment