Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions benchpress/plugins/hooks/perf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
)

if not open_source:
from .perf_monitors.fb_power import monitor as fb_power
from .perf_monitors import fb_power

DEFAULT_OPTIONS = {
"mpstat": {
Expand All @@ -48,7 +48,7 @@
}

if not open_source:
DEFAULT_OPTIONS["fb_power"] = {"interval": 1}
DEFAULT_OPTIONS["fb_power"] = {"interval": 10, "post_process": True}

AVAIL_MONITORS = {
"mpstat": mpstat.MPStat,
Expand Down
Loading