ClickHouse/libs/libloggers/loggers/OwnSplitChannel.cpp

95 lines
2.5 KiB
C++
Raw Normal View History

#include "OwnSplitChannel.h"
#include <iostream>
#include <Core/Block.h>
#include <Interpreters/InternalTextLogsQueue.h>
2019-07-22 13:54:08 +00:00
#include <Interpreters/TextLog.h>
#include <sys/time.h>
#include <Poco/Message.h>
#include <Common/CurrentThread.h>
#include <Common/DNSResolver.h>
#include <common/getThreadNumber.h>
namespace DB
{
void OwnSplitChannel::log(const Poco::Message & msg)
{
auto logs_queue = CurrentThread::getInternalTextLogsQueue();
if (channels.empty() && (logs_queue == nullptr || msg.getPriority() > logs_queue->max_priority))
return;
ExtendedLogMessage msg_ext = ExtendedLogMessage::getFrom(msg);
/// Log data to child channels
for (auto & channel : channels)
{
if (channel.second)
channel.second->logExtended(msg_ext); // extended child
else
channel.first->log(msg); // ordinary child
}
/// Log to "TCP queue" if message is not too noisy
if (logs_queue && msg.getPriority() <= logs_queue->max_priority)
{
MutableColumns columns = InternalTextLogsQueue::getSampleColumns();
size_t i = 0;
columns[i++]->insert(msg_ext.time_seconds);
columns[i++]->insert(msg_ext.time_microseconds);
columns[i++]->insert(DNSResolver::instance().getHostName());
columns[i++]->insert(msg_ext.query_id);
columns[i++]->insert(msg_ext.thread_number);
columns[i++]->insert(Int64(msg.getPriority()));
columns[i++]->insert(msg.getSource());
columns[i++]->insert(msg.getText());
logs_queue->emplace(std::move(columns));
}
2019-07-22 13:54:08 +00:00
2019-07-30 14:04:18 +00:00
/// Also log to system.text_log table
TextLogElement elem;
2019-07-22 13:54:08 +00:00
2019-07-30 14:04:18 +00:00
elem.event_time = msg_ext.time_seconds;
elem.microseconds = msg_ext.time_microseconds;
2019-07-22 13:54:08 +00:00
2019-07-30 14:04:18 +00:00
elem.thread_name = getThreadName();
elem.thread_number = msg_ext.thread_number;
try
{
elem.os_thread_id = CurrentThread::get().os_thread_id;
} catch (...)
{
elem.os_thread_id = 0;
}
2019-07-22 13:54:08 +00:00
2019-07-30 14:04:18 +00:00
elem.query_id = msg_ext.query_id;
2019-07-22 15:09:33 +00:00
2019-07-30 14:04:18 +00:00
elem.message = msg.getText();
elem.logger_name = msg.getSource();
elem.level = msg.getPriority();
2019-07-22 13:54:08 +00:00
2019-07-30 14:04:18 +00:00
if (msg.getSourceFile() != nullptr)
elem.source_file = msg.getSourceFile();
elem.source_line = msg.getSourceLine();
if (auto log = text_log.lock())
log->add(elem);
}
void OwnSplitChannel::addChannel(Poco::AutoPtr<Poco::Channel> channel)
{
channels.emplace_back(std::move(channel), dynamic_cast<ExtendedLogChannel *>(channel.get()));
}
void OwnSplitChannel::addTextLog(std::shared_ptr<DB::TextLog> log)
2019-07-30 14:04:18 +00:00
{
text_log = log;
}
}