To get list of Urls and theirs statuses -regardless application it is assigned to, or template it belongs to -
you can use Custom Table with advanced database query like this:
SELECT cs.Value AS Url, c.Name, c.ComponentType, c.Status, c.StatusDescription
FROM Orion.APM.Component c,
Orion.APM.ComponentTemplate ct,
Orion.APM.ComponentDefinition cd,
Orion.APM.ComponentSetting cs
WHERE c.TemplateID = ct.ID
AND ct.ComponentType = cd.ComponentType
AND cs.ComponentID = c.ComponentID
AND cd.Name = 'HTTPS Monitor'
AND cs.Key = 'Url'