2014-01-03 08:20:13 +00:00
|
|
|
#include <DB/Common/ProfileEvents.h>
|
|
|
|
#include <DB/Columns/ColumnString.h>
|
|
|
|
#include <DB/DataTypes/DataTypeString.h>
|
|
|
|
#include <DB/DataTypes/DataTypesNumberFixed.h>
|
|
|
|
#include <DB/DataStreams/OneBlockInputStream.h>
|
2015-09-24 03:50:09 +00:00
|
|
|
#include <DB/Storages/System/StorageSystemEvents.h>
|
2014-01-03 08:20:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
StorageSystemEvents::StorageSystemEvents(const std::string & name_)
|
2015-03-26 23:32:16 +00:00
|
|
|
: name(name_),
|
|
|
|
columns
|
|
|
|
{
|
2016-05-28 07:48:40 +00:00
|
|
|
{"event", std::make_shared<DataTypeString>()},
|
|
|
|
{"value", std::make_shared<DataTypeUInt64>()},
|
2015-03-26 23:32:16 +00:00
|
|
|
}
|
2014-01-03 08:20:13 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
StoragePtr StorageSystemEvents::create(const std::string & name_)
|
|
|
|
{
|
2016-08-26 21:25:05 +00:00
|
|
|
return make_shared(name_);
|
2014-01-03 08:20:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BlockInputStreams StorageSystemEvents::read(
|
2014-12-17 11:53:17 +00:00
|
|
|
const Names & column_names,
|
|
|
|
ASTPtr query,
|
|
|
|
const Context & context,
|
|
|
|
const Settings & settings,
|
|
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
|
|
const size_t max_block_size,
|
|
|
|
const unsigned threads)
|
2014-01-03 08:20:13 +00:00
|
|
|
{
|
|
|
|
check(column_names);
|
|
|
|
processed_stage = QueryProcessingStage::FetchColumns;
|
|
|
|
|
|
|
|
Block block;
|
|
|
|
|
2015-07-17 01:27:35 +00:00
|
|
|
ColumnWithTypeAndName col_event;
|
2014-01-03 08:20:13 +00:00
|
|
|
col_event.name = "event";
|
2016-05-28 07:48:40 +00:00
|
|
|
col_event.type = std::make_shared<DataTypeString>();
|
2016-05-28 05:31:36 +00:00
|
|
|
col_event.column = std::make_shared<ColumnString>();
|
2014-01-03 08:20:13 +00:00
|
|
|
block.insert(col_event);
|
|
|
|
|
2015-07-17 01:27:35 +00:00
|
|
|
ColumnWithTypeAndName col_value;
|
2014-01-03 08:20:13 +00:00
|
|
|
col_value.name = "value";
|
2016-05-28 07:48:40 +00:00
|
|
|
col_value.type = std::make_shared<DataTypeUInt64>();
|
2016-05-28 05:31:36 +00:00
|
|
|
col_value.column = std::make_shared<ColumnUInt64>();
|
2014-01-03 08:20:13 +00:00
|
|
|
block.insert(col_value);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < ProfileEvents::END; ++i)
|
|
|
|
{
|
|
|
|
UInt64 value = ProfileEvents::counters[i];
|
|
|
|
|
|
|
|
if (0 != value)
|
|
|
|
{
|
|
|
|
col_event.column->insert(String(ProfileEvents::getDescription(ProfileEvents::Event(i))));
|
|
|
|
col_value.column->insert(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-28 12:22:22 +00:00
|
|
|
return BlockInputStreams(1, std::make_shared<OneBlockInputStream>(block));
|
2014-01-03 08:20:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|