This is an automated email from the ASF dual-hosted git repository.
asorokoumov pushed a change to branch e2e-graphite-test
in repository https://gitbox.apache.org/repos/asf/otava.git
omit 48b5833 Add e2e Graphite test
add f75f356 Replacing signal_processing_algorithms with internal
implementation
add a59a3cf Correct implementation of bisection method
add f8f81d8 Support for Python 3.8 and 3.9
add 6aad9db Renamed variables, fixed typos, updated comments. Switched
indexing to match slice object notations.
add 5c5abc7 Merge pull request #96 from Sowiks/master
add e6dca23 Fixup config paths in docs
add 3154520 Merge pull request #105 from apache/config-paths-fixup
add 2d8bd02 Change supported Python versions to 3.10-3.14 (#108)
add d64c72b Add e2e Graphite test
add a97e000 Extract common functions into e2e_test_utils.py
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (48b5833)
\
N -- N -- N refs/heads/e2e-graphite-test (a97e000)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/python-app.yml | 4 +-
Dockerfile | 4 +-
README.md | 4 +-
docs/BASICS.md | 4 +-
docs/GRAFANA.md | 2 +-
docs/GRAPHITE.md | 2 +-
docs/POSTGRESQL.md | 4 +-
otava/analysis.py | 248 +--
.../change_point_divisive/__init__.py | 5 -
otava/change_point_divisive/base.py | 110 ++
otava/change_point_divisive/calculator.py | 190 ++
otava/change_point_divisive/detector.py | 63 +
otava/change_point_divisive/significance_test.py | 77 +
otava/series.py | 36 +-
pyproject.toml | 55 +-
tests/analysis_test.py | 47 +-
tests/change_point_divisive_test.py | 115 ++
tests/csv_e2e_test.py | 27 +-
tests/e2e_test_utils.py | 177 ++
tests/graphite_e2e_test.py | 138 +-
tests/postgres_e2e_test.py | 171 +-
tests/tigerbeetle_test.py | 18 +-
uv.lock | 1941 ++++++++------------
23 files changed, 1868 insertions(+), 1574 deletions(-)
copy tests/resources/histostat_test_config.yaml =>
otava/change_point_divisive/__init__.py (89%)
create mode 100644 otava/change_point_divisive/base.py
create mode 100644 otava/change_point_divisive/calculator.py
create mode 100644 otava/change_point_divisive/detector.py
create mode 100644 otava/change_point_divisive/significance_test.py
create mode 100644 tests/change_point_divisive_test.py
create mode 100644 tests/e2e_test_utils.py