diff --git a/include/server/service_handler.hpp b/include/server/service_handler.hpp index 7d2c8ae70..878c1fcda 100644 --- a/include/server/service_handler.hpp +++ b/include/server/service_handler.hpp @@ -34,7 +34,7 @@ class ServiceHandlerInterface virtual ~ServiceHandlerInterface() {} virtual engine::Status RunQuery(api::ParsedURL parsed_url, osrm::engine::api::ResultT &result) = 0; - virtual const engine::EngineInfo & GetEngineInfo() const = 0; + virtual const engine::EngineInfo &GetEngineInfo() const = 0; virtual const HandlersCounter GetUsage() const = 0; virtual std::uint32_t GetLoad() const = 0; }; diff --git a/src/monitoring/monitoring_request_handler.cpp b/src/monitoring/monitoring_request_handler.cpp index 603c672ad..a1a0a3531 100644 --- a/src/monitoring/monitoring_request_handler.cpp +++ b/src/monitoring/monitoring_request_handler.cpp @@ -28,8 +28,8 @@ void MonitoringRequestHandler::HandleRequest(const http::request &, http::reply auto counters = service_handler->GetUsage(); for (auto counter : counters) { - out_stream << "osrm_http_requests_count{plugin=\"" << counter.first << "\"} " << counter.second - << "\n"; + out_stream << "osrm_http_requests_count{plugin=\"" << counter.first << "\"} " + << counter.second << "\n"; } out_stream << "osrm_workers_busy " << service_handler->GetLoad() << "\n";