You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`SW_KAFKA_REPORTER_BOOTSTRAP_SERVERS`| A list of host/port pairs to use for establishing the initial connection to the Kafka cluster. It is in the form host1:port1,host2:port2,... |`localhost:9092`|
29
29
|`SW_KAFKA_REPORTER_TOPIC_MANAGEMENT`| Specifying Kafka topic name for service instance reporting and registering. |`skywalking-managements`|
30
30
|`SW_KAFKA_REPORTER_TOPIC_SEGMENT`| Specifying Kafka topic name for Tracing data. |`skywalking-segments`|
31
+
|`SW_KAFKA_REPORTER_TOPIC_LOG`| Specifying Kafka topic name for Log data. |`skywalking-logs`|
31
32
|`SW_KAFKA_REPORTER_CONFIG_key`| The configs to init KafkaProducer. it support the basic arguments (whose type is either `str`, `bool`, or `int`) listed [here](https://kafka-python.readthedocs.io/en/master/apidoc/KafkaProducer.html#kafka.KafkaProducer)| unset |
32
33
|`SW_CELERY_PARAMETERS_LENGTH`| The maximum length of `celery` functions parameters, longer than this will be truncated, 0 turns off |`512`|
33
34
|`SW_AGENT_PROFILE_ACTIVE`| If `True`, Python agent will enable profile when user create a new profile task. Otherwise disable profile. |`False`|
34
35
|`SW_PROFILE_TASK_QUERY_INTERVAL`| The number of seconds between two profile task query. |`20`|
35
36
|`SW_AGENT_LOG_REPORTER_ACTIVE`| If `True`, Python agent will report collected logs to the OAP or Satellite. Otherwise, it disables the feature. |`False`|
36
37
|`SW_AGENT_LOG_REPORTER_BUFFER_SIZE`| The maximum queue backlog size for sending log data to backend, logs beyond this are silently dropped. |`10000`|
37
38
|`SW_AGENT_LOG_REPORTER_LEVEL`| This config specifies the logger levels of concern, any logs with a level below the config will be ignored. |`WARNING`|
38
-
|`SW_AGENT_LOG_IGNORE_FILTER`| This config customizes whether to ignore the application-defined logger filters, if `True`, all logs are reported disregarding any filter rules. |`False`|
39
+
|`SW_AGENT_LOG_REPORTER_IGNORE_FILTER`| This config customizes whether to ignore the application-defined logger filters, if `True`, all logs are reported disregarding any filter rules. |`False`|
39
40
|`SW_AGENT_LOG_REPORTER_FORMATTED`| If `True`, the log reporter will transmit the logs as formatted. Otherwise, puts logRecord.msg and logRecord.args into message content and tags(`argument.n`), respectively. Along with an `exception` tag if an exception was raised. |`True`|
40
41
|`SW_AGENT_LOG_REPORTER_LAYOUT`| The log reporter formats the logRecord message based on the layout given. |`%(asctime)s [%(threadName)s] %(levelname)s %(name)s - %(message)s`|
41
42
|`SW_AGENT_CAUSE_EXCEPTION_DEPTH`| This config limits agent to report up to `limit` stacktrace, please refer to [Python traceback](https://docs.python.org/3/library/traceback.html#traceback.print_tb) for more explanations. |`5`|
0 commit comments