Daniel Pawlik e404aa545c Remove requirements upper limitation and start using upper constraints
The some of the flake8 requirement can not be satisfied, so
the test results is raising an error:

    Traceback (most recent call last):
      File "/ci-log-processing/.tox/pep8/bin/flake8", line 7, in <module>
        sys.exit(main())
                 ^^^^^^
      File "/ci-log-processing/.tox/pep8/lib/python3.12/site-packages/flake8/main/cli.py", line 22, in main
        app.run(argv)
      File "/ci-log-processing/.tox/pep8/lib/python3.12/site-packages/flake8/main/application.py", line 363, in run
        self._run(argv)
      File "/ci-log-processing/.tox/pep8/lib/python3.12/site-packages/flake8/main/application.py", line 350, in _run
        self.initialize(argv)
      File "/ci-log-processing/.tox/pep8/lib/python3.12/site-packages/flake8/main/application.py", line 330, in initialize
        self.find_plugins(config_finder)
      File "/ci-log-processing/.tox/pep8/lib/python3.12/site-packages/flake8/main/application.py", line 153, in find_plugins
        self.check_plugins = plugin_manager.Checkers(local_plugins.extension)
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      File "/ci-log-processing/.tox/pep8/lib/python3.12/site-packages/flake8/plugins/manager.py", line 356, in __init__
        self.manager = PluginManager(
                       ^^^^^^^^^^^^^^
      File "/ci-log-processing/.tox/pep8/lib/python3.12/site-packages/flake8/plugins/manager.py", line 238, in __init__
        self._load_entrypoint_plugins()
      File "/ci-log-processing/.tox/pep8/lib/python3.12/site-packages/flake8/plugins/manager.py", line 254, in _load_entrypoint_plugins
        eps = importlib_metadata.entry_points().get(self.namespace, ())
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    AttributeError: 'EntryPoints' object has no attribute 'get'

After updating packages to newer version, flake8 seems to be working
normally.

Co-Authored-By: Slawek Kaplonski <skaplons@redhat.com>
Change-Id: I27d36a21fa57619d3fd41f01b83f91990708089b
Signed-off-by: Daniel Pawlik <dpawlik@redhat.com>
2025-10-14 13:02:00 +02:00
2024-09-27 11:26:05 +02:00
2024-03-14 12:27:47 +00:00
2021-11-16 11:50:55 +01:00
2021-10-26 15:01:01 +00:00
2021-11-16 11:50:55 +01:00
2024-03-15 10:36:57 +01:00
2021-11-16 11:50:55 +01:00

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.

Description
OpenStack CI log processing tool
Readme 2.4 MiB
Languages
Python 90.3%
Jinja 6.1%
Shell 1.9%
Dockerfile 1.7%