cf-k8s-logging contains the portions of cf-for-k8s which enable logging outcomes. See our public roadmap to find out about our current efforts and future plans.
To send all app logs to a destination via syslog you can setup app log destinations in your cf-values.yml file:
app_log_destinations:
#@overlay/append
- host: <hostname>
port: <port_number>
transport: <tls/tcp> #defaults to tls
insecure_disable_tls_validation: <false/true> #defaults false
#@overlay/append
- host: <hostname>
port: <port_number>
transport: <tls/tcp> #defaults to tls
insecure_disable_tls_validation: <false/true> #defaults false
To diagnose issues with Fluentd, you can increase the log level by setting the
environment variable FLUENTD_FLAGS
on Fluentd, like so
env:
- name: "FLUENTD_FLAGS"
value: "-vvv"
-vvv
is the highest logging level
Another way to see what is being sent is by replacing the output with a stdout logger:
<match **>
@type stdout
</match>
Application logs can enter the logging system through two different paths:
Logs from app containers are automatically ingested and egressed from
cf-k8s-logging. App containers are expected to contain cloudfoundry.org/
labels which contain important app information, namely app_guid
and
source_type
.
Cloud Foundry components that wish to emit logs on behalf of apps may do so via the Fluentd forward input. This protocol consists of tagged log messages encoded in MessagePack over TCP. Injected logs will be sent to the same destinations as app container logs, as long as they contain the tags listed below under Log Format.
Logs should be sent to the Fluentd ingress service called
fluentd-forwarder-ingress
at port 24224
over the Fluent forwarding
protocol. This protocol can be implemented using one of the following client libraries:
or by placing a Fluentd/Fluent Bit pod next to the component with a forward
output plugin.
Examples are located in the examples folder.
NOTE: To communicate with the Forwarder API, Istio sidecar injection
must be enabled with the istio-injection=enabled
label in the component's
namespace.
Logs emitted to cf-k8s-logging by system components must include the fields:
app_id
: id of the app for which the logs are being emitted.instance_id
: id of the instance for which the logs are being emitted.source_type
: source type of the logs. eg. STGlog
: log message to emit{"log":"This is a test log from a fluent log producer","app_id":"11111111-1111-1111-1111-111111111111","instance_id":"1", "source_type":"APP"}
./scripts/build-images.sh
, setting $REPOSITORY to a docker
repository you can push to../scripts/bump-cf-for-k8s.sh
.
./scripts/bump-cf-for-k8s.sh
. -- this sets up test dependencies to be installedTEST_API_ENDPOINT
TEST_USERNAME
TEST_PASSWORD
environment variablesTEST_SKIP_SSL
environment variable./hack/run_integration_tests.sh