fluent / fluent/fluent-logger-python
Feature Request: Allow relativeCreated to be formatted as seconds instead of milliseconds
- 主要语言
- Python
- 星标
- 457
- 派生
- 138
- PR 合并指标
- 30 天内没有已合并 PR
描述
Python LogRecord has the attribute[ `relativeCreated`](https://docs.python.org/3/library/logging.html#logrecord-attributes)
> Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded.
It's currently possible to use FluentRecordFormatter to include that in the fluent events
```
version: 1
formatters:
fluent_fmt:
'()': fluent.handler.FluentRecordFormatter
format:
"host.hostname": '%(hostname)s'
"host.id": '%(hostname)s'
"host.uptime": '%(relativeCreated)d'
"log.logger": '%(name)s'
"log.level": '%(levelname)s'
"log.origin.file.name": '%(pathname)s'
"log.origin.file.line": '%(lineno)d'
"log.origin.function": '%(funcName)s'
```
but relativeCreated is in milliseconds, it would be very convenient to be able to convert that to seconds right in FluentRecordFormatter hence this feature request, please considering allowing something like
```
"host.uptime": '%(relativeCreatedInSeconds)d'
```
were the `relativeCreatedInSeconds` would be something added by FluentRecordFormatter.
贡献指南
这个仓库没有索引到贡献指南
调研方向
首先阅读 FluentRecordFormatter 和 Python 的 LogRecord relativeCreated 属性,以了解 formatter 字段是如何解析的。当可以在所示配置中使用 relativeCreatedInSeconds 字段,并以秒为单位生成相对创建时间时,此功能即完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- observability-sre
- Issue 类型
- 功能
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 42/100