Lines Matching full:monitor
35 CLI::App app{"Phosphor sequencer monitor"}; in main()
39 std::vector<std::string> actionTypes = {"pgood-monitor", "runtime-monitor"}; in main()
41 "Action: pgood-monitor or runtime-monitor\n") in main()
46 "PGOOD monitor: time allowed for PGOOD to come up\n" in main()
47 "Runtime monitor: polling interval.\n") in main()
74 std::unique_ptr<DeviceMonitor> monitor; in main() local
76 if (action == "pgood-monitor") in main()
80 monitor = std::make_unique<PGOODMonitor>(std::move(device), bus, event, in main()
83 else // runtime-monitor in main()
85 // Continuously monitor this device both by polling in main()
87 monitor = std::make_unique<RuntimeMonitor>(std::move(device), bus, in main()
91 return monitor->run(); in main()