Hello! Has anyone tried to create a report with the Issuer and Owner of SSL Certificate? We already have a report in format (e.g. Days remaining, SSL certificate (with URL and expiry date) but would it be possible to add another columns (e.g. Cert Name, Issuer, Start Date, Expiry Date, Days Remaining and Owner)

I'm using this query to extract the "current report" shown on the screenshot. Can anyone try to help me to arrange the script?
SELECT
[data].[Application].[Name] AS [SSL GROUP NAME]
,[data].[Name] AS [SSL CERTIFICATE]
,[data].[CurrentStatistics].[ComponentStatisticData] AS [ComponentStatisticData]
,[data].[CurrentStatistics].[ErrorMessage] AS [Message]
,[data].[Application].[Node].[CustomProperties].[Site] AS [SITE]
,[data].[Status] AS [STATUS]
,[data].[InstanceSiteId] AS [InstanceSiteId]
, ADDDATE('day', ROUND(([data].[CurrentStatistics].[ComponentStatisticData]), 0), GETDATE()) AS [EXPIRY DATE]
FROM orion.apm.component AS data
WHERE
(
(([data].[Application].[Name]) LIKE 'SSL Certificate' + '%')
AND
(ROUND([data].[CurrentStatistics].[ComponentStatisticData], 0) <= 2000)
)
ORDER BY
[ComponentStatisticData] DESC