2019-07-22 13:54:08 +00:00
|
|
|
#pragma once
|
|
|
|
#include <Interpreters/SystemLog.h>
|
|
|
|
|
2019-07-22 15:09:33 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2019-07-22 13:54:08 +00:00
|
|
|
|
|
|
|
using Poco::Message;
|
|
|
|
|
|
|
|
struct TextLogElement
|
|
|
|
{
|
|
|
|
time_t event_time{};
|
2020-11-03 13:59:17 +00:00
|
|
|
Decimal64 event_time_microseconds{};
|
2019-07-22 13:54:08 +00:00
|
|
|
UInt32 microseconds;
|
|
|
|
|
|
|
|
String thread_name;
|
2020-02-02 20:01:13 +00:00
|
|
|
UInt64 thread_id;
|
2019-07-22 13:54:08 +00:00
|
|
|
|
2019-07-22 15:09:33 +00:00
|
|
|
Message::Priority level = Message::PRIO_TRACE;
|
2019-07-22 13:54:08 +00:00
|
|
|
|
|
|
|
String query_id;
|
|
|
|
String logger_name;
|
|
|
|
String message;
|
|
|
|
|
|
|
|
String source_file;
|
|
|
|
UInt64 source_line;
|
|
|
|
|
|
|
|
static std::string name() { return "TextLog"; }
|
|
|
|
static Block createBlock();
|
2020-05-21 20:15:18 +00:00
|
|
|
void appendToBlock(MutableColumns & columns) const;
|
2019-07-22 13:54:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class TextLog : public SystemLog<TextLogElement>
|
|
|
|
{
|
2020-01-31 15:45:58 +00:00
|
|
|
public:
|
|
|
|
TextLog(
|
|
|
|
Context & context_,
|
|
|
|
const String & database_name_,
|
|
|
|
const String & table_name_,
|
|
|
|
const String & storage_def_,
|
|
|
|
size_t flush_interval_milliseconds_);
|
2019-07-22 13:54:08 +00:00
|
|
|
};
|
|
|
|
|
2019-07-22 15:09:33 +00:00
|
|
|
}
|