ClickHouse/src/Storages/System/StorageSystemStackTrace.h

44 lines
1.0 KiB
C++
Raw Normal View History

#pragma once
2019-12-23 18:56:57 +00:00
#ifdef OS_LINUX /// Because of 'sigqueue' functions and RT signals.
2019-12-22 20:17:16 +00:00
#include <mutex>
2021-06-15 19:55:21 +00:00
#include <common/shared_ptr_helper.h>
#include <Storages/System/IStorageSystemOneBlock.h>
namespace Poco
{
class Logger;
}
namespace DB
{
class Context;
/// Allows to introspect stack trace of all server threads.
/// It acts like an embedded debugger.
2019-12-23 19:23:54 +00:00
/// More than one instance of this table cannot be used.
2021-06-15 19:55:21 +00:00
class StorageSystemStackTrace final : public shared_ptr_helper<StorageSystemStackTrace>, public IStorageSystemOneBlock<StorageSystemStackTrace>
{
2021-06-15 19:55:21 +00:00
friend struct shared_ptr_helper<StorageSystemStackTrace>;
public:
String getName() const override { return "SystemStackTrace"; }
static NamesAndTypesList getNamesAndTypes();
2020-08-12 20:40:13 +00:00
StorageSystemStackTrace(const StorageID & table_id_);
2019-12-22 20:17:16 +00:00
protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
2019-12-22 20:17:16 +00:00
mutable std::mutex mutex;
Poco::Logger * log;
};
}
2019-12-23 18:56:57 +00:00
#endif