sudipkpmg / camel-karaf-log-s2i

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Karaf Camel Log QuickStart

This quickstart shows a simple Apache Camel application that logs a message to the server log every 5th second.

This example is implemented using solely the XML DSL (there is no Java code). The source code is provided in the following XML file src/main/resources/OSGI-INF/blueprint/camel-log.xml. It also shows how Karaf assembly files can be overridden using resources from src/main/resources/assembly/. The included sample log file etc/org.ops4j.pax.logging.cfg sets the log level to DEBUG.

Building

The example can be built with

mvn clean install

Running the example in OpenShift

It is assumed that:

The example can be built and deployed using:

mvn fabric8:deploy

When the example runs in fabric8, you can use the OpenShift client tool to inspect the status

To list all the running pods:

oc get pods

Then find the name of the pod that runs this quickstart, and output the logs from the running pods with:

oc logs <name of pod>

You can also use the openshift web console to manage the running pods, and view logs and much more.

About