icinga2/lib/remote/mallocinfohandler.hpp
2026-01-22 12:41:21 +01:00

23 lines
391 B
C++

/* Icinga 2 | (c) 2024 Icinga GmbH | GPLv2+ */
#pragma once
#include "remote/httphandler.hpp"
namespace icinga
{
class MallocInfoHandler final : public HttpHandler
{
public:
DECLARE_PTR_TYPEDEFS(MallocInfoHandler);
bool HandleRequest(
const WaitGroup::Ptr& waitGroup,
const HttpApiRequest& request,
HttpApiResponse& response,
boost::asio::yield_context& yc
) override;
};
}