ClickHouse/programs/server/ReplicasStatusHandler.h

27 lines
504 B
C++
Raw Normal View History

2016-01-17 13:34:36 +00:00
#pragma once
#include "IServer.h"
2016-01-17 13:34:36 +00:00
#include <Poco/Net/HTTPRequestHandler.h>
namespace DB
{
class Context;
2017-03-09 00:56:38 +00:00
/// Replies "Ok.\n" if all replicas on this server don't lag too much. Otherwise output lag information.
2016-01-17 13:34:36 +00:00
class ReplicasStatusHandler : public Poco::Net::HTTPRequestHandler
{
private:
Context & context;
2016-01-17 13:34:36 +00:00
public:
2020-04-04 08:57:16 +00:00
explicit ReplicasStatusHandler(IServer & server_);
2016-01-17 13:34:36 +00:00
void handleRequest(Poco::Net::HTTPServerRequest & request, Poco::Net::HTTPServerResponse & response) override;
2016-01-17 13:34:36 +00:00
};
}