mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <DataTypes/DataTypeEnum.h>
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
#include <Interpreters/SystemLog.h>
|
|
#include <Common/QueryProfiler.h>
|
|
#include <Common/ProfileEvents.h>
|
|
#include <Common/TraceSender.h>
|
|
#include <Core/NamesAndTypes.h>
|
|
#include <Core/NamesAndAliases.h>
|
|
#include <Storages/ColumnsDescription.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Information from sampling profilers.
|
|
*/
|
|
struct TraceLogElement
|
|
{
|
|
using TraceDataType = DataTypeEnum8;
|
|
static const TraceDataType::Values trace_values;
|
|
|
|
time_t event_time{};
|
|
Decimal64 event_time_microseconds{};
|
|
UInt64 timestamp_ns{};
|
|
TraceType trace_type{};
|
|
UInt64 thread_id{};
|
|
String query_id{};
|
|
Array trace{};
|
|
/// Allocation size in bytes for TraceType::Memory and TraceType::MemorySample.
|
|
Int64 size{};
|
|
/// Allocation ptr for TraceType::MemorySample.
|
|
UInt64 ptr{};
|
|
/// ProfileEvent for TraceType::ProfileEvent.
|
|
ProfileEvents::Event event{ProfileEvents::end()};
|
|
/// Increment of profile event for TraceType::ProfileEvent.
|
|
ProfileEvents::Count increment{};
|
|
|
|
static std::string name() { return "TraceLog"; }
|
|
static ColumnsDescription getColumnsDescription();
|
|
static NamesAndAliases getNamesAndAliases() { return {}; }
|
|
void appendToBlock(MutableColumns & columns) const;
|
|
};
|
|
|
|
class TraceLog : public SystemLog<TraceLogElement>
|
|
{
|
|
using SystemLog<TraceLogElement>::SystemLog;
|
|
};
|
|
|
|
}
|