ClickHouse/dbms/src/Core/SystemLogsQueue.h

30 lines
584 B
C++
Raw Normal View History

#pragma once
#include <Common/ConcurrentBoundedQueue.h>
#include <Core/Block.h>
namespace DB
{
class SystemLogsQueue : public ConcurrentBoundedQueue<MutableColumns>
{
public:
/// You should not push logs in the queue if their priority greater max_priority
int max_priority;
SystemLogsQueue();
static Block getSampleBlock();
static MutableColumns getSampleColumns();
/// Converts priority from Poco::Message::Priority to a string
static const char * getProrityName(int priority);
};
using SystemLogsQueuePtr = std::shared_ptr<SystemLogsQueue>;
}