Skip to content

Commit

Permalink
ref(uptime): use new v2 table in storage (#6761)
Browse files Browse the repository at this point in the history
use new table created in #6758
for uptime in snuba
  • Loading branch information
JoshFerge authored Jan 14, 2025
1 parent 03c1448 commit 5ffa3c9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ schema:
{ name: environment, type: String, args: { schema_modifiers: [nullable, low_cardinality] } },
{ name: uptime_subscription_id, type: UUID },
{ name: uptime_check_id, type: UUID },
{ name: scheduled_check_time, type: DateTime64, args: { precision: 3 } },
{ name: scheduled_check_time, type: DateTime },
{ name: timestamp, type: DateTime64, args: { precision: 3 } },
{ name: duration_ms, type: UInt, args: { size: 64 } },
{ name: region_slug, type: String, args: { schema_modifiers: [low_cardinality] } },
{ name: region, type: String, args: { schema_modifiers: [low_cardinality] } },
{ name: check_status, type: String, args: { schema_modifiers: [low_cardinality] } },
{ name: check_status_reason, type: String, args: { schema_modifiers: [low_cardinality] } },
{ name: http_status_code, type: UInt, args: { size: 16, schema_modifiers: [nullable] } },
{ name: trace_id, type: UUID },
{ name: retention_days, type: UInt, args: { size: 16 } },
]
local_table_name: uptime_monitor_checks_local
dist_table_name: uptime_monitor_checks_dist
local_table_name: uptime_monitor_checks_v2_local
dist_table_name: uptime_monitor_checks_v2_dist


mandatory_condition_checkers:
Expand Down

0 comments on commit 5ffa3c9

Please sign in to comment.