|
| 1 | +External Task Logging to Elasticsearch Demo |
| 2 | +=== |
| 3 | + |
| 4 | +This demo packages Jenkins WAR for External Task Logging to Elasticsearch with help of Logstash plugin. |
| 5 | + |
| 6 | +This demo includes [Logstash Plugin PR#18](https://github.com/jenkinsci/logstash-plugin/pull/18) and |
| 7 | +all its upstream dependencies. |
| 8 | +It also bundles auto-configuration System Groovy scripts, so that the WAR file starts |
| 9 | +up with pre-configured Logstash plugin settings and some other configs. |
| 10 | + |
| 11 | +Features of the demo: |
| 12 | + |
| 13 | +* Pipeline jobs logging goes to Elasticsearch |
| 14 | +* When tasks are executed on agents, the logs get posted to Elasticsearch directly |
| 15 | + without passing though the master and causing scalability issues |
| 16 | +* Pipeline jobs override standard Log actions in the Jenkins core, so the |
| 17 | + underlying implementation is transparent to users |
| 18 | +* Secrets are escaped in stored/displayed logs when running on master and agents. |
| 19 | +* Console annotations work as they work for common Jenkins instances |
| 20 | +* Log blocks are collapsible in the _Console_ screen |
| 21 | +* Origin container ID of every message is visible in Kibana (if you have set that up) via sender field |
| 22 | + |
| 23 | +The demo can be run in Docker Compose, |
| 24 | +ELK stack is provided by the [sebp/elk](https://hub.docker.com/r/sebp/elk/) image in this case. |
| 25 | + |
| 26 | +## Prerequisites |
| 27 | + |
| 28 | +* Docker and Docker Compose are installed |
| 29 | + |
| 30 | +## Building demo |
| 31 | + |
| 32 | +To build the demo... |
| 33 | + |
| 34 | +1. Go to the repository root, run `mvn clean package` to build Jenkins Custom WAR Packager |
| 35 | +2. Change directory to the demo root |
| 36 | +3. Run `make build` |
| 37 | + |
| 38 | +First build may take a while, because the packager will need to checkout and build |
| 39 | +many repositories. |
| 40 | + |
| 41 | +## Running demo |
| 42 | + |
| 43 | +1. Run `make run`. It will spin up the demo with predefined environment. |
| 44 | + Jenkins will be available on the port 8080, credentials: `admin/admin` |
| 45 | +2. If you want to run demo jobs on the agent, |
| 46 | +also run `docker-compose up agent` in a separate terminal window |
| 47 | +3. In order to access the instance, use the "admin/admin" credentials. |
| 48 | +4. Run one of the demo jobs. |
| 49 | +5. Browse logs |
| 50 | + * Classic Log action queries data from Elasticsearch |
| 51 | + * There is a _Log (Kibana)_ action in runs, which shows Kibana. |
| 52 | + * In order to see Kibana logs, you will need to configure the default index in the |
| 53 | + embedded page once Jenkins starts up. Use `logstash/` as a default index and |
| 54 | + `@timestamp` as data source |
| 55 | + |
| 56 | +## Manual run |
| 57 | + |
| 58 | +This guideline allows to run the demo locally. |
| 59 | +Only Logstash will be preconfigured. |
| 60 | + |
| 61 | +1. Run `docker run -p 5601:5601 -p 9200:9200 -p 5044:5044 -it --name elk sebp/elk:es241_l240_k461` |
| 62 | +to start the Docker container to to expose ports |
| 63 | +2. Run Jenkins using `JENKINS_HOME=$(pwd)/work java -jar tmp/output/target/external-task-logging-elk-2.107.3-elk-SNAPSHOT.war --httpPort=8080 --prefix=/jenkins` |
| 64 | +(or just `run run.sh`). |
| 65 | + * If needed, the demo can be configured by setting system properties |
| 66 | + * `elasticsearch.host` - host, defaults to `http://elk` |
| 67 | + * `elasticsearch.port` - Elasticsearch port, defaults to `9200` |
| 68 | + * `logstash.key` - Path to the root index/key for logging, defaults to `/logstash/logs` |
| 69 | + * `elasticsearch.username` and `elasticsearch.password` - |
| 70 | +3. Pass through the installation Wizard |
| 71 | +4. Create a Pipeline job with some logging (e.g. `echo` commands), run it |
| 72 | +5. Browse logs (see above) |
0 commit comments