LogOpenTelemetry¶
dotflow.providers.log_opentelemetry.LogOpenTelemetry
¶
Bases: Log
Import
You can import the LogOpenTelemetry class with:
from dotflow.providers import LogOpenTelemetry
Example
class dotflow.providers.log_opentelemetry.LogOpenTelemetry
from dotflow import Config, DotFlow
from dotflow.providers import LogOpenTelemetry
config = Config(
log=LogOpenTelemetry(service_name="my-pipeline"),
)
workflow = DotFlow(config=config)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
service_name
|
str
|
The service name used in the OpenTelemetry logger. |
'dotflow'
|
level
|
str
|
Minimum log level. One of DEBUG, INFO, WARNING, ERROR. Defaults to INFO. |
'INFO'
|
output
|
str
|
Log destination. One of console, file, both. Defaults to console. |
'console'
|
path
|
str
|
Path to the log file. Only used when output is file or both. Defaults to .output/flow.log. |
str(LOG_PATH)
|
format
|
str
|
Message format. One of simple, json. Defaults to simple. |
'simple'
|
Source code in dotflow/providers/log_opentelemetry.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | |
__init__(service_name='dotflow', level='INFO', output='console', path=str(settings.LOG_PATH), format='simple')
¶
Source code in dotflow/providers/log_opentelemetry.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | |