feat: enterprise audit fixes (schema resolution, race conditions, documentation)
This commit is contained in:
@@ -32,9 +32,16 @@ INSERT INTO partitions.config (table_name, period, keep_history) VALUES
|
||||
('history_uint', 'day', '30 days'),
|
||||
('history_str', 'day', '30 days'),
|
||||
('history_log', 'day', '30 days'),
|
||||
('history_text', 'day', '30 days')
|
||||
('history_text', 'day', '30 days'),
|
||||
('history_bin', 'day', '30 days')
|
||||
ON CONFLICT (table_name) DO NOTHING;
|
||||
|
||||
-- Zabbix 8.0+ only: Uncomment the following lines if running Zabbix 8.0 or later
|
||||
-- INSERT INTO partitions.config (table_name, period, keep_history) VALUES
|
||||
-- ('history_json', 'day', '30 days')
|
||||
-- ON CONFLICT (table_name) DO NOTHING;
|
||||
|
||||
|
||||
-- Trends tables: Monthly partitions, keep 12 months
|
||||
INSERT INTO partitions.config (table_name, period, keep_history) VALUES
|
||||
('trends', 'month', '12 months'),
|
||||
|
||||
Reference in New Issue
Block a user