Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Metrics Reference

AngaraBase exports Prometheus metrics on the /metrics endpoint (default port 9898, set via [ops] metrics_addr). All metric names are prefixed with angarabase_.

Replaces: docs/registries/metrics_surface_inventory_v0.txt (now deprecated).

Metric Types

TypePrometheus KindDescription
GaugegaugePoint-in-time value that can go up or down
CountercounterMonotonically increasing value (always use rate() or increase())
HistogramhistogramDistribution of values with configurable buckets

Key Metrics by Category

Buffer Pool

Key metrics for monitoring buffer pool efficiency:

  • angarabase_buffer_pool_hit_total — cache hits; high ratio (>95%) is healthy
  • angarabase_buffer_pool_miss_total — cache misses; spikes indicate memory pressure
  • angarabase_buffer_pool_backpressure_active — 1 if backpressure active (memory pressure)
# Buffer pool hit ratio:
rate(angarabase_buffer_pool_hit_total[5m]) /
  (rate(angarabase_buffer_pool_hit_total[5m]) + rate(angarabase_buffer_pool_miss_total[5m]))

Checkpoint

  • angarabase_checkpoint_duration_ms — checkpoint latency; target P99 < 200ms
  • angarabase_checkpoint_dirty_pages — dirty pages pending checkpoint flush
# Alert: checkpoint latency exceeding 200ms threshold
angarabase_checkpoint_duration_ms > 200

# Alert: checkpoint running on large dirty page set (potential I/O spike)
angarabase_checkpoint_dirty_pages > 10000

WAL

  • angarabase_wal_bytes_written_total — WAL write throughput
# WAL write throughput (bytes/sec):
rate(angarabase_wal_bytes_written_total[5m])

Connections

  • angarabase_connections_active — active connections; alert if near max_connections
# Alert: connections above 90% of max_connections
# (replace 100 with your actual max_connections value)
angarabase_connections_active / 100 > 0.9

# Rate of new connection attempts:
rate(angarabase_connections_accepted_total[1m])

Columnar Storage GC (0.6.6.11)

  • angarabase_columnar_manifest_gc_removed_total — ghost segment refs tombstoned by manifest GC; steady growth is normal, sharp spikes indicate manifest bloat.
  • angarabase_columnar_compactor_dv_purged_total — columnar segments fully covered by delete vectors (DV) and purged by the compactor.
  • angarabase_index_gc_dead_fraction — fraction of index entries currently marked dead (range 0–1). Values above 0.15 trigger a preemptive extra GC sweep.
# Rate of ghost segment refs being cleaned up (should be > 0 if compaction runs):
rate(angarabase_columnar_manifest_gc_removed_total[5m])

# Alert: index dead fraction rising above 20% (GC not keeping pace):
angarabase_index_gc_dead_fraction > 0.20

Full Metrics Table

