OpenStack CI log processing tool
Go to file
Daniel Pawlik 3ac0c035e8
Make some test queries do by using admin; change index output
The es_username is used by the logsender to push data to the OpenSearch.
Currently, the tests are using admin user to do that, but in the future
it will be replaced by dedidacated user, that will have limited access.
This commit is providing new variables just for the current tests to
execute command as admin user.
Also this commit also fix an issue when the es_index_prefix is set.

Change-Id: I4759f6ee009e3ef32160a79f9da742a78576161e
2024-04-30 14:06:49 +02:00
ansible Make some test queries do by using admin; change index output 2024-04-30 14:06:49 +02:00
doc Remove log gearman functionality 2024-03-14 12:27:47 +00:00
logscraper Ignore change number when its not provided 2024-03-15 15:48:53 +01:00
opensearch-config Add information about CloudFormation status on AWS 2024-01-10 16:46:30 +01:00
opensearch-dashboards-objects Add Opensearch dashboards backup script; add dashboards objects 2023-01-17 11:11:42 +01:00
roles Make some test queries do by using admin; change index output 2024-04-30 14:06:49 +02:00
.gitignore Initial project commit 2021-11-16 11:50:55 +01:00
.gitreview Added .gitreview 2021-10-26 15:01:01 +00:00
.stestr.conf Initial project commit 2021-11-16 11:50:55 +01:00
.yamllint Add job for validating logscraper and log gearman services 2021-12-01 11:05:11 +01:00
.zuul.yaml Drop playbook for veryfing old workflow; rename playbook 2024-04-26 08:34:51 +02:00
Dockerfile Set the base_python version to 3.11 2024-03-15 10:36:57 +01:00
LICENSE Initial project commit 2021-11-16 11:50:55 +01:00
README.rst Drop playbook for veryfing old workflow; rename playbook 2024-04-26 08:34:51 +02:00
requirements.txt Remove log gearman functionality 2024-03-14 12:27:47 +00:00
setup.cfg Add Opensearch dashboards backup script; add dashboards objects 2023-01-17 11:11:42 +01:00
setup.py Use configparser to read configuration file 2023-02-01 09:35:42 +01:00
test-requirements.txt Add ansible role that is configuring logscraper 2021-11-23 08:26:20 +01:00
tox.ini Change tox environment to py3 instead of py38 2023-01-27 11:27:56 +01:00

README.rst

OpenStack CI log processing

The goal of this repository is to provide and check functionality of new log processing system base on zuul log scraper tool.

Log Scraper

The Log Scraper tool is responsible for periodical check by using Zuul CI API if there are new builds available and if there are some, it would push the informations to the log processing system.

Log Sender

The Zuul Log Sender tool is responsible for periodical check directory, if there are some files that should be send to the Elasticsearch service. NOTE: build directories that does not provide files buildinfo and inventory.yaml file are skipped.

Opensearch Dashboards Backup

The OpenSearch Dashboards Backup script helps to create OpenSearch Dashboards objects versioning.

Available workflows

The Openstack CI Log Processing project is provides configuration for sending logs from Zuul CI to the Opensearch host.

Logscraper, logsender

This workflow removes bottlenecks by removing: log gearman client, log gearman worker and logstash service. Logs are downloaded when available to the disk, then parsed by logsender and send directly to the Opensearch host.

With this solution, log workflow looks like:

+----------------+  1. Get last builds info      +-----------------+
|                | ----------------------------> |                 |
|   Logscraper   |                               |  Zuul API       |
|                | <---------------------------- |                 |
+----------------+    2. Fetch data              +-----------------+
         |
         +------------------------------------------------+
                                                          |
                                  3. Download logs;       |
                                  include inventory.yaml  |
                                  and build info          |
                                                          |
                                                          V
                +----------------+               +----------------+
                |                |               |                |
                |   Logsender    | <------------ |  Download dir  |
                |                |               |                |
                +----------------+               +----------------+
                        |
 4. Parse log files;    |
 add required fields;   |
 send to Opensearch     |
                        |
                        v
               +-----------------+
               |                 |
               |   Opensearch    |
               |                 |
               +-----------------+

You can deploy your log workflow by using example Ansible playbook that you can find in ansible/playbooks/check-services.yml in this project.

Testing

The part of OpenStack CI log processing runs a complete testing and continuous-integration environment, powered by Zuul.

Any changes to logscraper script or tests will trigger jobs to thoroughly test those changes.

To run a single test: tox -epy38 <test_name>

Benchmarking

The large Zuul CI deployments requires many CI log processing resources. In that case, we can do a benchmark with two log processing deployments. All tests will do same:

  • send 100 log builds to Elasticsearch that is running on same host
  • logscraper will be using 4 workers
  • VM will have 8 vcpus, 16 GB of RAM

Testing workflows:

  • loggearman and logstash

This workflow will spawn 3 additional loggearman workers because it this service is a bottleneck in that log ci workflow.

You can do it with command:

for i in {1..3}; do \
  podman run --network host -d --name loggearman-worker-$i \
   --volume /etc/loggearman:/etc/loggearman:z \
   --volume /var/log/loggearman:/var/log/loggearman:z \
   quay.io/software-factory/loggearman:latest \
   log-gearman-worker -c /etc/loggearman/worker.yml --foreground  -d /var/log/loggearman/worker.log

To remove:

for i in {1..3}; do \
  podman stop loggearman-worker-$i ; podman rm loggearman-worker-$i

On the end, basic calucations:

import datetime
start = datetime.datetime.fromisoformat("2022-02-28 16:44:59")
stop = datetime.datetime.fromisoformat("2022-02-28 16:46:01")
print((stop-start).total_seconds())

Time spend to run logscraper and wait for finish all loggearman workers took: 62 seconds and it takes 680MB of RAM.

  • logsender workflow

This workflow will only use logsender tool and it will push the logs directly to the Elasticsearch service. Same as in previous test, it will be executed on 4 processes.

To download logs:

logscraper \
 --zuul-api-url https://zuul.opendev.org/api/tenant/openstack \
 --checkpoint-file /tmp/results-checkpoint \
 --worker 8 \
 --max-skipped 100 \
 --download True \
 --directory /tmp/logscraper

This operation took: 30 seconds and it uses 130 MB of RAM.

logsender --username admin --password mypassword --host localhost --port 9200 --insecure --workers 4

Time spend to run logscraper and wait for finish all loggearman workers took: 35 second and it takes 520 MB of RAM.

Conclusion:

The logsender way seems to use less memory (on Opendev deployment, logstash service is on different host, but 4096 MB of RAM is not enough) and it is faster, but the logscraper and logsender process was executed one by one - on the beginning logscraper download logs, then logsender send them to Elasticsearch.

Continuous Deployment

Once changes are reviewed and committed, they will be applied automatically to the production hosts.

Contributing

Contributions are welcome!

Currently only unit tests are available. In the future, functional tests would be added.

Documentation

The latest documentation is available at http://docs.openstack.org/infra/ci-log-processing

That documentation is generated from this repository. You can generate it yourself with tox -e docs.