New Relic Integration with TigerTrust
TigerTrust integrates with New Relic to provide comprehensive certificate observability alongside your application monitoring.
Event Integration
TigerTrust sends custom events to New Relic:
{ "eventType": "TigerTrustCertificate", "certificateId": "cert-123", "commonName": "api.example.com", "issuer": "DigiCert", "daysUntilExpiry": 30, "keySize": 2048, "algorithm": "RSA", "environment": "production", "status": "valid" }
NRQL Queries
Query certificate data with NRQL:
-- Certificates expiring within 30 days SELECT count(*) FROM TigerTrustCertificate WHERE daysUntilExpiry < 30 FACET environment SINCE 1 day ago -- Certificate health by issuer SELECT average(daysUntilExpiry) FROM TigerTrustCertificate FACET issuer TIMESERIES AUTO -- Renewal success rate SELECT percentage(count(*), WHERE status = 'renewed') FROM TigerTrustCertificateEvent WHERE eventType = 'renewal' SINCE 1 week ago
Pre-Built Dashboards
Import TigerTrust dashboards for instant visibility:
- Certificate Inventory Overview
- Expiration Timeline
- Compliance Status
- Renewal Analytics
- Environment Breakdown
Alert Conditions
Set up intelligent certificate alerts:
{ "name": "Certificate Expiring Soon", "type": "static", "nrql": { "query": "SELECT min(daysUntilExpiry) FROM TigerTrustCertificate WHERE environment = 'production'" }, "critical": { "operator": "below", "threshold": 7 }, "warning": { "operator": "below", "threshold": 30 } }
APM Correlation
Correlate certificate events with application performance:
- Link certificate issues to error rates
- Track TLS handshake performance
- Monitor certificate-related latency
- Identify certificate impact on transactions
Infrastructure Agent
Deploy the infrastructure agent for host-level certificate monitoring:
- File system certificate scanning
- Process certificate usage
- Network certificate inspection
- Container certificate discovery
Achieve complete certificate observability with New Relic and TigerTrust.