Configure TLS settings for the exporter. If omitted, system default TLS settings are used.

interface HttpTlsConfigModel {
    ca_file?: string;
    cert_file?: string;
    key_file?: string;
}

Properties

ca_file?: string

Configure certificate used to verify a server's TLS credentials. Absolute path to certificate file in PEM format. If omitted or null, system default certificate verification is used for secure connections.

cert_file?: string

Configure mTLS client certificate. Absolute path to client certificate file in PEM format. If set, .client_key must also be set. If omitted or null, mTLS is not used.

key_file?: string

Configure mTLS private client key. Absolute path to client key file in PEM format. If set, .client_certificate must also be set. If omitted or null, mTLS is not used.