icinga2/lib/remote/malloctrimhandler.hpp
Alexander A. Klimov 3fbf5a9dbf /v1/debug/malloc_trim: call malloc_trim(3) if available
The GNU libc function malloc_trim(3) attempts to release free memory
from the main heap arena of Icinga 2 itself.
statistics of Icinga 2 itself.
2025-04-29 11:27:45 +02:00

28 lines
583 B
C++

/* Icinga 2 | (c) 2024 Icinga GmbH | GPLv2+ */
#pragma once
#include "remote/httphandler.hpp"
namespace icinga
{
class MallocTrimHandler final : public HttpHandler
{
public:
DECLARE_PTR_TYPEDEFS(MallocTrimHandler);
bool HandleRequest(
AsioTlsStream& stream,
const ApiUser::Ptr& user,
boost::beast::http::request<boost::beast::http::string_body>& request,
const Url::Ptr& url,
boost::beast::http::response<boost::beast::http::string_body>& response,
const Dictionary::Ptr& params,
boost::asio::yield_context& yc,
HttpServerConnection& server
) override;
};
}