| 677 | } |
| 678 | |
| 679 | void ExecEnv::InitSystemStateInfo() { |
| 680 | system_state_info_.reset(new SystemStateInfo()); |
| 681 | PeriodicCounterUpdater::RegisterUpdateFunction([s = system_state_info_.get()]() { |
| 682 | s->CaptureSystemStateSnapshot(); |
| 683 | }, true); |
| 684 | } |
| 685 | |
| 686 | Status ExecEnv::GetKuduClient(const vector<string>& master_addresses, |
| 687 | kudu::client::sp::shared_ptr<kudu::client::KuduClient>* client) { |
nothing calls this directly
no test coverage detected