Fix alert hash table definition (#17196)
Fix alert_hash table
Stelios Fragkakis committed
Mar 19, 2024 at 12:22 UTC
9d76a167f8d3a53ad03a59b5e3a873273bad5e8e
1 file changed
+2
-1
src/database/sqlite/sqlite_metadata.c
+2
-1
@@ -35,7 +35,8 @@ const char *database_config[] = {
35
"every text, units text, calc text, families text, plugin text, module text, charts text, green text, "
36
"red text, warn text, crit text, exec text, to_key text, info text, delay text, options text, "
37
"repeat text, host_labels text, p_db_lookup_dimensions text, p_db_lookup_method text, p_db_lookup_options int, "
38
- "p_db_lookup_after int, p_db_lookup_before int, p_update_every int, source text, chart_labels text, summary text)",
38
+ "p_db_lookup_after int, p_db_lookup_before int, p_update_every int, source text, chart_labels text, "
39
+ "summary text, time_group_condition INT, time_group_value DOUBLE, dims_group INT, data_source INT)",
40
41
"CREATE TABLE IF NOT EXISTS host_info(host_id blob, system_key text NOT NULL, system_value text NOT NULL, "
42
"date_created INT, PRIMARY KEY(host_id, system_key))",