1 Star 0 Fork 0

O-RAN-SC / com-golog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

Logging Library with MDC support

A Golang implementation of a structured logging library with Mapped Diagnostics Context (MDC) support.

Overview

Initialization

A new logger instance is created with InitLogger function. Process identity is given as a parameter.

Mapped Diagnostics Context

The MDCs are key-value pairs, which are included to all log entries by the library. The MDC pairs are logger instance specific.

The idea of the MDC is to define values, which stay the same over multiple log writings. An MDC value set once will appear in all the subsequent logs written with the logger instance.

A logger instance can be shared by several goroutines. Respectively, also the MDC values of the logger instance are then shared by them. When sharing of the MDCs is not desired, separate logger instances should be used.

Log entry format

Each log entry written the library contains

  • Timestamp
  • Logger identity
  • Log entry severity
  • MDC pairs of the logger instance
  • Log message text

Currently the library only supports JSON formatted output written to standard out of the process

Example log output

{"ts":1551183682974,"crit":"INFO","id":"myprog","mdc":{"second key":"other value","mykey":"keyval"},"msg":"hello world!"}

Example

package main

import (
	mdcloggo "gerrit.o-ran-sc.org/r/com/golog"
)

func main() {
	logger, _ := mdcloggo.InitLogger("myname")
	logger.MdcAdd("mykey", "keyval")
    logger.Info("Some test logs")
}

License

Copyright (c) 2019 AT&T Intellectual Property. Copyright (c) 2018-2019 Nokia.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

This source code is part of the near-RT RIC (RAN Intelligent Controller) platform project (RICP).

CI

The Dockerfile in the ci directory only runs, when build, the unit tests for the repository.

空文件

简介

Mirror of https://gerrit.o-ran-sc.org/r/com/golog.git 展开 收起
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/o-ran-sc/com-golog.git
git@gitee.com:o-ran-sc/com-golog.git
o-ran-sc
com-golog
com-golog
master

搜索帮助