-- This file and its contents are licensed under the Apache License 2.0. -- Please see the included NOTICE for copyright information and -- LICENSE-APACHE for a copy of the license. CREATE SCHEMA IF NOT EXISTS timescaledb_information; -- Convenience view to list all hypertables and their space usage CREATE OR REPLACE VIEW timescaledb_information.hypertable AS SELECT ht.schema_name AS table_schema, ht.table_name, t.tableowner AS table_owner, ht.num_dimensions, (SELECT count(1) FROM _timescaledb_catalog.chunk ch WHERE ch.hypertable_id=ht.id ) AS num_chunks, size.table_size, size.index_size, size.toast_size, size.total_size FROM _timescaledb_catalog.hypertable ht LEFT OUTER JOIN pg_tables t ON ht.table_name=t.tablename AND ht.schema_name=t.schemaname LEFT OUTER JOIN LATERAL @extschema@.hypertable_relation_size_pretty( CASE WHEN has_schema_privilege(ht.schema_name,'USAGE') THEN format('%I.%I',ht.schema_name,ht.table_name) ELSE NULL END ) size ON true; CREATE OR REPLACE VIEW timescaledb_information.license AS SELECT _timescaledb_internal.license_edition() as edition, _timescaledb_internal.license_expiration_time() <= now() AS expired, _timescaledb_internal.license_expiration_time() AS expiration_time; CREATE OR REPLACE VIEW timescaledb_information.drop_chunks_policies as SELECT format('%1$I.%2$I', ht.schema_name, ht.table_name)::regclass as hypertable, p.older_than, p.cascade, p.job_id, j.schedule_interval, j.max_runtime, j.max_retries, j.retry_period, p.cascade_to_materializations FROM _timescaledb_config.bgw_policy_drop_chunks p INNER JOIN _timescaledb_catalog.hypertable ht ON p.hypertable_id = ht.id INNER JOIN _timescaledb_config.bgw_job j ON p.job_id = j.id; CREATE OR REPLACE VIEW timescaledb_information.reorder_policies as SELECT format('%1$I.%2$I', ht.schema_name, ht.table_name)::regclass as hypertable, p.hypertable_index_name, p.job_id, j.schedule_interval, j.max_runtime, j.max_retries, j.retry_period FROM _timescaledb_config.bgw_policy_reorder p INNER JOIN _timescaledb_catalog.hypertable ht ON p.hypertable_id = ht.id INNER JOIN _timescaledb_config.bgw_job j ON p.job_id = j.id; CREATE OR REPLACE VIEW timescaledb_information.policy_stats as SELECT format('%1$I.%2$I', ht.schema_name, ht.table_name)::regclass as hypertable, p.job_id, j.job_type, js.last_run_success, js.last_finish, js.last_start, js.next_start, js.total_runs, js.total_failures FROM (SELECT job_id, hypertable_id FROM _timescaledb_config.bgw_policy_reorder UNION SELECT job_id, hypertable_id FROM _timescaledb_config.bgw_policy_drop_chunks) p INNER JOIN _timescaledb_catalog.hypertable ht ON p.hypertable_id = ht.id INNER JOIN _timescaledb_config.bgw_job j ON p.job_id = j.id INNER JOIN _timescaledb_internal.bgw_job_stat js on p.job_id = js.job_id ORDER BY ht.schema_name, ht.table_name; -- views for continuous aggregate queries --- CREATE OR REPLACE VIEW timescaledb_information.continuous_aggregates as SELECT format('%1$I.%2$I', cagg.user_view_schema, cagg.user_view_name)::regclass as view_name, viewinfo.viewowner as view_owner, CASE _timescaledb_internal.get_time_type(cagg.raw_hypertable_id) WHEN 'TIMESTAMP'::regtype THEN _timescaledb_internal.to_interval(cagg.refresh_lag)::TEXT WHEN 'TIMESTAMPTZ'::regtype THEN _timescaledb_internal.to_interval(cagg.refresh_lag)::TEXT WHEN 'DATE'::regtype THEN _timescaledb_internal.to_interval(cagg.refresh_lag)::TEXT ELSE cagg.refresh_lag::TEXT END AS refresh_lag, bgwjob.schedule_interval as refresh_interval, CASE _timescaledb_internal.get_time_type(cagg.raw_hypertable_id) WHEN 'TIMESTAMP'::regtype THEN _timescaledb_internal.to_interval(cagg.max_interval_per_job)::TEXT WHEN 'TIMESTAMPTZ'::regtype THEN _timescaledb_internal.to_interval(cagg.max_interval_per_job)::TEXT WHEN 'DATE'::regtype THEN _timescaledb_internal.to_interval(cagg.max_interval_per_job)::TEXT ELSE cagg.max_interval_per_job::TEXT END AS max_interval_per_job, format('%1$I.%2$I', ht.schema_name, ht.table_name)::regclass as materialization_hypertable, directview.viewdefinition as view_definition FROM _timescaledb_catalog.continuous_agg cagg, _timescaledb_catalog.hypertable ht, LATERAL ( select C.oid, pg_get_userbyid( C.relowner) as viewowner FROM pg_class C LEFT JOIN pg_namespace N on (N.oid = C.relnamespace) where C.relkind = 'v' and C.relname = cagg.user_view_name and N.nspname = cagg.user_view_schema ) viewinfo, LATERAL ( select schedule_interval FROM _timescaledb_config.bgw_job where id = cagg.job_id ) bgwjob, LATERAL ( select pg_get_viewdef(C.oid) as viewdefinition FROM pg_class C LEFT JOIN pg_namespace N on (N.oid = C.relnamespace) where C.relkind = 'v' and C.relname = cagg.direct_view_name and N.nspname = cagg.direct_view_schema ) directview WHERE cagg.mat_hypertable_id = ht.id; CREATE OR REPLACE VIEW timescaledb_information.continuous_aggregate_stats as SELECT format('%1$I.%2$I', cagg.user_view_schema, cagg.user_view_name)::regclass as view_name, CASE _timescaledb_internal.get_time_type(cagg.raw_hypertable_id) WHEN 'TIMESTAMP'::regtype THEN _timescaledb_internal.to_timestamp_without_timezone(ct.watermark)::TEXT WHEN 'TIMESTAMPTZ'::regtype THEN _timescaledb_internal.to_timestamp(ct.watermark)::TEXT WHEN 'DATE'::regtype THEN _timescaledb_internal.to_date(ct.watermark)::TEXT ELSE ct.watermark::TEXT END AS completed_threshold, CASE _timescaledb_internal.get_time_type(cagg.raw_hypertable_id) WHEN 'TIMESTAMP'::regtype THEN _timescaledb_internal.to_timestamp_without_timezone(it.watermark)::TEXT WHEN 'TIMESTAMPTZ'::regtype THEN _timescaledb_internal.to_timestamp(it.watermark)::TEXT WHEN 'DATE'::regtype THEN _timescaledb_internal.to_date(it.watermark)::TEXT ELSE it.watermark::TEXT END AS invalidation_threshold, cagg.job_id as job_id, bgw_job_stat.last_start as last_run_started_at, case when bgw_job_stat.last_finish < '4714-11-24 00:00:00+00 BC' then 'running' when bgw_job_stat.next_start is not null then 'scheduled' end as job_status, case when bgw_job_stat.last_finish > bgw_job_stat.last_start then (bgw_job_stat.last_finish - bgw_job_stat.last_start) end as last_run_duration, bgw_job_stat.next_start as next_scheduled_run FROM _timescaledb_catalog.continuous_agg as cagg LEFT JOIN _timescaledb_internal.bgw_job_stat as bgw_job_stat ON ( cagg.job_id = bgw_job_stat.job_id ) LEFT JOIN _timescaledb_catalog.continuous_aggs_invalidation_threshold as it ON ( cagg.raw_hypertable_id = it.hypertable_id) LEFT JOIN _timescaledb_catalog.continuous_aggs_completed_threshold as ct ON ( cagg.mat_hypertable_id = ct.materialization_id); GRANT USAGE ON SCHEMA timescaledb_information TO PUBLIC; GRANT SELECT ON ALL TABLES IN SCHEMA timescaledb_information TO PUBLIC;