mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
4af8e76bdd
When a Field is inserted into a column, its type should be the same as the column data type to avoid implicit reinterpret_cast. Change a couple of usages where these types were different.
83 lines
1.8 KiB
C++
83 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <Interpreters/SystemLog.h>
|
|
|
|
|
|
namespace ProfileEvents
|
|
{
|
|
class Counters;
|
|
}
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/** Allows to log information about queries execution:
|
|
* - info about start of query execution;
|
|
* - performance metrics (are set at the end of query execution);
|
|
* - info about errors of query execution.
|
|
*/
|
|
|
|
/// A struct which will be inserted as row into query_log table
|
|
struct QueryLogElement
|
|
{
|
|
enum Type : UInt8 // Make it signed for compatibility with DataTypeEnum8
|
|
{
|
|
QUERY_START = 1,
|
|
QUERY_FINISH = 2,
|
|
EXCEPTION_BEFORE_START = 3,
|
|
EXCEPTION_WHILE_PROCESSING = 4,
|
|
};
|
|
|
|
Type type = QUERY_START;
|
|
|
|
/// Depending on the type of query and type of stage, not all the fields may be filled.
|
|
|
|
time_t event_time{};
|
|
time_t query_start_time{};
|
|
UInt64 query_duration_ms{};
|
|
|
|
/// The data fetched from DB to execute the query
|
|
UInt64 read_rows{};
|
|
UInt64 read_bytes{};
|
|
|
|
/// The data written to DB
|
|
UInt64 written_rows{};
|
|
UInt64 written_bytes{};
|
|
|
|
/// The data sent to the client
|
|
UInt64 result_rows{};
|
|
UInt64 result_bytes{};
|
|
|
|
UInt64 memory_usage{};
|
|
|
|
String query;
|
|
|
|
String exception;
|
|
String stack_trace;
|
|
|
|
ClientInfo client_info;
|
|
|
|
std::vector<UInt32> thread_numbers;
|
|
std::vector<UInt32> os_thread_ids;
|
|
std::shared_ptr<ProfileEvents::Counters> profile_counters;
|
|
std::shared_ptr<Settings> query_settings;
|
|
|
|
static std::string name() { return "QueryLog"; }
|
|
|
|
static Block createBlock();
|
|
void appendToBlock(Block & block) const;
|
|
|
|
static void appendClientInfo(const ClientInfo & client_info, MutableColumns & columns, size_t & i);
|
|
};
|
|
|
|
|
|
/// Instead of typedef - to allow forward declaration.
|
|
class QueryLog : public SystemLog<QueryLogElement>
|
|
{
|
|
using SystemLog<QueryLogElement>::SystemLog;
|
|
};
|
|
|
|
}
|