ClickHouse/src/Interpreters/TraceLog.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.4 KiB
C++
Raw Normal View History

2019-02-03 21:30:45 +00:00
#pragma once
#include <DataTypes/DataTypeEnum.h>
2020-01-16 12:37:29 +00:00
#include <DataTypes/DataTypesNumber.h>
2019-02-03 21:30:45 +00:00
#include <Interpreters/SystemLog.h>
2020-01-16 12:37:29 +00:00
#include <Common/QueryProfiler.h>
#include <Common/ProfileEvents.h>
#include <Common/TraceSender.h>
#include <Core/NamesAndTypes.h>
#include <Core/NamesAndAliases.h>
#include <Storages/ColumnsDescription.h>
2020-07-09 04:15:45 +00:00
2019-02-03 21:30:45 +00:00
namespace DB
{
2020-07-09 04:15:45 +00:00
/** Information from sampling profilers.
*/
2019-02-03 21:30:45 +00:00
struct TraceLogElement
{
using TraceDataType = DataTypeEnum8;
static const TraceDataType::Values trace_values;
2019-02-03 21:30:45 +00:00
time_t event_time{};
2020-11-03 15:19:24 +00:00
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{};
2020-01-16 12:37:29 +00:00
2019-02-03 21:30:45 +00:00
static std::string name() { return "TraceLog"; }
static ColumnsDescription getColumnsDescription();
static NamesAndAliases getNamesAndAliases() { return {}; }
void appendToBlock(MutableColumns & columns) const;
2019-02-03 21:30:45 +00:00
};
class TraceLog : public SystemLog<TraceLogElement>
{
using SystemLog<TraceLogElement>::SystemLog;
};
}