logging-k8s-metadata
Project description
logging-k8s-metadata
Enriches log records with kubernetes metadata
Getting started
Installation
Install library:
pip install logging-k8s-metadata
Usage
Call setup_logging_k8s_pod_info() method to set up logger factory.
Expose k8s metadata
Logger factory provided by this lib enriches log records with kubernetes
metadata read from /etc/podinfo directory which should be exposed by pod. See
Expose Pod Information to Containers Through Files
for details.
Configure your deployment and add podinfo metadata volume.
Example deployment.yaml with metadata volumes:
apiVersion: apps/v1
kind: Deployment
spec:
template:
spec:
containers:
volumeMounts:
- name: podinfo
mountPath: /etc/podinfo
volumes:
- name: podinfo
downwardAPI:
items:
- path: "name"
fieldRef:
fieldPath: metadata.name
- path: "namespace"
fieldRef:
fieldPath: metadata.namespace
- path: "labels"
fieldRef:
fieldPath: metadata.labels
- path: "annotations"
fieldRef:
fieldPath: metadata.annotations
Development
For standalone library development install requirements:
pip install -r requirements/dev.txt
or install from local repo in developer mode in other project:
pip install -e ../logging-k8s-metadata
Test
pytest
Release
Set version in git tags to release. Always include a patch version to work correctly (ex: 1.2.0, even if patch is 0). After git tag is set, CI will build and publish library on PYPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file logging_k8s_metadata-1.0.3-py3-none-any.whl.
File metadata
- Download URL: logging_k8s_metadata-1.0.3-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dee622161dde3bba59f8caa48b620c0932032b53da886586564466602c7fb36
|
|
| MD5 |
f2232ebad9d8d8b2b623a6d2479300a5
|
|
| BLAKE2b-256 |
bcb2904c78d3ebdd17a1b46a9d0817c9ecd22a895e615f0b3067e704b11d6297
|