ClickHouse/src/Storages/System/StorageSystemStackTrace.h

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

48 lines
986 B
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>
#include <Storages/IStorage.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.
class StorageSystemStackTrace final : public IStorage
{
public:
explicit StorageSystemStackTrace(const StorageID & table_id_);
String getName() const override { return "SystemStackTrace"; }
Pipe read(
const Names & column_names,
const StorageSnapshotPtr & storage_snapshot,
SelectQueryInfo & query_info,
ContextPtr context,
QueryProcessingStage::Enum processed_stage,
size_t max_block_size,
size_t num_streams) override;
2019-12-22 20:17:16 +00:00
bool isSystemStorage() const override { return true; }
protected:
mutable std::mutex mutex;
Poco::Logger * log;
};
}
2019-12-23 18:56:57 +00:00
#endif