···2020 const data = await getMonitorListData({
2121 monitorId: String(monitor.id),
2222 timezone: gmt,
2323+ url: monitor.url,
2324 });
24252526 // TODO: we could handle the `statusReports` here instead of passing it down to the tracker
···1414 FROM ping_response_v5
1515 WHERE
1616 monitorId = {{ String(monitorId, '1') }}
1717+ {% if defined(url) %} AND url = {{ String(url) }} {% end %}
1718 AND cronTimestamp
1819 >= toUnixTimestamp64Milli(toDateTime64(now() - INTERVAL 3 HOUR, 3))
1920 GROUP BY cronTimestamp, monitorId
+1
packages/tinybird/pipes/response_details.pipe
···88 FROM ping_response__v7
99 WHERE
1010 monitorId = {{ String(monitorId, '1') }}
1111+ {% if defined(url) %} AND url = {{ String(url) }} {% end %}
1112 AND cronTimestamp = {{ Int64(cronTimestamp, 1706467215188) }}
1213 AND region = {{ String(region, 'ams') }}
1314
+1
packages/tinybird/pipes/response_graph.pipe
···1919 FROM ping_response__v7
2020 WHERE
2121 monitorId = {{ String(monitorId, '1') }}
2222+ {% if defined(url) %} AND url = {{ String(url) }} {% end %}
2223 {% if defined(fromDate) %} AND timestamp >= {{ Int64(fromDate) }} {% end %}
2324 {% if defined(toDate) %} AND timestamp <= {{ Int64(toDate) }} {% end %}
2425 GROUP BY h, region
+1
packages/tinybird/pipes/response_list.pipe
···77 SELECT latency, monitorId, region, statusCode, timestamp, url, workspaceId, cronTimestamp, message
88 FROM ping_response__v7
99 WHERE monitorId = {{ String(monitorId, 'openstatusPing') }}
1010+ {% if defined(url) %} AND url = {{ String(url) }} {% end %}
1011 {% if defined(region) %}
1112 AND region = {{ String(region) }}
1213 {% end %}
···1616 FROM materialized_view_ping_response_45d_ttl__v7
1717 WHERE
1818 monitorId = {{ String(monitorId, '1') }}
1919+ {% if defined(url) %} AND url = {{ String(url) }} {% end %}
1920 AND timestamp
2021 >= toUnixTimestamp64Milli(toDateTime64(now() - INTERVAL {{ Int32(interval, 24) }} HOUR, 3))
2122 GROUP BY region
+1
packages/tinybird/pipes/status_timezone.pipe
···1515 statusCode,
1616 latency
1717 FROM ping_response__v7
1818+ {% if defined(url) %} AND url = {{ String(url) }} {% end %}
1819 WHERE monitorId = {{ String(monitorId, '1') }}
1920 -- by default, we only query the last 45 days
2021 AND cronTimestamp >= toUnixTimestamp64Milli(