
Renamed: logging.md -> devel/logging.m Renamed: access.md -> design/access.md Renamed: identifiers.md -> design/identifiers.md Renamed: labels.md -> design/labels.md Renamed: namespaces.md -> design/namespaces.md Renamed: security.md -> design/security.md Renamed: networking.md -> design/networking.md Added abbreviated user user-focused document in place of most moved docs. Added docs/README.md explains how docs are organized. Added short, user-oriented documentation on labels Added a glossary. Fixed up some links.
13 lines
670 B
Markdown
13 lines
670 B
Markdown
# Logging
|
|
|
|
## Logging by Kubernetes Components
|
|
Kubernetes components, such as kubelet and apiserver, use the [glog](https://godoc.org/github.com/golang/glog) logging library. Developer conventions for logging severity are described in [devel/logging.md](devel/logging.md).
|
|
|
|
## Logging in Containers
|
|
There are no Kubernetes-specific requirements for logging from within containers. A
|
|
[search](https://www.google.com/?q=docker+container+logging) will turn up any number of articles about logging and
|
|
Docker containers. However, we do provide an example of how to collect, index, and view pod logs [using Elasicsearch and Kibana](./getting-started-guides/logging.md)
|
|
|
|
|
|
|