I believe that maybe these instances with NULL version are running CHT <3.9 which is before the monitoring API was introduced?
We can run this query to get all instances with and with out a version:
select
mu.url as url,
-- mu.partner_name as partner,
max(md.created) as created,
max(md.doc#>>'{version,app}') as version
from
monitoring_urls mu
left join monitoring_docs md on
md.url_id = mu.id
where
enabled = true
group by
url
order by
version
These are the ones WITH a version, which is nice to see:
For those instances running versions prior to 3.9, you'll need to enable basic analysis for the domain. this requires access level 2 (offline user account)
I believe that maybe these instances with
NULL
version are running CHT <3.9 which is before the monitoring API was introduced?We can run this query to get all instances with and with out a version:
These are the ones WITH a version, which is nice to see:
And these are the instances with
NULL
for a version: