HeliosDB-Lite System View Catalog
94 system views available via SELECT * FROM <view_name>.
To list all views: SELECT * FROM helios_dictionary
To filter by category: SELECT view_name, description FROM helios_dictionary WHERE category = 'security'
Catalog (11 views)
View Description pg_tablesList of all user tables pg_viewsList of all views pg_indexesList of all indexes pg_attributeTable column attributes (name, type, nullable) pg_classRelations (tables, indexes, sequences, views) pg_typeRegistered data types pg_namespaceSchemas and namespaces pg_indexIndex definitions with column mappings pg_constraintConstraints (PK, FK, UNIQUE, CHECK) pg_databaseDatabase metadata pg_matviewsMaterialized views and their definitions
Session & Activity (5 views)
View Description pg_stat_activityCurrently running queries, session state, wait events pg_stat_databaseDatabase-wide statistics (transactions, blocks, tuples) pg_settingsRuntime configuration parameters and their values pg_stat_sslSSL/TLS connection status per session pg_authidAuthentication identities (users and roles)
Statistics (5 views)
View Description pg_statsColumn statistics from ANALYZE (null_frac, n_distinct, avg_width) pg_stat_optimizerOptimizer cost estimation accuracy and rule usage helios_table_memory_statsPer-table memory consumption helios_query_historyRecent query execution log with timing helios_transaction_statsTransaction commit/rollback throughput
Security (5 views)
View Description helios_grantsTable and column privilege grants (GRANT/REVOKE) helios_rolesRoles with options (LOGIN, SUPERUSER, RATE_LIMIT, SSL_REQUIRED) helios_user_quotasPer-user rate limit quotas and current usage pg_rls_policiesRow-level security policies (USING/CHECK expressions) pg_tenant_usageMulti-tenant resource usage per tenant
Encryption (5 views)
View Description pg_encryption_statusTDE encryption global status pg_table_encryptionPer-table encryption status pg_segment_encryptionPer-storage-segment encryption status helios_encryption_keysEncryption key versions and rotation history helios_zke_statusZero-knowledge encryption per-table status
HTAP (3 views)
View Description pg_htap_layout_statsRow store vs columnar store size statistics helios_workload_patternsOLTP/OLAP/HTAP workload classification patterns helios_resource_usageHTAP resource quota usage (CPU, memory, I/O)
Storage (12 views)
View Description helios_bloom_filtersBloom filter FPR and memory per column helios_zone_mapsZone map min/max boundaries per column helios_index_statsIndex metadata (type, column, size, entries) helios_smfi_statusSelf-maintaining filter index lifecycle status helios_dedup_statsContent-addressed deduplication ratios helios_prefetch_statsRead prefetch cache statistics helios_column_compressionPer-column compression codec (zstd/lz4/none) pg_compression_statsGlobal compression statistics pg_block_file_statsBlock file I/O statistics pg_wal_statsWrite-ahead log size, segments, sync stats pg_segment_statsStorage segment utilization pg_staging_area_statsStaging area (bulk load) statistics
Branching & Time Travel (7 views)
View Description pg_branchesDatabase branches (name, created_at, parent) pg_database_branchesBranch metadata and lineage tree pg_branch_statsPer-branch row count and size statistics pg_compare_branchesCompare data between two branches pg_snapshotsMVCC snapshot history pg_scn_mapSystem change number mapping pg_transaction_mapTransaction ID to timestamp mapping
Materialized Views (2 views)
View Description helios_mv_refresh_statusMV auto-refresh schedule, interval, next refresh pg_mv_stalenessHow stale each MV is (rows changed since refresh)
HA & Replication (9 views)
View Description pg_stat_replicationActive replication connections pg_replication_statusCluster replication health pg_replication_standbysStandby server status and lag pg_replication_primaryPrimary server information pg_replication_metricsReplication throughput and latency helios_ha_statusHA cluster overall status helios_topologyCluster node topology helios_node_aliasesNode alias name mappings helios_sync_statusSync module replication status
Proxy (14 views)
View Description helios_proxy_statusProxy server status helios_proxy_poolsConnection pool status and utilization helios_proxy_cache_statsQuery result cache hit rates helios_proxy_routing_statsQuery routing decisions helios_proxy_lag_statsLag-aware read routing statistics helios_proxy_rate_limit_statsRate limiting enforcement stats helios_proxy_circuit_breaker_statsCircuit breaker state transitions helios_proxy_analytics_statsQuery analytics (slow queries, patterns) helios_proxy_auth_statsAuthentication proxy statistics helios_proxy_rewriter_statsQuery rewriter rule application stats helios_proxy_plugin_statsWASM plugin execution stats helios_proxy_graphql_statsGraphQL gateway request stats helios_proxy_schema_routing_statsSchema-based routing stats pg_distribcache_statsDistributed cache hit rates
Maintenance (2 views)
View Description pg_stat_progress_vacuumVACUUM progress (tables processed, rows removed) pg_maintenance_statsBackground maintenance task statistics
Features (5 views)
View Description helios_graphql_statusGraphQL gateway enabled/endpoint status helios_circuit_breaker_statusCircuit breaker config and current state helios_extensionsInstalled WASM extensions pg_publicationsLogical replication publications pg_subscriptionsLogical replication subscriptions
Observability (3 views)
View Description helios_audit_logTamper-proof audit trail (who did what, when) helios_advisor_recommendationsWorkload advisor suggestions (add index, etc.) pg_cdc_eventsChange data capture event log
Vector (1 view)
View Description pg_vector_index_statsHNSW index build stats, search accuracy
Filter Subsystem (4 views)
View Description pg_smfi_statusSMFI filter lifecycle status pg_smfi_table_statsSMFI per-table filter statistics pg_speculative_filtersSpeculative filter effectiveness pg_access_tracker_statsAccess pattern tracking for filter advisor
View Description helios_dictionaryThis catalog — lists all system views with descriptions
Quick Examples
-- Who has access to what?
SELECT * FROM helios_grants;
-- Is my query OLTP or OLAP?
EXPLAIN ANALYZE SELECT ...; -- shows workload classification
-- What indexes exist and how big are they?
SELECT * FROM helios_index_stats;
SELECT * FROM helios_audit_log;
-- All views in a category
SELECT view_name FROM helios_dictionary WHERE category = ' security ' ;