Is it possible to display other variables/fields in Dashboards, e.g. certificate end date

In SCOM Monitoring display, e.g. State View, it is possible to show the various relevant fields, e.g. valid from, valid to etc. (for PKI Certificates).

Is there a corresponding option in Squared Up? I have been trying various views, but cannot find anything.

1 Like

There's no current way to make sortable columns in the State View, but you can include those attributes in the object label. For example, for the PKI certificate state, if you wanted to show the Cert name, Valid From and Valid To like this:

You would use this custom label:

{{DisplayName}} | {{CertValidFrom}} | {{CertValidTo}}

Hi,

We had a similar requirement to display PKI info at a glace. We use the following on a status plugin to display the CertValidTo property. This will format it into two columns:

<span style=“display:inline-block;width:400px;”>{{Name}}</span><span style=“display:inline-block;width:400px;”>Valid To: {{CertValidTo}}</span>

3 Likes