mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-18 11:45:11 +08:00
Refactor the telemetry function and format to include stats broken down on common relation types. The types include: - Tables - Partitioned tables - Hypertables - Distributed hypertables - Continuous aggregates - Materialized views - Views and for each of these types report (when applicable): - Total number of relations - Total number of children/chunks - Total data volume (broken into heap, toast, and indexes). - Compression stats - PG stats, like reltuples The telemetry function has also been refactored to return `jsonb` instead of `text`. This makes it easier to query and manipulate the resulting JSON format, and also gives cleaner output. Closes #3932
49 lines
1.6 KiB
C
49 lines
1.6 KiB
C
/*
|
|
* 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.
|
|
*/
|
|
#ifndef TIMESCALEDB_EXTENSION_CONSTANTS_H
|
|
#define TIMESCALEDB_EXTENSION_CONSTANTS_H
|
|
|
|
/* No function definitions here, only potentially globally available defines as this is used by the
|
|
* loader*/
|
|
|
|
#define EXTENSION_NAME "timescaledb"
|
|
#define EXTENSION_FDW_NAME "timescaledb_fdw"
|
|
#define TSL_LIBRARY_NAME "timescaledb-tsl"
|
|
#define TS_LIBDIR "$libdir/"
|
|
#define EXTENSION_SO TS_LIBDIR "" EXTENSION_NAME
|
|
#define EXTENSION_TSL_SO TS_LIBDIR TSL_LIBRARY_NAME "-" TIMESCALEDB_VERSION_MOD
|
|
|
|
#define MAX_VERSION_LEN (NAMEDATALEN + 1)
|
|
#define MAX_SO_NAME_LEN \
|
|
(8 + NAMEDATALEN + 1 + MAX_VERSION_LEN) /* "$libdir/"+extname+"-"+version \
|
|
* */
|
|
|
|
typedef enum TsExtensionSchemas
|
|
{
|
|
TS_CATALOG_SCHEMA,
|
|
TS_INTERNAL_SCHEMA,
|
|
TS_CACHE_SCHEMA,
|
|
TS_CONFIG_SCHEMA,
|
|
TS_EXPERIMENTAL_SCHEMA,
|
|
TS_INFORMATION_SCHEMA,
|
|
_TS_MAX_SCHEMA,
|
|
} TsExtensionSchemas;
|
|
|
|
#define NUM_TIMESCALEDB_SCHEMAS _TS_MAX_SCHEMA
|
|
|
|
#define CATALOG_SCHEMA_NAME "_timescaledb_catalog"
|
|
#define INTERNAL_SCHEMA_NAME "_timescaledb_internal"
|
|
#define CACHE_SCHEMA_NAME "_timescaledb_cache"
|
|
#define CONFIG_SCHEMA_NAME "_timescaledb_config"
|
|
#define EXPERIMENTAL_SCHEMA_NAME "timescaledb_experimental"
|
|
#define INFORMATION_SCHEMA_NAME "timescaledb_information"
|
|
|
|
extern const char *const ts_extension_schema_names[];
|
|
|
|
#define RENDEZVOUS_BGW_LOADER_API_VERSION "timescaledb.bgw_loader_api_version"
|
|
|
|
#endif /* TIMESCALEDB_EXTENSION_CONSTANTS_H */
|