cmdReporter Wiki

Open navigation

Kafka Logging

Kafka-specific Remote Logging Preferences

Overview

This article describes the preference keys available to configure the cmdReporter Kafka interface.


Kafka Operation Preferences

KeyValue TypeSample ValueFunction
LogRemoteEndpointEnabledbooltrueEnable network transmission of log data
LogRemoteEndpointTypeStringKafkaType of remote log aggregation server
LogRemoteEndpointURLStringssl://server.address:9093URL where log data is to be sent. Applies to all remote logging types.
LogRemoteEndpointKafkaDictionary-Container dictionary for Kafka preferences.

TLSServerCertificateArray of Strings
server_name.company.com
Let's Encrypt Authority X3
DST Root CA X3
(Required) Common names of Public TLS certificate chain stored in system keychain. Mapped to Kafka-internal setting "ssl.ca.location" cmdReporter handles transformation to file path.

TLSClientPrivateKeyString(See example plist below)(Optional) Decrypted and password-less client private key in pem format. Mapped to Kafka-internal setting "ssl.key.location" cmdReporter handles transformation to file path.

TLSClientCertificateString(See example plist below)(Optional) common names of client certificates stored in the system keychain. Mapped to Kafka-internal setting "ssl.certificate.location" cmdReporter handles transformation to file path.

TopicNameStringcmdReporter(Optional) Defaults to "cmdReporter"


Kafka Example Full Configuration

<!-- This configuration is for server TLS connections without authentication -->
<key>LogRemoteEndpointEnabled</key>
<true/>
<key>LogRemoteEndpointURL</key>
<string>ssl://server_name.company.com:9093</string>
<key>LogRemoteEndpointType</key>
<string>Kafka</string>
<key>LogRemoteEndpointKafka</key>
<dict>
  <key>TopicName</key>
  <string>cmdReporter</string>
  <key>TLSServerCertificate</key>
  <array>
    <string>server_name.company.com</string>
    <string>Let's Encrypt Authority X3</string>
    <string>DST Root CA X3</string>
  </array>
</dict>

Kafka TLS Certificate Configuration Details

See http://kafka.apache.org/documentation.html#security_ssl for more information on using SSL connections to Kafka brokers and detailed information on how to generate the proper certificates.

<key>LogRemoteEndpointKafka</key>
<dict>
  <key>TLSServerCertificate</key>
  <array>
    <string>server_name.company.com</string>
    <string>Let's Encrypt Authority X3</string>
    <string>DST Root CA X3</string>
  </array>
  <key>TLSClientPrivateKey</key>
  <string>-----BEGIN CERTIFICATE-----
{variable sized random bytes}
-----END CERTIFICATE-----</string>

  <key>TLSClientCertificate</key>
    <array>
    <string>client certificate CN</string>
  </array>

  <key>TopicName</key>
  <string>cmdReporter</string>
</dict>


Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.