2024-06-17 15:02:50 +00:00
|
|
|
#include <DataTypes/DataTypeDate.h>
|
|
|
|
#include <DataTypes/DataTypeDateTime.h>
|
|
|
|
#include <DataTypes/DataTypeDateTime64.h>
|
|
|
|
#include <DataTypes/DataTypeLowCardinality.h>
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <Interpreters/ErrorLog.h>
|
|
|
|
#include <base/getFQDNOrHostName.h>
|
|
|
|
#include <Common/DateLUTImpl.h>
|
|
|
|
#include <Common/ThreadPool.h>
|
|
|
|
#include <Common/ErrorCodes.h>
|
2024-06-20 14:28:33 +00:00
|
|
|
#include <Parsers/ExpressionElementParsers.h>
|
|
|
|
#include <Parsers/parseQuery.h>
|
2024-06-17 15:02:50 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
ColumnsDescription ErrorLogElement::getColumnsDescription()
|
|
|
|
{
|
2024-06-20 14:28:33 +00:00
|
|
|
ParserCodec codec_parser;
|
2024-06-17 15:02:50 +00:00
|
|
|
return ColumnsDescription {
|
2024-06-20 14:28:33 +00:00
|
|
|
{
|
|
|
|
"hostname",
|
|
|
|
std::make_shared<DataTypeLowCardinality>(std::make_shared<DataTypeString>()),
|
|
|
|
parseQuery(codec_parser, "(ZSTD(1))", 0, DBMS_DEFAULT_MAX_PARSER_DEPTH, DBMS_DEFAULT_MAX_PARSER_BACKTRACKS),
|
|
|
|
"Hostname of the server executing the query."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"event_date",
|
|
|
|
std::make_shared<DataTypeDate>(),
|
|
|
|
parseQuery(codec_parser, "(Delta(2), ZSTD(1))", 0, DBMS_DEFAULT_MAX_PARSER_DEPTH, DBMS_DEFAULT_MAX_PARSER_BACKTRACKS),
|
|
|
|
"Event date."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"event_time",
|
|
|
|
std::make_shared<DataTypeDateTime>(),
|
|
|
|
parseQuery(codec_parser, "(Delta(4), ZSTD(1))", 0, DBMS_DEFAULT_MAX_PARSER_DEPTH, DBMS_DEFAULT_MAX_PARSER_BACKTRACKS),
|
|
|
|
"Event time."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"code",
|
|
|
|
std::make_shared<DataTypeInt32>(),
|
|
|
|
parseQuery(codec_parser, "(ZSTD(1))", 0, DBMS_DEFAULT_MAX_PARSER_DEPTH, DBMS_DEFAULT_MAX_PARSER_BACKTRACKS),
|
|
|
|
"Error code."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"error",
|
|
|
|
std::make_shared<DataTypeLowCardinality>(std::make_shared<DataTypeString>()),
|
|
|
|
parseQuery(codec_parser, "(ZSTD(1))", 0, DBMS_DEFAULT_MAX_PARSER_DEPTH, DBMS_DEFAULT_MAX_PARSER_BACKTRACKS),
|
|
|
|
"Error name."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"value",
|
|
|
|
std::make_shared<DataTypeUInt64>(),
|
|
|
|
parseQuery(codec_parser, "(ZSTD(3))", 0, DBMS_DEFAULT_MAX_PARSER_DEPTH, DBMS_DEFAULT_MAX_PARSER_BACKTRACKS),
|
|
|
|
"Number of errors happened in time interval."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"remote",
|
|
|
|
std::make_shared<DataTypeUInt8>(),
|
|
|
|
parseQuery(codec_parser, "(ZSTD(1))", 0, DBMS_DEFAULT_MAX_PARSER_DEPTH, DBMS_DEFAULT_MAX_PARSER_BACKTRACKS),
|
|
|
|
"Remote exception (i.e. received during one of the distributed queries)."
|
|
|
|
}
|
2024-06-17 15:02:50 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void ErrorLogElement::appendToBlock(MutableColumns & columns) const
|
|
|
|
{
|
|
|
|
size_t column_idx = 0;
|
|
|
|
|
|
|
|
columns[column_idx++]->insert(getFQDNOrHostName());
|
|
|
|
columns[column_idx++]->insert(DateLUT::instance().toDayNum(event_time).toUnderType());
|
|
|
|
columns[column_idx++]->insert(event_time);
|
|
|
|
columns[column_idx++]->insert(code);
|
|
|
|
columns[column_idx++]->insert(ErrorCodes::getName(code));
|
|
|
|
columns[column_idx++]->insert(value);
|
|
|
|
columns[column_idx++]->insert(remote);
|
|
|
|
}
|
|
|
|
|
2024-06-18 14:29:47 +00:00
|
|
|
struct ValuePair
|
|
|
|
{
|
|
|
|
UInt64 local = 0;
|
|
|
|
UInt64 remote = 0;
|
|
|
|
};
|
|
|
|
|
2024-06-20 15:40:50 +00:00
|
|
|
void ErrorLog::stepFunction(TimePoint current_time)
|
2024-06-17 15:02:50 +00:00
|
|
|
{
|
2024-06-20 15:40:50 +00:00
|
|
|
/// Static lazy initialization to avoid polluting the header with implementation details
|
|
|
|
static std::vector<ValuePair> previous_values(ErrorCodes::end());
|
|
|
|
|
|
|
|
auto event_time = std::chrono::system_clock::to_time_t(current_time);
|
2024-06-17 15:02:50 +00:00
|
|
|
|
2024-06-20 15:40:50 +00:00
|
|
|
for (ErrorCodes::ErrorCode code = 0, end = ErrorCodes::end(); code < end; ++code)
|
2024-06-17 15:02:50 +00:00
|
|
|
{
|
2024-06-20 15:40:50 +00:00
|
|
|
const auto & error = ErrorCodes::values[code].get();
|
|
|
|
if (error.local.count != previous_values.at(code).local)
|
2024-06-17 15:02:50 +00:00
|
|
|
{
|
2024-06-20 15:40:50 +00:00
|
|
|
ErrorLogElement local_elem {
|
|
|
|
.event_time=event_time,
|
|
|
|
.code=code,
|
|
|
|
.value=error.local.count - previous_values.at(code).local,
|
|
|
|
.remote=false
|
|
|
|
};
|
|
|
|
this->add(std::move(local_elem));
|
|
|
|
previous_values[code].local = error.local.count;
|
2024-06-17 15:02:50 +00:00
|
|
|
}
|
2024-06-20 15:40:50 +00:00
|
|
|
if (error.remote.count != previous_values.at(code).remote)
|
2024-06-17 15:02:50 +00:00
|
|
|
{
|
2024-06-20 15:40:50 +00:00
|
|
|
ErrorLogElement remote_elem {
|
|
|
|
.event_time=event_time,
|
|
|
|
.code=code,
|
|
|
|
.value=error.remote.count - previous_values.at(code).remote,
|
|
|
|
.remote=true
|
|
|
|
};
|
|
|
|
this->add(std::move(remote_elem));
|
|
|
|
previous_values[code].remote = error.remote.count;
|
2024-06-17 15:02:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|