Metric NameTypeLabelsDescription
angarabase_agg_stream_typed_key_totalCounternoneAggregation stream typed-key operations total.
angarabase_aqp_feedback_applied_totalCounternoneAQP correction feedback applied to optimizer total.
angarabase_aqp_feedback_clamped_totalCounternoneAQP correction feedback clamped by bounds total.
angarabase_auto_analyze_triggered_totalCounternoneAuto-analyze triggers total.
angarabase_backpressure_active_sourcesGaugenoneNumber of storage sources currently applying backpressure.
angarabase_buffer_pool_backpressure_activeGaugenoneBuffer pool backpressure currently active (1=yes, 0=no).
angarabase_buffer_pool_backpressure_events_totalCounternoneBuffer pool backpressure events total.
angarabase_buffer_pool_decomp_spill_totalCounternoneBuffer pool decompression spills to disk total.
angarabase_buffer_pool_evict_failed_totalCounternoneBuffer pool page eviction failures total.
angarabase_buffer_pool_hit_ratio_milliGaugenoneBuffer pool hit ratio × 1000 (milli-fraction).
angarabase_buffer_pool_hit_totalCounternoneBuffer pool cache hits total.
angarabase_buffer_pool_miss_totalCounternoneBuffer pool cache misses total.
angarabase_buffer_pool_over_capacity_pagesGaugenonePages loaded above configured buffer pool capacity.
angarabase_buffer_pool_uncommitted_dirty_pagesGaugenoneBuffer pool frames carrying uncommitted page-image deltas.
angarabase_buffer_pool_waiter_wait_secondsHistogramnoneTime buffer pool waiters spend blocked waiting for a free frame.
angarabase_buffer_pool_warmup_aborted_at_cap_totalCounternoneBuffer pool warmup attempts aborted due to capacity limit total.
angarabase_buffer_pool_warmup_completed_pagesGaugenonePages loaded during last completed buffer pool warmup.
angarabase_buffer_pool_warmup_evictions_during_warmup_totalCounternoneEvictions that occurred during buffer pool warmup total.
angarabase_buffer_pool_warmup_pages_totalCounternonePages loaded by buffer pool warmup total.
angarabase_buffer_ring_active_slotsGaugenoneActive buffer ring slots.
angarabase_buffer_ring_created_totalCounternoneBuffer ring slots created total.
angarabase_buffer_ring_dropped_totalCounternoneBuffer ring slots dropped total.
angarabase_buffer_ring_evictions_totalCounternoneBuffer ring evictions total.
angarabase_catalog_snapshot_segments_totalGaugenoneCatalog snapshot segments currently held.
angarabase_chain_read_legacy_fallback_totalCounternoneVersion-chain reads falling back to legacy path total.
angarabase_chain_read_totalCounternoneVersion-chain reads total.
angarabase_checkpoint_aborted_totalCounternoneCheckpoints aborted total.
angarabase_checkpoint_dirty_pagesGaugenoneDirty pages pending checkpoint flush.
angarabase_checkpoint_dirty_pages_leq_targetGaugenoneDirty pages at or below checkpoint target (1=yes, 0=no).
angarabase_checkpoint_errors_totalCounternoneCheckpoint errors total.
angarabase_checkpoint_index_flush_errors_totalCounternoneIndex flush errors during checkpoint total.
angarabase_checkpoint_target_lsn_currentGaugenoneCurrent checkpoint target LSN.
angarabase_checkpoint_scan_pages_totalCounternoneTotal pages inspected during checkpoint (dirty bitmap: O(dirty pages); full scan: O(total pages)).
angarabase_checkpoint_totalCounternoneCheckpoints completed total.
angarabase_column_cache_evictions_totalCounternoneColumnar column cache evictions total.
angarabase_column_cache_oom_rejected_totalCounternoneColumn cache allocations rejected due to OOM total.
angarabase_columnar_compaction_bytes_read_totalCounternoneBytes read during columnar compaction total.
angarabase_columnar_compaction_bytes_written_totalCounternoneBytes written during columnar compaction total.
angarabase_columnar_compaction_totalCounternoneColumnar compaction runs total.
angarabase_columnar_delete_vectors_applied_rows_totalCounternoneRows affected by columnar delete vectors total.
angarabase_columnar_delete_vectors_attached_totalCounternoneColumnar delete vectors attached total.
angarabase_columnar_direct_io_fallback_totalCounternoneColumnar reads falling back from direct I/O total.
angarabase_columnar_dml_duration_msHistogramnoneColumnar DML operation duration in milliseconds.
angarabase_columnar_manifest_init_failed_totalCounternoneColumnar manifest initialisation failures total.
angarabase_committed_version_exhausted_totalCounternoneCommitted version slot exhaustion events total.
angarabase_compress_duration_us_totalCounternoneCumulative compression time in microseconds.
angarabase_compress_ops_totalCounternoneCompression operations total.
angarabase_compression_downgrade_totalCounternoneCompression algorithm downgrades (payload too small) total.
angarabase_compression_ratio_ema_milliGaugenoneEMA compression ratio × 1000.
angarabase_config_unknown_keys_totalCounternoneUnknown configuration keys encountered at startup total.
angarabase_deadlock_detected_totalCounternoneDeadlocks detected by the lock manager total.
angarabase_decompress_duration_us_totalCounternoneCumulative decompression time in microseconds.
angarabase_decompress_ops_totalCounternoneDecompression operations total.
angarabase_deployment_probe_cgroup_v1GaugenoneDeployment probe detected cgroup v1 (1=yes, 0=no).
angarabase_deployment_probe_cgroup_v2GaugenoneDeployment probe detected cgroup v2 (1=yes, 0=no).
angarabase_deployment_probe_fallback_totalCounternoneDeployment probe fallback events total.
angarabase_deployment_probe_override_blocked_totalCounternoneDeployment probe override blocked events total.
angarabase_deployment_probe_runs_totalCounternoneDeployment probe runs total.
angarabase_deployment_profile_bare_metal_totalCounternoneDeployments on bare-metal profile total.
angarabase_deployment_profile_container_totalCounternoneDeployments on container profile total.
angarabase_engine_optimizer_catalog_row_count_fallback_totalCounternoneOptimizer catalog row-count fallback events total.
angarabase_engine_optimizer_index_scan_chosen_totalCounternoneOptimizer chose index scan total.
angarabase_engine_optimizer_small_table_seq_scan_totalCounternoneOptimizer chose sequential scan for small table total.
angarabase_engine_optimizer_stale_stats_fallback_totalCounternoneOptimizer fell back due to stale statistics total.
angarabase_expr_ir_arena_chunks_totalCounternoneExpression IR arena chunks allocated total.
angarabase_expr_ir_arena_released_bytes_totalCounternoneExpression IR arena bytes released total.
angarabase_expr_ir_arena_reserved_bytes_totalCounternoneExpression IR arena bytes reserved total.
angarabase_expr_ir_fallback_totalCounternoneExpression IR evaluation fallbacks total.
angarabase_fsync_timeout_totalCounternonefsync timeout events total.
angarabase_gc_background_ticks_totalCounternoneGC background tick cycles total.
angarabase_gc_compact_calls_totalCounternoneGC compaction calls total.
angarabase_gc_compact_history_versions_removed_totalCounternoneOld MVCC history versions removed by GC compaction total.
angarabase_gc_compact_slice_duration_ms_bucket_1CounternoneGC compact slice duration histogram bucket ≤1ms.
angarabase_gc_compact_slice_duration_ms_bucket_10CounternoneGC compact slice duration histogram bucket ≤10ms.
angarabase_gc_compact_slice_duration_ms_bucket_100CounternoneGC compact slice duration histogram bucket ≤100ms.
angarabase_gc_compact_slice_duration_ms_bucket_5CounternoneGC compact slice duration histogram bucket ≤5ms.
angarabase_gc_compact_slice_duration_ms_bucket_50CounternoneGC compact slice duration histogram bucket ≤50ms.
angarabase_gc_compact_slice_duration_ms_bucket_500CounternoneGC compact slice duration histogram bucket ≤500ms.
angarabase_gc_compact_slice_duration_ms_bucket_infCounternoneGC compact slice duration histogram bucket +Inf.
angarabase_gc_compact_slice_duration_ms_countCounternoneGC compact slice duration histogram observation count.
angarabase_gc_compact_slice_duration_ms_sumCounternoneGC compact slice duration histogram sum (ms).
angarabase_gc_compact_slices_totalCounternoneGC compaction slices processed total.
angarabase_gc_compact_tables_removed_totalCounternoneTables fully removed by GC compaction total.
angarabase_gc_compact_tables_scanned_totalCounternoneTables scanned by GC compaction total.
angarabase_gc_compact_versions_removed_totalCounternoneMVCC versions removed by GC compaction total.
angarabase_gc_tuning_bloat_ratio_percentGaugenoneGC tuning: current bloat ratio estimate (percent).
angarabase_gc_tuning_budget_tuples_per_cycleGaugenoneGC tuning: adaptive budget tuples per cycle.
angarabase_gc_tuning_cycle_duration_ms_lastGaugenoneLast GC tuning cycle duration in ms.
angarabase_gc_tuning_decision_total_decreaseCounternoneGC tuning decisions to decrease budget total.
angarabase_gc_tuning_decision_total_holdCounternoneGC tuning decisions to hold budget total.
angarabase_gc_tuning_decision_total_increaseCounternoneGC tuning decisions to increase budget total.
angarabase_gc_tuning_min_active_epoch_lagGaugenoneMinimum active epoch lag seen by GC tuner.
angarabase_gc_tuning_sleep_msGaugenoneGC tuner current sleep interval in ms.
angarabase_gc_watermark_snapshotGaugenoneGC safe watermark snapshot epoch.
angarabase_gc_pages_compacted_totalCounternoneHeap pages compacted by GcWorker (dead-tuple reclaim) total.
angarabase_gc_dead_tuples_reclaimed_totalCounternoneDead tuple slots reclaimed by GcWorker total.
angarabase_group_commit_batches_totalCounternoneWAL group-commit batches flushed total.
angarabase_hash_join_build_rows_totalCounternoneHash join build-side rows processed total.
angarabase_hash_join_probe_rows_totalCounternoneHash join probe-side rows processed total.
angarabase_hash_join_spilled_to_nested_loop_totalCounternoneHash joins that spilled and fell back to nested loop total.
angarabase_heap_deletes_totalCounternoneHeap row deletions total.
angarabase_heap_dml_errors_totalCounternoneHeap DML errors total.
angarabase_heap_inserts_totalCounternoneHeap row insertions total.
angarabase_heap_pages_flushed_on_shutdownCounternoneHeap pages flushed during graceful shutdown.
angarabase_heap_point_fetch_fallback_reason_not_found_totalCounternoneHeap point-fetch fallbacks: row not found total.
angarabase_heap_point_fetch_fallback_reason_stale_tid_index_totalCounternoneHeap point-fetch fallbacks: stale TID index total.
angarabase_heap_point_fetch_fallback_totalCounternoneHeap point-fetch fallbacks total.
angarabase_heap_point_fetch_totalCounternoneHeap point-fetch attempts total.
angarabase_heap_tid_index_readyGaugenoneHeap TID index readiness (1=ready, 0=not ready).
angarabase_heap_updates_totalCounternoneHeap row updates total.
angarabase_htap_staleness_msGaugenoneHTAP read-replica staleness in milliseconds.
angarabase_idle_txn_killed_totalCounternoneIdle transactions killed by the idle-timeout janitor total.
angarabase_index_build_aborts_totalCounternoneIndex build aborts total.
angarabase_index_builds_totalCounternoneIndex builds started total.
angarabase_index_deletes_totalCounternoneIndex key deletions total.
angarabase_index_drops_totalCounternoneIndex drop operations total.
angarabase_index_inserts_totalCounternoneIndex key insertions total.
angarabase_index_lookups_totalCounternoneIndex lookup operations total.
angarabase_index_migration_completed_totalCounternoneIndex migrations completed total.
angarabase_index_migration_failed_totalCounternoneIndex migration failures total.
angarabase_index_not_found_totalCounternoneIndex lookup: key not found total.
angarabase_index_only_scan_heap_fetches_totalCounternoneHeap fetches during index-only scans total.
angarabase_index_only_scan_hits_totalCounternoneIndex-only scan hits (no heap fetch required) total.
angarabase_index_pages_totalGaugeindex_nameTotal pages in an index.
angarabase_index_pkey_no_table_id_totalGaugenonePrimary-key index entries with no resolved table ID.
angarabase_index_range_scans_totalCounternoneIndex range scan operations total.
angarabase_index_reject_totalCounternoneIndex operation rejections total.
angarabase_index_restore_empty_labeled_totalCounterindex, dbEmpty index restores (with index+db label) total.
angarabase_index_restore_empty_totalCounternoneEmpty index restores total.
angarabase_index_restore_failed_totalCounterindex, dbIndex restore failures total.
angarabase_index_routing_legacy_totalCounterdbIndex routing via legacy path total.
angarabase_index_scan_rows_fetched_totalCounternoneRows fetched via index scan total.
angarabase_index_stale_tuple_fallbacks_totalCounternoneIndex scan stale-tuple fallbacks total.
angarabase_io_advisor_current_batch_sizeGaugenoneIO advisor current adaptive batch size.
angarabase_io_backend_activeGaugebackendIO backend active (1=active) per backend.
angarabase_io_backend_active_componentGaugecomponent, backendIO backend active per component and backend.
angarabase_io_complete_totalCounteropIO completions total per operation type.
angarabase_io_error_totalCounteropIO errors total per operation type.
angarabase_io_submit_totalCounteropIO submissions total per operation type.
angarabase_io_uring_active_instancesGaugenoneActive io_uring ring instances.
angarabase_io_uring_backpressure_totalCounternoneio_uring backpressure events total.
angarabase_io_uring_cqe_completed_totalCounternoneio_uring CQEs completed total.
angarabase_io_uring_direct_submit_totalCounternoneio_uring direct (non-SQPOLL) submissions total.
angarabase_io_uring_fallback_totalCounternoneio_uring operations falling back to pread/pwrite total.
angarabase_io_uring_inflight_highGaugenoneio_uring high-watermark inflight operations.
angarabase_io_uring_inflight_lowGaugenoneio_uring low-watermark inflight operations.
angarabase_io_uring_parallel_inflight_highGaugenoneio_uring parallel inflight high-watermark.
angarabase_io_uring_parallel_inflight_lowGaugenoneio_uring parallel inflight low-watermark.
angarabase_io_uring_read_fixed_totalCounternoneio_uring fixed-buffer reads total.
angarabase_io_uring_registered_buffers_countGaugenoneio_uring registered buffer count.
angarabase_io_uring_sqe_submitted_totalCounternoneio_uring SQEs submitted total.
angarabase_io_uring_sqpoll_enabledGaugenoneio_uring SQPOLL mode enabled (1=yes, 0=no).
angarabase_io_uring_task_panic_totalCounternoneio_uring task panics total.
angarabase_io_uring_wal_write_error_totalCounternoneio_uring WAL write errors total.
angarabase_io_uring_write_fixed_totalCounternoneio_uring fixed-buffer writes total.
angarabase_ir_ddl_executed_totalCounternoneIR-path DDL statements executed total.
angarabase_ir_dml_executed_totalCounternoneIR-path DML statements executed total.
angarabase_ir_legacy_path_violation_totalCounternoneIR legacy path violations detected total.
angarabase_ir_plan_depth_reject_totalCounternoneIR plans rejected for excessive depth total.
angarabase_ir_plan_executed_totalCounternoneIR plans executed total.
angarabase_l0_blob_bytes_written_totalCounternoneL0 blob bytes written total.
angarabase_l0_blobs_activeGaugenoneActive L0 blobs.
angarabase_legacy_fallback_triggered_totalCounternoneLegacy SQL execution fallbacks triggered total.
angarabase_lock_acquire_totalCounternoneLock acquisitions total.
angarabase_lock_timeout_totalCounternoneLock acquisition timeouts total.
angarabase_manifest_log_appends_totalCounternoneManifest log appends total.
angarabase_manifest_log_checkpoints_totalCounternoneManifest log checkpoints total.
angarabase_manifest_log_replay_records_totalCounternoneManifest log records replayed total.
angarabase_merge_join_executions_totalCounternoneMerge join executions total.
angarabase_mvcc_history_versions_totalGaugenoneTotal MVCC history versions held.
angarabase_notify_delivered_totalCounternoneLISTEN/NOTIFY notifications delivered total.
angarabase_notify_dropped_totalCounternoneLISTEN/NOTIFY notifications dropped total.
angarabase_notify_listeners_activeGaugenoneActive LISTEN subscribers.
angarabase_optimizer_decorrelation_fallback_non_equi_predicate_totalCounternoneOptimizer decorrelation fallback: non-equi predicate total.
angarabase_optimizer_decorrelation_fallback_null_semantics_risk_totalCounternoneOptimizer decorrelation fallback: null semantics risk total.
angarabase_optimizer_decorrelation_fallback_totalCounternoneOptimizer decorrelation fallbacks total.
angarabase_optimizer_decorrelation_fallback_unsafe_pattern_totalCounternoneOptimizer decorrelation fallback: unsafe pattern total.
angarabase_optimizer_dp_fallback_totalCounternoneOptimizer dynamic-programming join-order fallbacks total.
angarabase_optimizer_memo_entriesGaugenoneOptimizer memo table entries (last query).
angarabase_optimizer_multicolumn_pairs_capped_totalCounternoneOptimizer multicolumn pair evaluation capped total.
angarabase_optimizer_queries_totalCounternoneQueries processed by the optimizer total.
angarabase_optimizer_replan_total_aqp_feedbackCounternoneOptimizer replans triggered by AQP feedback total.
angarabase_optimizer_replan_total_forced_fallbackCounternoneOptimizer forced-fallback replans total.
angarabase_optimizer_replan_total_schema_changedCounternoneOptimizer replans due to schema change total.
angarabase_optimizer_replan_total_stats_driftCounternoneOptimizer replans due to stats drift total.
angarabase_optimizer_stale_stats_totalCounternoneOptimizer stale statistics encounters total.
angarabase_optimizer_timeout_totalCounternoneOptimizer timeout events total.
angarabase_orphan_blobs_reclaimed_totalCounternoneOrphan blobs reclaimed by GC total.
angarabase_overlay_rows_evicted_totalCounternoneTX overlay rows evicted total.
angarabase_parallel_agg_totalCounternoneParallel aggregation executions total.
angarabase_parallel_budget_exceeded_totalCounternoneParallel worker budget exceeded events total.
angarabase_parallel_join_admitted_totalCounternoneParallel join operations admitted total.
angarabase_parallel_join_slots_activeGaugenoneActive parallel join slots.
angarabase_parallel_join_throttled_totalCounternoneParallel join operations throttled total.
angarabase_parallel_morsels_stolen_totalCounternoneParallel morsels stolen by work-stealing total.
angarabase_parallel_morsels_totalCounternoneParallel morsels created total.
angarabase_parallel_scan_totalCounternoneParallel scan operations total.
angarabase_parallel_worker_cancel_totalCounternoneParallel worker cancellations total.
angarabase_parallel_worker_starvation_events_totalCounternoneParallel worker starvation events total.
angarabase_parallel_workers_activeGaugenoneCurrently active parallel workers.
angarabase_parallel_workers_denied_by_cap_totalCounternoneParallel worker requests denied by DOP cap total.
angarabase_partition_pruned_branches_totalCounternonePartition branches pruned by predicate pushdown total.
angarabase_partition_route_default_totalCounternonePartition routes to default partition total.
angarabase_partition_route_no_match_totalCounternonePartition routes with no matching partition total.
angarabase_partition_route_ok_totalCounternoneSuccessful partition routes total.
angarabase_pgwire_active_tasksGaugenoneActive pgwire tasks (queries in flight).
angarabase_pgwire_pool_active_workersGaugenoneActive pgwire workers (async spawn_blocking tasks or legacy pool busy workers).
angarabase_pgwire_pool_queue_depthGaugenonepgwire pool pending connection queue depth.
angarabase_pgwire_pool_rejected_totalCounternonepgwire connections rejected by pool limit total.
angarabase_pgwire_simple_queries_totalCounternonepgwire simple-query protocol messages total.
angarabase_pkey_backfill_fail_totalCounternonePrimary-key backfill failures total.
angarabase_pkey_backfill_in_progressGaugenonePrimary-key backfill operations in progress.
angarabase_pkey_backfill_ok_totalCounternonePrimary-key backfill completions total.
angarabase_plan_cache_dml_hit_duration_usHistogramnoneDML plan cache hit latency in microseconds.
angarabase_plan_cache_dml_hits_totalCounternoneDML plan cache hits total.
angarabase_plan_cache_dml_misses_totalCounternoneDML plan cache misses total.
angarabase_plan_cache_dml_param_extract_error_totalCounternoneDML plan cache parameter extraction errors total.
angarabase_plan_cache_dml_schema_miss_totalCounternoneDML plan cache schema mismatch misses total.
angarabase_plan_cache_evictions_totalCounternonePlan cache evictions total.
angarabase_plan_cache_hits_totalCounternonePlan cache hits total.
angarabase_plan_cache_invalidations_totalCounternonePlan cache invalidations total.
angarabase_plan_cache_misses_totalCounternonePlan cache misses total.
angarabase_plan_cache_sizeGaugenoneCurrent plan cache entry count.
angarabase_prefetch_hints_totalCounternonePrefetch hints issued total.
angarabase_projection_pruning_cols_eliminated_totalCounternoneColumns eliminated by projection pruning total.
angarabase_qos_blocking_inflightGaugenoneQoS blocking inflight operations.
angarabase_qos_priority_inherit_totalCounterfrom, toQoS priority inheritance events total.
angarabase_qos_queued_background_totalCounternoneQoS background-priority requests queued total.
angarabase_qos_queued_critical_totalCounternoneQoS critical-priority requests queued total.
angarabase_qos_queued_interactive_totalCounternoneQoS interactive-priority requests queued total.
angarabase_qos_rejected_background_totalCounternoneQoS background-priority requests rejected total.
angarabase_qos_rejected_critical_totalCounternoneQoS critical-priority requests rejected total.
angarabase_qos_rejected_interactive_totalCounternoneQoS interactive-priority requests rejected total.
angarabase_query_exec_duration_msHistogramnoneQuery execution duration in milliseconds.
angarabase_query_exec_totalCounteroutcome, classQuery executions total by outcome and class.
angarabase_query_feedback_events_totalCounterreasonQuery feedback events emitted total.
angarabase_query_store_entries_totalGaugenoneQuery store current entry count.
angarabase_query_store_evictions_totalCounternoneQuery store evictions total.
angarabase_query_store_intervals_flushed_totalCounternoneQuery store intervals flushed to WAL total.
angarabase_query_store_modeGaugenoneQuery store current mode (encoded integer).
angarabase_query_store_plans_totalGaugenoneQuery store current plan count.
angarabase_query_store_regressions_detected_totalCounternoneQuery regressions detected by the query store total.
angarabase_query_store_rotations_totalCounternoneQuery store interval rotations total.
angarabase_query_store_wal_errors_totalCounternoneQuery store WAL write errors total.
angarabase_recovery_analysis_msGaugenoneRecovery analysis phase duration in ms.
angarabase_recovery_clr_recordsCounternoneRecovery CLR (compensation log) records replayed total.
angarabase_recovery_dirty_pagesGaugenoneDirty pages remaining after recovery redo.
angarabase_recovery_redo_recordsCounternoneRecovery redo records applied total.
angarabase_recovery_replay_pages_applied_totalCounternoneRecovery page replay: pages applied total.
angarabase_recovery_replay_pages_runs_totalCounternoneRecovery page replay runs total.
angarabase_recovery_replay_pages_skipped_totalCounternoneRecovery page replay: pages skipped total.
angarabase_recovery_undo_txnsCounternoneTransactions rolled back during recovery total.
angarabase_scan_stream_batches_totalCounternoneScan stream batches produced total.
angarabase_scan_stream_fallback_totalCounternoneScan stream fallbacks to row-by-row total.
angarabase_scan_stream_materialize_totalCounterreasonScan stream materialise operations total by reason.
angarabase_sequence_currval_totalCounternoneCURRVAL calls total.
angarabase_sequence_nextval_totalCounternoneNEXTVAL calls total.
angarabase_sequence_overflow_totalCounternoneSequence overflow events total.
angarabase_sequence_owned_create_failed_totalCounternoneOwned sequence create failures total.
angarabase_sequence_owned_lazy_migration_totalCounternoneOwned sequence lazy migrations total.
angarabase_sequence_owned_nextval_totalCounternoneOwned sequence NEXTVAL calls total.
angarabase_sequence_setval_totalCounternoneSETVAL calls total.
angarabase_server_connections_accepted_totalCounternoneServer connections accepted total.
angarabase_server_connections_activeGaugenoneCurrently active server connections.
angarabase_session_claims_set_totalCounternoneSession JWT claim SET operations total.
angarabase_shutdown_dirty_pages_remainingGaugenoneDirty pages remaining at shutdown start.
angarabase_slow_query_totalCounternoneSlow queries exceeding log_min_duration_ms total.
angarabase_spawn_blocking_activeGaugenoneActive spawn_blocking tasks.
angarabase_spawn_blocking_maxGaugenoneMaximum observed spawn_blocking concurrency.
angarabase_spill_bytes_in_useGaugenoneSpill storage bytes currently in use.
angarabase_spill_bytes_totalCounternoneTotal bytes spilled to disk.
angarabase_spill_direct_io_supportedGaugenoneSpill direct I/O supported on this filesystem (1=yes).
angarabase_spill_files_totalCounternoneSpill files created total.
angarabase_spill_hash_join_bloom_filtered_probe_rows_totalCounternoneHash join bloom-filtered probe rows total.
angarabase_spill_hash_join_recursion_depth_overflow_totalCounternoneHash join recursion depth overflow events total.
angarabase_spill_hash_join_recursive_partitions_totalCounternoneRecursive spill partitions created total.
angarabase_spill_hash_join_skew_fallback_totalCounternoneHash join skew fallbacks total.
angarabase_spill_otmpfile_with_direct_supportedGaugenoneO_TMPFILE with direct I/O supported (1=yes).
angarabase_spill_soft_quota_reached_totalCounternoneSpill soft quota reached events total.
angarabase_sql_correlated_budget_reject_totalCounternoneCorrelated subquery budget rejections total.
angarabase_sql_cross_join_budget_reject_totalCounternoneCross join budget rejections total.
angarabase_sql_default_nextval_reject_totalCounternoneDEFAULT NEXTVAL rejections total.
angarabase_sql_full_join_fallback_totalCounternoneFULL JOIN fallbacks total.
angarabase_sql_identity_override_reject_totalCounternoneIDENTITY ALWAYS override rejections total.
angarabase_sql_join_rows_produced_cross_totalCounternoneRows produced by cross joins total.
angarabase_sql_join_rows_produced_full_totalCounternoneRows produced by full outer joins total.
angarabase_sql_join_rows_produced_inner_totalCounternoneRows produced by inner joins total.
angarabase_sql_join_rows_produced_lateral_totalCounternoneRows produced by lateral joins total.
angarabase_sql_join_rows_produced_left_totalCounternoneRows produced by left outer joins total.
angarabase_sql_join_rows_produced_right_totalCounternoneRows produced by right outer joins total.
angarabase_sql_routing_totalCounterdecisionSQL routing decisions total by decision type.
angarabase_sql_scalar_subquery_cardinality_violations_totalCounternoneScalar subquery cardinality violations total.
angarabase_sql_sequence_allocations_identity_always_totalCounternoneSequence allocations for IDENTITY ALWAYS columns total.
angarabase_sql_sequence_allocations_identity_by_default_totalCounternoneSequence allocations for IDENTITY BY DEFAULT columns total.
angarabase_sql_sequence_allocations_serial_totalCounternoneSequence allocations for SERIAL columns total.
angarabase_sql_upsert_conflict_totalCounternoneUPSERT conflict events total.
angarabase_sql_upsert_do_nothing_totalCounternoneUPSERT ON CONFLICT DO NOTHING events total.
angarabase_sql_upsert_do_update_totalCounternoneUPSERT ON CONFLICT DO UPDATE events total.
angarabase_stat_statements_entries_currentGaugenoneCurrent stat_statements entry count.
angarabase_stat_statements_evicted_totalCounternonestat_statements LRU evictions total (high rate → literal normalization gap).
angarabase_storage_backpressure_commit_rejected_totalCounternoneCommits rejected by storage backpressure total.
angarabase_storage_backpressure_events_totalCounternoneStorage backpressure events total.
angarabase_storage_cached_pages_totalGaugenonePages currently cached in the storage layer.
angarabase_storage_dirty_pages_totalGaugenoneTotal dirty pages in the storage layer.
angarabase_storage_flush_append_totalCounternoneStorage flush append operations total.
angarabase_storage_flush_bytes_totalCounternoneStorage flush bytes written total.
angarabase_storage_flush_duration_secondsHistogramnoneStorage flush operation duration in seconds.
angarabase_storage_flush_eviction_duration_ms_lastGaugenoneLast storage flush eviction duration in ms.
angarabase_storage_flush_full_totalCounternoneStorage full flushes total.
angarabase_storage_flush_ok_totalCounternoneSuccessful storage flush operations total.
angarabase_storage_flush_skipped_page_lsn_ahead_totalCounternoneStorage flush skips: page LSN ahead of flush LSN total.
angarabase_storage_flush_skipped_pinned_totalCounternoneStorage flush skips: page pinned total.
angarabase_storage_flush_skipped_uncommitted_totalCounternoneStorage flush skips: uncommitted page total.
angarabase_storage_io_read_duration_msHistogramnoneStorage I/O read duration in milliseconds.
angarabase_storage_io_write_duration_msHistogramnoneStorage I/O write duration in milliseconds.
angarabase_storage_per_table_engine_fallback_totalCounternonePer-table engine fallback events total.
angarabase_storage_per_table_engines_countGaugenoneNumber of per-table storage engine overrides.
angarabase_storage_scan_errors_totalGaugenoneStorage scan errors total.
angarabase_storage_sync_data_totalCounternoneStorage data sync operations total.
angarabase_stream_entries_totalCounternoneStream (CDC) entries published total.
angarabase_stream_subscriptions_activeGaugenoneActive stream subscriptions.
angarabase_syscatalog_db_lazy_load_duration_ms_lastGaugenoneLast system-catalog lazy-load duration in ms.
angarabase_syscatalog_db_unavailable_totalCounternoneSystem-catalog DB unavailable events total.
angarabase_syscatalog_global_baseline_load_duration_ms_lastGaugenoneLast system-catalog global baseline load duration in ms.
angarabase_table_lock_contention_totalCounternoneTable-level lock contention events total.
angarabase_transaction_log_bytes_appended_totalCounternoneWAL bytes appended total.
angarabase_transaction_log_checkpoint_chain_broken_totalCounternoneWAL checkpoint chain breaks total.
angarabase_transaction_log_checkpoint_end_invalid_totalCounternoneInvalid WAL checkpoint-end records total.
angarabase_transaction_log_checkpoint_end_valid_totalCounternoneValid WAL checkpoint-end records total.
angarabase_transaction_log_durable_lsnGaugenoneWAL durable (fsync-confirmed) LSN.
angarabase_transaction_log_flush_lsnGaugenoneWAL flush (write-confirmed) LSN.
angarabase_transaction_log_group_commit_pending_lsnGaugenoneWAL group-commit pending LSN.
angarabase_transaction_log_group_commit_pumps_totalCounternoneWAL group-commit pump iterations total.
angarabase_transaction_log_lag_commit_minus_durable_lsnGaugenoneWAL lag: commit LSN minus durable LSN.
angarabase_transaction_log_lag_flush_minus_durable_lsnGaugenoneWAL lag: flush LSN minus durable LSN.
angarabase_transaction_log_lag_pending_minus_durable_lsnGaugenoneWAL lag: pending LSN minus durable LSN.
angarabase_transaction_log_last_checkpoint_idGaugenoneWAL last checkpoint identifier.
angarabase_transaction_log_last_checkpoint_target_lsnGaugenoneWAL last checkpoint target LSN.
angarabase_transaction_log_last_commit_lsnGaugenoneWAL last commit LSN.
angarabase_transaction_log_records_appended_totalCounternoneWAL records appended total.
angarabase_transaction_log_scan_stop_reason_total_bad_crcCounternoneWAL scan stopped: bad CRC total.
angarabase_transaction_log_scan_stop_reason_total_bad_lenCounternoneWAL scan stopped: bad record length total.
angarabase_transaction_log_scan_stop_reason_total_bad_magicCounternoneWAL scan stopped: bad magic bytes total.
angarabase_transaction_log_scan_stop_reason_total_bad_versionCounternoneWAL scan stopped: bad version total.
angarabase_transaction_log_scan_stop_reason_total_partial_recordCounternoneWAL scan stopped: partial record total.
angarabase_tx_overlay_dataset_bytes_totalGaugenoneTX overlay dataset bytes in use.
angarabase_tx_overlay_dataset_limit_exceeded_totalCounternoneTX overlay dataset limit exceeded events total.
angarabase_txn_active_countGaugenoneCurrently active transactions.
angarabase_txn_begin_totalCounternoneTransactions begun total.
angarabase_txn_commit_conflicts_totalCounternoneTransaction commit conflicts (serialization failures) total.
angarabase_txn_commit_epoch_currentGaugenoneCurrent transaction commit epoch.
angarabase_txn_commit_epoch_exhausted_totalCounternoneTransaction commit epoch exhaustion events total.
angarabase_txn_commit_totalCounternoneTransactions committed total.
angarabase_txn_id_exhausted_totalCounternoneTransaction ID exhaustion events total.
angarabase_txn_long_snapshot_hard_totalCounternoneLong-running snapshot hard-limit violations total.
angarabase_txn_long_snapshot_warn_totalCounternoneLong-running snapshot warnings total.
angarabase_txn_oldest_snapshot_age_secondsGaugenoneAge of the oldest active snapshot in seconds.
angarabase_txn_release_savepoint_totalCounternoneRELEASE SAVEPOINT calls total.
angarabase_txn_rollback_to_savepoint_totalCounternoneROLLBACK TO SAVEPOINT calls total.
angarabase_txn_rollback_totalCounternoneTransactions rolled back total.
angarabase_txn_savepoint_totalCounternoneSAVEPOINT calls total.
angarabase_txn_watermark_min_activeGaugenoneMinimum active transaction watermark.
angarabase_txn_watermark_safe_gcGaugenoneSafe GC watermark (all txns below this epoch are committed/aborted).
angarabase_txn_watermark_safe_gc_lag_snapshotsGaugenoneNumber of snapshots lagging behind the safe GC watermark.
angarabase_txn_write_set_limit_exceeded_totalCounternoneTransactions rejected for exceeding write-set size limit total.
angarabase_txn_write_set_pages_maxGaugenoneMaximum write-set pages per transaction configuration.
angarabase_undo_append_rejected_totalCounternoneUndo log append rejections total.
angarabase_undo_file_bytesGaugenoneUndo file size in bytes.
angarabase_undo_gc_truncations_totalCounternoneUndo GC truncations total.
angarabase_undo_segments_totalGaugenoneTotal undo segments.
angarabase_undo_store_bytesGaugenoneUndo store bytes in use.
angarabase_uptime_secondsGaugenoneServer uptime in seconds.
angarabase_vector_batches_produced_totalCounternoneVectorised execution batches produced total.
angarabase_vector_columnar_native_totalCounternoneVector aggregate executions via native columnar batch pipeline.
angarabase_columnar_batched_scan_batches_totalCounternoneColumnar segment batches consumed by vector-native batched scans.
angarabase_columnar_segments_pruned_totalCounternoneColumnar segments pruned by zone-map predicate pushdown before blob I/O.
angarabase_columnar_filtered_agg_late_mat_totalCounternoneFiltered columnar aggregate scans using predicate-first late materialization.
angarabase_vector_fallback_totalCounternoneVectorised execution fallbacks to row mode total.
angarabase_vector_memory_budget_exceeded_totalCounternoneVector execution memory budget exceeded events total.
angarabase_vector_rows_produced_totalCounternoneRows produced by vectorised execution total.
angarabase_version_arena_capacity_exceeded_totalCounternoneVersion arena capacity exceeded events total.
angarabase_version_chain_gc_removed_heads_totalCounternoneVersion chain GC: removed head entries total.
angarabase_version_chain_rebuild_from_wal_totalCounternoneVersion chains rebuilt from WAL during recovery total.
angarabase_version_head_map_sizeGaugenoneVersion head map current entry count.
angarabase_wal_decompressed_records_totalCounternoneWAL records decompressed total.
angarabase_wal_decompression_errors_totalCounternoneWAL decompression errors total.
angarabase_wal_group_commit_wait_totalCounternoneWAL group-commit waiter events total.
angarabase_wal_lsn_drift_resets_totalCounternoneWAL LSN drift reset events total.
angarabase_wal_record_iterator_lsn_order_violations_totalCounternoneWAL record iterator LSN-order violations total.
angarabase_wal_record_iterator_vlf_transitions_totalCounternoneWAL record iterator VLF segment transitions total.
angarabase_wal_sync_wait_totalCounternoneWAL sync waits total.
angarabase_write_hook_duration_ms_totalCounternoneWrite hook cumulative duration in ms.
angarabase_write_hook_invocations_totalCounternoneWrite hook invocations total.
angarabase_write_path_commits_ok_totalCounternoneWrite path successful commits total.
angarabase_write_path_concurrent_waitersGaugenoneCurrent write path concurrent waiters.
angarabase_write_path_lock_free_commits_totalCounternoneLock-free write path commits total.
angarabase_write_path_phase_a_totalCounternoneWrite path phase-A (prepare) completions total.
angarabase_write_path_phase_b_timeout_totalCounternoneWrite path phase-B timeouts total.
angarabase_write_path_phase_b_totalCounternoneWrite path phase-B (commit) completions total.
angarabase_write_path_serialized_commits_totalCounternoneSerialized (non-lock-free) write path commits total.
angarabase_write_write_conflicts_totalCounternoneWrite-write conflicts detected total.