mirror of
https://github.com/matrix-construct/construct
synced 2024-11-03 04:18:55 +01:00
37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
// Matrix Construct
|
|
//
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
#pragma once
|
|
#define HAVE_IRCD_DB_STATS_H
|
|
|
|
namespace ircd::db
|
|
{
|
|
// Histogram (per database)
|
|
extern const uint32_t histogram_max;
|
|
string_view histogram_id(const uint32_t &id);
|
|
uint32_t histogram_id(const string_view &key);
|
|
|
|
// Ticker (per database)
|
|
extern const uint32_t ticker_max;
|
|
string_view ticker_id(const uint32_t &id);
|
|
uint32_t ticker_id(const string_view &key);
|
|
uint64_t ticker(const database &, const uint32_t &id);
|
|
uint64_t ticker(const database &, const string_view &key);
|
|
|
|
// Perf counts (global)
|
|
uint perf_level();
|
|
void perf_level(const uint &);
|
|
const rocksdb::PerfContext &perf_current();
|
|
std::string string(const rocksdb::PerfContext &, const bool &all = false);
|
|
|
|
// IO counters (global)
|
|
const rocksdb::IOStatsContext &iostats_current();
|
|
std::string string(const rocksdb::IOStatsContext &, const bool &all = false);
|
|
}
|