@cryptotaxi247 / netdata-1 / commits / 2d8b5d104

Cassandra dashboard description (#13835)

thiagoftsm committed Oct 24, 2022 at 19:02 UTC 2d8b5d104b689b6faf28b0e6fc6663b37dc3605f
1 file changed +52
web/gui/dashboard_info.js
+52
@@ -4148,6 +4148,58 @@ netdataDashboard.context = {
4148 info: '<p>Network traffic received and sent by pgbouncer.</p><p><b>Received</b> - received from clients. <b>Sent</b> - sent to servers.</p>'
4149 },
4150
4151 + // ------------------------------------------------------------------------
4152 + // CASSANDRA
4153 +
4154 + 'cassandra.client_requests_rate': {
4155 + info: 'Client requests received per second. Consider whether your workload is read-heavy or write-heavy while choosing a compaction strategy.'
4156 + },
4157 + 'cassandra.client_requests_latency': {
4158 + info: 'Response latency of requests received per second. Latency could be impacted by disk access, network latency or replication configuration.'
4159 + },
4160 + 'cassandra.key_cache_hit_ratio': {
4161 + info: 'Key cache hit ratio indicates the efficiency of the key cache. If ratio is consistently < 80% consider increasing cache size.'
4162 + },
4163 + 'cassandra.key_cache_hit_rate': {
4164 + info: 'Key cache hit rate measures the cache hits and misses per second.'
4165 + },
4166 + 'cassandra.storage_live_disk_space_used': {
4167 + info: 'Amount of live disk space used. This does not include obsolete data waiting to be garbage collected.'
4168 + },
4169 + 'cassandra.compaction_completed_tasks_rate': {
4170 + info: 'Compaction tasks completed per second.'
4171 + },
4172 + 'cassandra.compaction_pending_tasks_count': {
4173 + info: 'Total compaction tasks in queue.'
4174 + },
4175 + 'cassandra.thread_pool_active_tasks_count': {
4176 + info: 'Total tasks currently being processed.'
4177 + },
4178 + 'cassandra.thread_pool_pending_tasks_count': {
4179 + info: 'Total tasks in queue awaiting a thread for processing.'
4180 + },
4181 + 'cassandra.thread_pool_blocked_tasks_rate': {
4182 + info: 'Tasks that cannot be queued for processing yet.'
4183 + },
4184 + 'cassandra.thread_pool_blocked_tasks_count': {
4185 + info: 'Total tasks that cannot yet be queued for processing.'
4186 + },
4187 + 'cassandra.jvm_gc_rate': {
4188 + info: 'Rate of garbage collections.</p><p><b>ParNew</b> - young-generation. <b>cms (ConcurrentMarkSweep)</b> - old-generation.</p>'
4189 + },
4190 + 'cassandra.jvm_gc_time': {
4191 + info: 'Elapsed time of garbage collection.</p><p><b>ParNew</b> - young-generation. <b>cms (ConcurrentMarkSweep)</b> - old-generation.</p>'
4192 + },
4193 + 'cassandra.client_requests_timeouts_rate': {
4194 + info: 'Requests which were not acknowledged within the configurable timeout window.'
4195 + },
4196 + 'cassandra.client_requests_unavailables_rate': {
4197 + info: 'Requests for which the required number of nodes was unavailable.'
4198 + },
4199 + 'cassandra.storage_exceptions_rate': {
4200 + info: 'Requests for which a storage exception was encountered.'
4201 + },
4202 +
4203 // ------------------------------------------------------------------------
4204 // APACHE
4205