Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
136 lines
3.3 KiB
C++
136 lines
3.3 KiB
C++
/*
|
|
* Copyright (C) 2018-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace sstables {
|
|
|
|
class sstables_stats {
|
|
static thread_local struct stats {
|
|
uint64_t partition_writes = 0;
|
|
uint64_t static_row_writes = 0;
|
|
uint64_t row_writes = 0;
|
|
uint64_t tombstone_writes = 0;
|
|
uint64_t range_tombstone_writes = 0;
|
|
uint64_t range_tombstone_reads = 0;
|
|
uint64_t row_tombstone_reads = 0;
|
|
uint64_t cell_writes = 0;
|
|
uint64_t cell_tombstone_writes = 0;
|
|
uint64_t single_partition_reads = 0;
|
|
uint64_t range_partition_reads = 0;
|
|
uint64_t partition_reads = 0;
|
|
uint64_t partition_seeks = 0;
|
|
uint64_t row_reads = 0;
|
|
uint64_t capped_local_deletion_time = 0;
|
|
uint64_t capped_tombstone_deletion_time = 0;
|
|
uint64_t open_for_reading = 0;
|
|
uint64_t closed_for_reading = 0;
|
|
uint64_t open_for_writing = 0;
|
|
uint64_t closed_for_writing = 0;
|
|
uint64_t deleted = 0;
|
|
uint64_t promoted_index_auto_scale_events = 0;
|
|
} _shard_stats;
|
|
|
|
stats& _stats = _shard_stats;
|
|
|
|
public:
|
|
static const stats& get_shard_stats() noexcept {
|
|
return _shard_stats;
|
|
}
|
|
|
|
inline void on_partition_write() noexcept {
|
|
++_stats.partition_writes;
|
|
}
|
|
|
|
inline void on_static_row_write() noexcept {
|
|
++_stats.static_row_writes;
|
|
}
|
|
|
|
inline void on_row_write() noexcept {
|
|
++_stats.row_writes;
|
|
}
|
|
|
|
inline void on_tombstone_write() noexcept {
|
|
++_stats.tombstone_writes;
|
|
}
|
|
|
|
inline void on_range_tombstone_write() noexcept {
|
|
++_stats.range_tombstone_writes;
|
|
}
|
|
|
|
inline void on_range_tombstone_read() noexcept {
|
|
++_stats.range_tombstone_reads;
|
|
}
|
|
|
|
inline void on_row_tombstone_read() noexcept {
|
|
++_stats.row_tombstone_reads;
|
|
}
|
|
|
|
inline void on_cell_write() noexcept {
|
|
++_stats.cell_writes;
|
|
}
|
|
|
|
inline void on_cell_tombstone_write() noexcept {
|
|
++_stats.cell_tombstone_writes;
|
|
}
|
|
|
|
inline void on_single_partition_read() noexcept {
|
|
++_stats.single_partition_reads;
|
|
}
|
|
|
|
inline void on_range_partition_read() noexcept {
|
|
++_stats.range_partition_reads;
|
|
}
|
|
|
|
inline void on_partition_read() noexcept {
|
|
++_stats.partition_reads;
|
|
}
|
|
|
|
inline void on_partition_seek() noexcept {
|
|
++_stats.partition_seeks;
|
|
}
|
|
|
|
inline void on_row_read() noexcept {
|
|
++_stats.row_reads;
|
|
}
|
|
|
|
inline void on_capped_local_deletion_time() noexcept {
|
|
++_stats.capped_local_deletion_time;
|
|
}
|
|
|
|
inline void on_capped_tombstone_deletion_time() noexcept {
|
|
++_stats.capped_tombstone_deletion_time;
|
|
}
|
|
|
|
inline void on_open_for_reading() noexcept {
|
|
++_stats.open_for_reading;
|
|
}
|
|
inline void on_close_for_reading() noexcept {
|
|
++_stats.closed_for_reading;
|
|
}
|
|
|
|
inline void on_open_for_writing() noexcept {
|
|
++_stats.open_for_writing;
|
|
}
|
|
inline void on_close_for_writing() noexcept {
|
|
++_stats.closed_for_writing;
|
|
}
|
|
|
|
inline void on_delete() noexcept {
|
|
++_stats.deleted;
|
|
}
|
|
|
|
inline void on_promoted_index_auto_scale() noexcept {
|
|
++_stats.promoted_index_auto_scale_events;
|
|
}
|
|
};
|
|
|
|
}
|