Skip to content

Commit

Permalink
remove execution time introspection
Browse files Browse the repository at this point in the history
  • Loading branch information
saikishor committed Nov 28, 2024
1 parent b61b9f6 commit 0e027a7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions controller_interface/src/controller_interface_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,6 @@ const rclcpp_lifecycle::State & ControllerInterfaceBase::configure()
&ControllerInterfaceBase::update, this, std::placeholders::_1, std::placeholders::_2),
thread_priority);
async_handler_->start_thread();
REGISTER_DEFAULT_INTROSPECTION(
"execution_time",
std::function<int()>([this]() { return async_handler_->get_last_execution_time().count(); }));
}
REGISTER_DEFAULT_INTROSPECTION("total_triggers", &trigger_stats_.total_triggers);
REGISTER_DEFAULT_INTROSPECTION("failed_triggers", &trigger_stats_.failed_triggers);
Expand Down

0 comments on commit 0e027a7

Please sign in to comment.