├── .coveragerc ├── .gitignore ├── .gitreview ├── .mailmap ├── .pre-commit-config.yaml ├── .stestr.conf ├── .zuul.yaml ├── CONTRIBUTING.rst ├── HACKING.rst ├── LICENSE ├── MAINTAINERS ├── README.rst ├── aodh ├── __init__.py ├── api │ ├── __init__.py │ ├── api-paste.ini │ ├── app.py │ ├── app.wsgi │ ├── controllers │ │ ├── __init__.py │ │ ├── root.py │ │ └── v2 │ │ │ ├── __init__.py │ │ │ ├── alarm_rules │ │ │ ├── __init__.py │ │ │ ├── composite.py │ │ │ ├── event.py │ │ │ ├── gnocchi.py │ │ │ ├── loadbalancer.py │ │ │ └── prometheus.py │ │ │ ├── alarms.py │ │ │ ├── base.py │ │ │ ├── capabilities.py │ │ │ ├── metrics.py │ │ │ ├── query.py │ │ │ ├── quotas.py │ │ │ ├── root.py │ │ │ └── utils.py │ ├── hooks.py │ ├── middleware.py │ ├── policies.py │ └── rbac.py ├── cmd │ ├── __init__.py │ ├── alarm.py │ ├── aodh-config-generator.conf │ ├── status.py │ └── storage.py ├── conf │ ├── __init__.py │ └── defaults.py ├── coordination.py ├── evaluator │ ├── __init__.py │ ├── composite.py │ ├── event.py │ ├── gnocchi.py │ ├── loadbalancer.py │ ├── prometheus.py │ ├── threshold.py │ └── utils.py ├── event.py ├── i18n.py ├── keystone_client.py ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── id │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ └── aodh.po │ └── zh_TW │ │ └── LC_MESSAGES │ │ └── aodh.po ├── messaging.py ├── notifier │ ├── __init__.py │ ├── heat.py │ ├── log.py │ ├── rest.py │ ├── test.py │ ├── trust.py │ └── zaqar.py ├── opts.py ├── profiler.py ├── queue.py ├── service.py ├── storage │ ├── __init__.py │ ├── base.py │ ├── impl_log.py │ ├── impl_sqlalchemy.py │ ├── models.py │ └── sqlalchemy │ │ ├── __init__.py │ │ ├── alembic │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 006_add_evaluate_timestamp_to_alarm.py │ │ │ ├── 007_add_quota_table.py │ │ │ ├── 008_added_counter_table.py │ │ │ ├── 009_fix_missing_fk_constraint.py │ │ │ ├── 010_add_cascade.py │ │ │ ├── 12fe8fac9fe4_initial_base.py │ │ │ ├── 367aadf5485f_precisetimestamp_to_datetime.py │ │ │ ├── 6ae0d05d9451_add_reason_column.py │ │ │ ├── bb07adac380_add_severity_to_alarm_history.py │ │ │ └── f8c31b1ffe11_add_index_for_enabled_and_type.py │ │ ├── models.py │ │ └── utils.py ├── tests │ ├── __init__.py │ ├── base.py │ ├── constants.py │ ├── functional │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── policy.yaml-test │ │ │ │ ├── test_alarm_scenarios.py │ │ │ │ ├── test_app.py │ │ │ │ ├── test_complex_query.py │ │ │ │ ├── test_complex_query_scenarios.py │ │ │ │ ├── test_metrics.py │ │ │ │ └── test_quotas.py │ │ ├── db.py │ │ ├── hooks │ │ │ └── post_test_hook.sh │ │ └── storage │ │ │ ├── __init__.py │ │ │ ├── sqlalchemy │ │ │ ├── __init__.py │ │ │ └── test_migrations.py │ │ │ ├── test_get_connection.py │ │ │ ├── test_impl_log.py │ │ │ ├── test_impl_sqlalchemy.py │ │ │ └── test_storage_scenarios.py │ └── unit │ │ ├── __init__.py │ │ ├── cmd │ │ ├── __init__.py │ │ └── test_status.py │ │ ├── evaluator │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_base.py │ │ ├── test_composite.py │ │ ├── test_event.py │ │ ├── test_gnocchi.py │ │ ├── test_loadbalancer.py │ │ └── test_prometheus.py │ │ ├── notifier │ │ ├── __init__.py │ │ ├── base.py │ │ └── test_heat.py │ │ ├── test_api_v2_capabilities.py │ │ ├── test_bin.py │ │ ├── test_coordination.py │ │ ├── test_evaluator.py │ │ ├── test_event.py │ │ ├── test_messaging.py │ │ ├── test_notifier.py │ │ ├── test_query.py │ │ └── test_wsme_custom_type.py ├── version.py └── wsgi │ ├── __init__.py │ └── api.py ├── bindep.txt ├── devstack ├── README.rst ├── plugin.sh ├── settings └── upgrade │ ├── settings │ ├── shutdown.sh │ └── upgrade.sh ├── doc ├── Makefile ├── requirements.txt └── source │ ├── _static │ └── .placeholder │ ├── admin │ ├── index.rst │ ├── resource-quota.rst │ └── telemetry-alarms.rst │ ├── cli │ ├── aodh-status.rst │ └── index.rst │ ├── conf.py │ ├── configuration │ ├── aodh-config-file.rst │ ├── aodh-config-options.rst │ ├── index.rst │ ├── policy.rst │ └── sample-policy-yaml.rst │ ├── contributor │ ├── architecture.rst │ ├── contributing.rst │ ├── event-alarm.rst │ ├── gmr.rst │ ├── index.rst │ ├── install │ │ ├── development.rst │ │ ├── index.rst │ │ ├── manual.rst │ │ ├── mod_wsgi.rst │ │ └── uwsgi.rst │ ├── releasenotes │ │ └── index.rst │ ├── testing.rst │ └── webapi │ │ ├── index.rst │ │ └── v2.rst │ ├── glossary.rst │ ├── index.rst │ └── install │ ├── configure-common.rst │ ├── get_started.rst │ ├── index.rst │ ├── install-rdo.rst │ ├── install-ubuntu.rst │ ├── next-steps.rst │ ├── prereq-common.rst │ └── verify.rst ├── etc └── aodh │ ├── aodh-config-generator.conf │ └── aodh-policy-generator.conf ├── pyproject.toml ├── rally-jobs ├── README.rst ├── ceilometer.yaml ├── extra │ ├── README.rst │ └── fake.img └── plugins │ ├── README.rst │ └── plugin_sample.py ├── releasenotes ├── notes │ ├── .placeholder │ ├── Add-state-reason-to-the-API-7bc5a9465466db2b.yaml │ ├── add-a-data-migration-tool-daa14b0cb5d4cc62.yaml │ ├── add-metrics-endpoint-and-evaluation-counter-collection-f324ebda00fa5c6c.yaml │ ├── add-rbac-to-prometheus-queries-eeb2b14b2a2710a0.yaml │ ├── add-upgrade-check-framework-ab35e6eb65504bc3.yaml │ ├── auto-healing-notifier-794b64de776811e9.yaml │ ├── bug-1929178-46493335946174a5.yaml │ ├── bug1540395-reason-string-0aad56966007d0e3.yaml │ ├── composite-alarm-1b1ca9ea0e8f55c8.yaml │ ├── deprecate-aodh-config-generator-448050df3c750a46.yaml │ ├── deprecate-combination-alarms-7ff26b73b61a0e59.yaml │ ├── deprecate-json-formatted-policy-file-fgb26387a9bdb3b9.yaml │ ├── deprecate-nosql-backends-13079883eec7e8e5.yaml │ ├── deprecate-threshold-alarm-d89da351d4f6f50f.yaml │ ├── deprecate-unused-http_timeout-74fd60a4c26afd88.yaml │ ├── drop-py-2-7-54a9be4bfb8e9172.yaml │ ├── drop-python-3-6-and-3-7-89f2b7300c0166ca.yaml │ ├── drop-python-3-8-24f35246e92cf9af.yaml │ ├── enable-aodh-service-multi-processes-67ed9a0b7fac69aa.yaml │ ├── event-listener-batch-support-04e6ff159ef34d8c.yaml │ ├── fix-ceilometerclient-init-8bc7a6742937c3e2.yaml │ ├── fix-combination-alarms-8097adf08b837a50.yaml │ ├── fix-empty-statistics-3852da99b1c0b297.yaml │ ├── fix-gnocchi-aggregation-eval-7c2c1c67bdf2d11c.yaml │ ├── fix-prometheus-alarm-rbac-6ee2f0abbd060184.yaml │ ├── fix-rbac-50825144e0897d7d.yaml │ ├── fix-ssl-request-8107616b6a85a217.yaml │ ├── get-quotas-policy-b0338f314ec06ae9.yaml │ ├── gmr-3dd0a582af010bd4.yaml │ ├── gnocchi-capability-cache-75d011e77b8ecc72.yaml │ ├── gnocchi-client-a62ca5a0c717807e.yaml │ ├── gnocchi-external-resource-owner-3fad253d30746b0d.yaml │ ├── healthcheck-560700b72ae68e18.yaml │ ├── heartbeat_interval-d46e0f5efbd56264.yaml │ ├── ingestion-lag-2317725887287fbc.yaml │ ├── keystone-v3-support-ffc0f804dbe9d7e9.yaml │ ├── load-api-paste-ini-from-config-dirs-69480861a9633df4.yaml │ ├── loadbalancer-evaluator-85732c5e5f6e11e9.yaml │ ├── migrate-evaluation_interval-c65ba5cbe5fabb35.yaml │ ├── mysql-precise-datetime-e374c77e6707985e.yaml │ ├── notifier-batch-listener-01796e2cb06344dd.yaml │ ├── partition-coordinator-improvement-ff1c257f69f120ac.yaml │ ├── pecan-debug-removed-7c7a528a1aea98bf.yaml │ ├── policy-defaults-refresh-95b565bee059f611.yaml │ ├── policy-in-code-79edd9282f1e4603.yaml │ ├── queue-communication-1b884feab4078dde.yaml │ ├── remove-alarm-name-unique-constraint-4fb0b14f3ad46f0b.yaml │ ├── remove-check_watchers-df14cecc258a3510.yaml │ ├── remove-combination-alarms-a1a53655f3f7d1d1.yaml │ ├── remove-eventlet-18ada1cff213af5e.yaml │ ├── remove-http_timeout-e30a6ed9a0c40eb8.yaml │ ├── remove-no-sql-drivers-21dfdbd750751340.yaml │ ├── remove-py39-0e0c277bdf9e5e66.yaml │ ├── remove-threshold-alarm-a7901991d2da09f2.yaml │ ├── support-batch-delete-events-32496f15b1169887.yaml │ ├── support-combination-to-composite-conversion-3e688a6b7d01a57e.yaml │ ├── ussuri-support-builtin-active-active-aodh-evaluator-a935577e17a211ea.yaml │ ├── ussuri-support-query-all-projects-alarms-by-admin-3ecccf2217d711ea.yaml │ └── ussuri-support-quota-api-92f2fd0643d311ea.yaml └── source │ ├── 2023.1.rst │ ├── 2023.2.rst │ ├── 2024.1.rst │ ├── 2024.2.rst │ ├── 2025.1.rst │ ├── 2025.2.rst │ ├── _static │ └── .placeholder │ ├── conf.py │ ├── index.rst │ ├── liberty.rst │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ └── releasenotes.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── releasenotes.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── releasenotes.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── releasenotes.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ └── releasenotes.po │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── releasenotes.po │ ├── mitaka.rst │ ├── newton.rst │ ├── ocata.rst │ ├── pike.rst │ ├── queens.rst │ ├── rocky.rst │ ├── stein.rst │ ├── train.rst │ ├── unreleased.rst │ ├── ussuri.rst │ ├── victoria.rst │ ├── wallaby.rst │ ├── xena.rst │ ├── yoga.rst │ └── zed.rst ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- 1 | [gerrit] 2 | host=review.opendev.org 3 | port=29418 4 | project=openstack/aodh.git 5 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.stestr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/.stestr.conf -------------------------------------------------------------------------------- /.zuul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/.zuul.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HACKING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/HACKING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/README.rst -------------------------------------------------------------------------------- /aodh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/__init__.py -------------------------------------------------------------------------------- /aodh/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/__init__.py -------------------------------------------------------------------------------- /aodh/api/api-paste.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/api-paste.ini -------------------------------------------------------------------------------- /aodh/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/app.py -------------------------------------------------------------------------------- /aodh/api/app.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/app.wsgi -------------------------------------------------------------------------------- /aodh/api/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/api/controllers/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/root.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/api/controllers/v2/alarm_rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/api/controllers/v2/alarm_rules/composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/alarm_rules/composite.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/alarm_rules/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/alarm_rules/event.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/alarm_rules/gnocchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/alarm_rules/gnocchi.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/alarm_rules/loadbalancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/alarm_rules/loadbalancer.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/alarm_rules/prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/alarm_rules/prometheus.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/alarms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/alarms.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/base.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/capabilities.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/metrics.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/query.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/quotas.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/root.py -------------------------------------------------------------------------------- /aodh/api/controllers/v2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/controllers/v2/utils.py -------------------------------------------------------------------------------- /aodh/api/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/hooks.py -------------------------------------------------------------------------------- /aodh/api/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/middleware.py -------------------------------------------------------------------------------- /aodh/api/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/policies.py -------------------------------------------------------------------------------- /aodh/api/rbac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/api/rbac.py -------------------------------------------------------------------------------- /aodh/cmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/cmd/__init__.py -------------------------------------------------------------------------------- /aodh/cmd/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/cmd/alarm.py -------------------------------------------------------------------------------- /aodh/cmd/aodh-config-generator.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/cmd/aodh-config-generator.conf -------------------------------------------------------------------------------- /aodh/cmd/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/cmd/status.py -------------------------------------------------------------------------------- /aodh/cmd/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/cmd/storage.py -------------------------------------------------------------------------------- /aodh/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/conf/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/conf/defaults.py -------------------------------------------------------------------------------- /aodh/coordination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/coordination.py -------------------------------------------------------------------------------- /aodh/evaluator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/evaluator/__init__.py -------------------------------------------------------------------------------- /aodh/evaluator/composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/evaluator/composite.py -------------------------------------------------------------------------------- /aodh/evaluator/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/evaluator/event.py -------------------------------------------------------------------------------- /aodh/evaluator/gnocchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/evaluator/gnocchi.py -------------------------------------------------------------------------------- /aodh/evaluator/loadbalancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/evaluator/loadbalancer.py -------------------------------------------------------------------------------- /aodh/evaluator/prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/evaluator/prometheus.py -------------------------------------------------------------------------------- /aodh/evaluator/threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/evaluator/threshold.py -------------------------------------------------------------------------------- /aodh/evaluator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/evaluator/utils.py -------------------------------------------------------------------------------- /aodh/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/event.py -------------------------------------------------------------------------------- /aodh/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/i18n.py -------------------------------------------------------------------------------- /aodh/keystone_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/keystone_client.py -------------------------------------------------------------------------------- /aodh/locale/de/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/de/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/en_GB/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/en_GB/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/es/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/es/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/fr/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/fr/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/id/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/id/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/it/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/it/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/ja/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/ja/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/ko_KR/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/ko_KR/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/pt/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/pt/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/pt_BR/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/pt_BR/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/ru/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/ru/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/zh_CN/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/zh_CN/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/locale/zh_TW/LC_MESSAGES/aodh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/locale/zh_TW/LC_MESSAGES/aodh.po -------------------------------------------------------------------------------- /aodh/messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/messaging.py -------------------------------------------------------------------------------- /aodh/notifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/notifier/__init__.py -------------------------------------------------------------------------------- /aodh/notifier/heat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/notifier/heat.py -------------------------------------------------------------------------------- /aodh/notifier/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/notifier/log.py -------------------------------------------------------------------------------- /aodh/notifier/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/notifier/rest.py -------------------------------------------------------------------------------- /aodh/notifier/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/notifier/test.py -------------------------------------------------------------------------------- /aodh/notifier/trust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/notifier/trust.py -------------------------------------------------------------------------------- /aodh/notifier/zaqar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/notifier/zaqar.py -------------------------------------------------------------------------------- /aodh/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/opts.py -------------------------------------------------------------------------------- /aodh/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/profiler.py -------------------------------------------------------------------------------- /aodh/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/queue.py -------------------------------------------------------------------------------- /aodh/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/service.py -------------------------------------------------------------------------------- /aodh/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/__init__.py -------------------------------------------------------------------------------- /aodh/storage/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/base.py -------------------------------------------------------------------------------- /aodh/storage/impl_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/impl_log.py -------------------------------------------------------------------------------- /aodh/storage/impl_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/impl_sqlalchemy.py -------------------------------------------------------------------------------- /aodh/storage/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/models.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/alembic.ini -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/env.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/script.py.mako -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/006_add_evaluate_timestamp_to_alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/006_add_evaluate_timestamp_to_alarm.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/007_add_quota_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/007_add_quota_table.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/008_added_counter_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/008_added_counter_table.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/009_fix_missing_fk_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/009_fix_missing_fk_constraint.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/010_add_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/010_add_cascade.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/12fe8fac9fe4_initial_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/12fe8fac9fe4_initial_base.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/367aadf5485f_precisetimestamp_to_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/367aadf5485f_precisetimestamp_to_datetime.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/6ae0d05d9451_add_reason_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/6ae0d05d9451_add_reason_column.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/bb07adac380_add_severity_to_alarm_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/bb07adac380_add_severity_to_alarm_history.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/alembic/versions/f8c31b1ffe11_add_index_for_enabled_and_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/alembic/versions/f8c31b1ffe11_add_index_for_enabled_and_type.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/models.py -------------------------------------------------------------------------------- /aodh/storage/sqlalchemy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/storage/sqlalchemy/utils.py -------------------------------------------------------------------------------- /aodh/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/base.py -------------------------------------------------------------------------------- /aodh/tests/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/constants.py -------------------------------------------------------------------------------- /aodh/tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/tests/functional/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/api/__init__.py -------------------------------------------------------------------------------- /aodh/tests/functional/api/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/api/v2/__init__.py -------------------------------------------------------------------------------- /aodh/tests/functional/api/v2/policy.yaml-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/api/v2/policy.yaml-test -------------------------------------------------------------------------------- /aodh/tests/functional/api/v2/test_alarm_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/api/v2/test_alarm_scenarios.py -------------------------------------------------------------------------------- /aodh/tests/functional/api/v2/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/api/v2/test_app.py -------------------------------------------------------------------------------- /aodh/tests/functional/api/v2/test_complex_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/api/v2/test_complex_query.py -------------------------------------------------------------------------------- /aodh/tests/functional/api/v2/test_complex_query_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/api/v2/test_complex_query_scenarios.py -------------------------------------------------------------------------------- /aodh/tests/functional/api/v2/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/api/v2/test_metrics.py -------------------------------------------------------------------------------- /aodh/tests/functional/api/v2/test_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/api/v2/test_quotas.py -------------------------------------------------------------------------------- /aodh/tests/functional/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/db.py -------------------------------------------------------------------------------- /aodh/tests/functional/hooks/post_test_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/hooks/post_test_hook.sh -------------------------------------------------------------------------------- /aodh/tests/functional/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/tests/functional/storage/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/tests/functional/storage/sqlalchemy/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/storage/sqlalchemy/test_migrations.py -------------------------------------------------------------------------------- /aodh/tests/functional/storage/test_get_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/storage/test_get_connection.py -------------------------------------------------------------------------------- /aodh/tests/functional/storage/test_impl_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/storage/test_impl_log.py -------------------------------------------------------------------------------- /aodh/tests/functional/storage/test_impl_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/storage/test_impl_sqlalchemy.py -------------------------------------------------------------------------------- /aodh/tests/functional/storage/test_storage_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/functional/storage/test_storage_scenarios.py -------------------------------------------------------------------------------- /aodh/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/tests/unit/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/tests/unit/cmd/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/cmd/test_status.py -------------------------------------------------------------------------------- /aodh/tests/unit/evaluator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/tests/unit/evaluator/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/evaluator/base.py -------------------------------------------------------------------------------- /aodh/tests/unit/evaluator/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/evaluator/test_base.py -------------------------------------------------------------------------------- /aodh/tests/unit/evaluator/test_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/evaluator/test_composite.py -------------------------------------------------------------------------------- /aodh/tests/unit/evaluator/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/evaluator/test_event.py -------------------------------------------------------------------------------- /aodh/tests/unit/evaluator/test_gnocchi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/evaluator/test_gnocchi.py -------------------------------------------------------------------------------- /aodh/tests/unit/evaluator/test_loadbalancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/evaluator/test_loadbalancer.py -------------------------------------------------------------------------------- /aodh/tests/unit/evaluator/test_prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/evaluator/test_prometheus.py -------------------------------------------------------------------------------- /aodh/tests/unit/notifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/tests/unit/notifier/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/notifier/base.py -------------------------------------------------------------------------------- /aodh/tests/unit/notifier/test_heat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/notifier/test_heat.py -------------------------------------------------------------------------------- /aodh/tests/unit/test_api_v2_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/test_api_v2_capabilities.py -------------------------------------------------------------------------------- /aodh/tests/unit/test_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/test_bin.py -------------------------------------------------------------------------------- /aodh/tests/unit/test_coordination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/test_coordination.py -------------------------------------------------------------------------------- /aodh/tests/unit/test_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/test_evaluator.py -------------------------------------------------------------------------------- /aodh/tests/unit/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/test_event.py -------------------------------------------------------------------------------- /aodh/tests/unit/test_messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/test_messaging.py -------------------------------------------------------------------------------- /aodh/tests/unit/test_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/test_notifier.py -------------------------------------------------------------------------------- /aodh/tests/unit/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/test_query.py -------------------------------------------------------------------------------- /aodh/tests/unit/test_wsme_custom_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/tests/unit/test_wsme_custom_type.py -------------------------------------------------------------------------------- /aodh/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/version.py -------------------------------------------------------------------------------- /aodh/wsgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aodh/wsgi/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/aodh/wsgi/api.py -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/bindep.txt -------------------------------------------------------------------------------- /devstack/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/devstack/README.rst -------------------------------------------------------------------------------- /devstack/plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/devstack/plugin.sh -------------------------------------------------------------------------------- /devstack/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/devstack/settings -------------------------------------------------------------------------------- /devstack/upgrade/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/devstack/upgrade/settings -------------------------------------------------------------------------------- /devstack/upgrade/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/devstack/upgrade/shutdown.sh -------------------------------------------------------------------------------- /devstack/upgrade/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/devstack/upgrade/upgrade.sh -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/admin/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/admin/index.rst -------------------------------------------------------------------------------- /doc/source/admin/resource-quota.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/admin/resource-quota.rst -------------------------------------------------------------------------------- /doc/source/admin/telemetry-alarms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/admin/telemetry-alarms.rst -------------------------------------------------------------------------------- /doc/source/cli/aodh-status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/cli/aodh-status.rst -------------------------------------------------------------------------------- /doc/source/cli/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/cli/index.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/configuration/aodh-config-file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/configuration/aodh-config-file.rst -------------------------------------------------------------------------------- /doc/source/configuration/aodh-config-options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/configuration/aodh-config-options.rst -------------------------------------------------------------------------------- /doc/source/configuration/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/configuration/index.rst -------------------------------------------------------------------------------- /doc/source/configuration/policy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/configuration/policy.rst -------------------------------------------------------------------------------- /doc/source/configuration/sample-policy-yaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/configuration/sample-policy-yaml.rst -------------------------------------------------------------------------------- /doc/source/contributor/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/architecture.rst -------------------------------------------------------------------------------- /doc/source/contributor/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/contributing.rst -------------------------------------------------------------------------------- /doc/source/contributor/event-alarm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/event-alarm.rst -------------------------------------------------------------------------------- /doc/source/contributor/gmr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/gmr.rst -------------------------------------------------------------------------------- /doc/source/contributor/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/index.rst -------------------------------------------------------------------------------- /doc/source/contributor/install/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/install/development.rst -------------------------------------------------------------------------------- /doc/source/contributor/install/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/install/index.rst -------------------------------------------------------------------------------- /doc/source/contributor/install/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/install/manual.rst -------------------------------------------------------------------------------- /doc/source/contributor/install/mod_wsgi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/install/mod_wsgi.rst -------------------------------------------------------------------------------- /doc/source/contributor/install/uwsgi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/install/uwsgi.rst -------------------------------------------------------------------------------- /doc/source/contributor/releasenotes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/releasenotes/index.rst -------------------------------------------------------------------------------- /doc/source/contributor/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/testing.rst -------------------------------------------------------------------------------- /doc/source/contributor/webapi/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/webapi/index.rst -------------------------------------------------------------------------------- /doc/source/contributor/webapi/v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/contributor/webapi/v2.rst -------------------------------------------------------------------------------- /doc/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/glossary.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/install/configure-common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/install/configure-common.rst -------------------------------------------------------------------------------- /doc/source/install/get_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/install/get_started.rst -------------------------------------------------------------------------------- /doc/source/install/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/install/index.rst -------------------------------------------------------------------------------- /doc/source/install/install-rdo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/install/install-rdo.rst -------------------------------------------------------------------------------- /doc/source/install/install-ubuntu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/install/install-ubuntu.rst -------------------------------------------------------------------------------- /doc/source/install/next-steps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/install/next-steps.rst -------------------------------------------------------------------------------- /doc/source/install/prereq-common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/install/prereq-common.rst -------------------------------------------------------------------------------- /doc/source/install/verify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/doc/source/install/verify.rst -------------------------------------------------------------------------------- /etc/aodh/aodh-config-generator.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/etc/aodh/aodh-config-generator.conf -------------------------------------------------------------------------------- /etc/aodh/aodh-policy-generator.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/etc/aodh/aodh-policy-generator.conf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rally-jobs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/rally-jobs/README.rst -------------------------------------------------------------------------------- /rally-jobs/ceilometer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/rally-jobs/ceilometer.yaml -------------------------------------------------------------------------------- /rally-jobs/extra/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/rally-jobs/extra/README.rst -------------------------------------------------------------------------------- /rally-jobs/extra/fake.img: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rally-jobs/plugins/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/rally-jobs/plugins/README.rst -------------------------------------------------------------------------------- /rally-jobs/plugins/plugin_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/rally-jobs/plugins/plugin_sample.py -------------------------------------------------------------------------------- /releasenotes/notes/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/notes/Add-state-reason-to-the-API-7bc5a9465466db2b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/Add-state-reason-to-the-API-7bc5a9465466db2b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-a-data-migration-tool-daa14b0cb5d4cc62.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/add-a-data-migration-tool-daa14b0cb5d4cc62.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-metrics-endpoint-and-evaluation-counter-collection-f324ebda00fa5c6c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/add-metrics-endpoint-and-evaluation-counter-collection-f324ebda00fa5c6c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-rbac-to-prometheus-queries-eeb2b14b2a2710a0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/add-rbac-to-prometheus-queries-eeb2b14b2a2710a0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-upgrade-check-framework-ab35e6eb65504bc3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/add-upgrade-check-framework-ab35e6eb65504bc3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/auto-healing-notifier-794b64de776811e9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/auto-healing-notifier-794b64de776811e9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-1929178-46493335946174a5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/bug-1929178-46493335946174a5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug1540395-reason-string-0aad56966007d0e3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/bug1540395-reason-string-0aad56966007d0e3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/composite-alarm-1b1ca9ea0e8f55c8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/composite-alarm-1b1ca9ea0e8f55c8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-aodh-config-generator-448050df3c750a46.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/deprecate-aodh-config-generator-448050df3c750a46.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-combination-alarms-7ff26b73b61a0e59.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/deprecate-combination-alarms-7ff26b73b61a0e59.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-json-formatted-policy-file-fgb26387a9bdb3b9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/deprecate-json-formatted-policy-file-fgb26387a9bdb3b9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-nosql-backends-13079883eec7e8e5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/deprecate-nosql-backends-13079883eec7e8e5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-threshold-alarm-d89da351d4f6f50f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/deprecate-threshold-alarm-d89da351d4f6f50f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-unused-http_timeout-74fd60a4c26afd88.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/deprecate-unused-http_timeout-74fd60a4c26afd88.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-py-2-7-54a9be4bfb8e9172.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/drop-py-2-7-54a9be4bfb8e9172.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-python-3-6-and-3-7-89f2b7300c0166ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/drop-python-3-6-and-3-7-89f2b7300c0166ca.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-python-3-8-24f35246e92cf9af.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/drop-python-3-8-24f35246e92cf9af.yaml -------------------------------------------------------------------------------- /releasenotes/notes/enable-aodh-service-multi-processes-67ed9a0b7fac69aa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/enable-aodh-service-multi-processes-67ed9a0b7fac69aa.yaml -------------------------------------------------------------------------------- /releasenotes/notes/event-listener-batch-support-04e6ff159ef34d8c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/event-listener-batch-support-04e6ff159ef34d8c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-ceilometerclient-init-8bc7a6742937c3e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/fix-ceilometerclient-init-8bc7a6742937c3e2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-combination-alarms-8097adf08b837a50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/fix-combination-alarms-8097adf08b837a50.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-empty-statistics-3852da99b1c0b297.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/fix-empty-statistics-3852da99b1c0b297.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-gnocchi-aggregation-eval-7c2c1c67bdf2d11c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/fix-gnocchi-aggregation-eval-7c2c1c67bdf2d11c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-prometheus-alarm-rbac-6ee2f0abbd060184.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/fix-prometheus-alarm-rbac-6ee2f0abbd060184.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-rbac-50825144e0897d7d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/fix-rbac-50825144e0897d7d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-ssl-request-8107616b6a85a217.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/fix-ssl-request-8107616b6a85a217.yaml -------------------------------------------------------------------------------- /releasenotes/notes/get-quotas-policy-b0338f314ec06ae9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/get-quotas-policy-b0338f314ec06ae9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/gmr-3dd0a582af010bd4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/gmr-3dd0a582af010bd4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/gnocchi-capability-cache-75d011e77b8ecc72.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/gnocchi-capability-cache-75d011e77b8ecc72.yaml -------------------------------------------------------------------------------- /releasenotes/notes/gnocchi-client-a62ca5a0c717807e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/gnocchi-client-a62ca5a0c717807e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/gnocchi-external-resource-owner-3fad253d30746b0d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/gnocchi-external-resource-owner-3fad253d30746b0d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/healthcheck-560700b72ae68e18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/healthcheck-560700b72ae68e18.yaml -------------------------------------------------------------------------------- /releasenotes/notes/heartbeat_interval-d46e0f5efbd56264.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/heartbeat_interval-d46e0f5efbd56264.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ingestion-lag-2317725887287fbc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/ingestion-lag-2317725887287fbc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-v3-support-ffc0f804dbe9d7e9.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - > 4 | Add support for Keystone v3 authentication 5 | -------------------------------------------------------------------------------- /releasenotes/notes/load-api-paste-ini-from-config-dirs-69480861a9633df4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/load-api-paste-ini-from-config-dirs-69480861a9633df4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/loadbalancer-evaluator-85732c5e5f6e11e9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/loadbalancer-evaluator-85732c5e5f6e11e9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/migrate-evaluation_interval-c65ba5cbe5fabb35.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/migrate-evaluation_interval-c65ba5cbe5fabb35.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mysql-precise-datetime-e374c77e6707985e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/mysql-precise-datetime-e374c77e6707985e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/notifier-batch-listener-01796e2cb06344dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/notifier-batch-listener-01796e2cb06344dd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/partition-coordinator-improvement-ff1c257f69f120ac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/partition-coordinator-improvement-ff1c257f69f120ac.yaml -------------------------------------------------------------------------------- /releasenotes/notes/pecan-debug-removed-7c7a528a1aea98bf.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | upgrade: 3 | - The api.pecan_debug option has been removed. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/policy-defaults-refresh-95b565bee059f611.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/policy-defaults-refresh-95b565bee059f611.yaml -------------------------------------------------------------------------------- /releasenotes/notes/policy-in-code-79edd9282f1e4603.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/policy-in-code-79edd9282f1e4603.yaml -------------------------------------------------------------------------------- /releasenotes/notes/queue-communication-1b884feab4078dde.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/queue-communication-1b884feab4078dde.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-alarm-name-unique-constraint-4fb0b14f3ad46f0b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/remove-alarm-name-unique-constraint-4fb0b14f3ad46f0b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-check_watchers-df14cecc258a3510.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/remove-check_watchers-df14cecc258a3510.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-combination-alarms-a1a53655f3f7d1d1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/remove-combination-alarms-a1a53655f3f7d1d1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-eventlet-18ada1cff213af5e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/remove-eventlet-18ada1cff213af5e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-http_timeout-e30a6ed9a0c40eb8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/remove-http_timeout-e30a6ed9a0c40eb8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-no-sql-drivers-21dfdbd750751340.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/remove-no-sql-drivers-21dfdbd750751340.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-py39-0e0c277bdf9e5e66.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/remove-py39-0e0c277bdf9e5e66.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-threshold-alarm-a7901991d2da09f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/remove-threshold-alarm-a7901991d2da09f2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-batch-delete-events-32496f15b1169887.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/support-batch-delete-events-32496f15b1169887.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-combination-to-composite-conversion-3e688a6b7d01a57e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/support-combination-to-composite-conversion-3e688a6b7d01a57e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ussuri-support-builtin-active-active-aodh-evaluator-a935577e17a211ea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/ussuri-support-builtin-active-active-aodh-evaluator-a935577e17a211ea.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ussuri-support-query-all-projects-alarms-by-admin-3ecccf2217d711ea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/ussuri-support-query-all-projects-alarms-by-admin-3ecccf2217d711ea.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ussuri-support-quota-api-92f2fd0643d311ea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/notes/ussuri-support-quota-api-92f2fd0643d311ea.yaml -------------------------------------------------------------------------------- /releasenotes/source/2023.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/2023.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2023.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/2023.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/2024.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/2024.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/2025.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/2025.2.rst -------------------------------------------------------------------------------- /releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/conf.py -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/index.rst -------------------------------------------------------------------------------- /releasenotes/source/liberty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/liberty.rst -------------------------------------------------------------------------------- /releasenotes/source/locale/de/LC_MESSAGES/releasenotes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/locale/de/LC_MESSAGES/releasenotes.po -------------------------------------------------------------------------------- /releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po -------------------------------------------------------------------------------- /releasenotes/source/locale/fr/LC_MESSAGES/releasenotes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/locale/fr/LC_MESSAGES/releasenotes.po -------------------------------------------------------------------------------- /releasenotes/source/locale/ja/LC_MESSAGES/releasenotes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/locale/ja/LC_MESSAGES/releasenotes.po -------------------------------------------------------------------------------- /releasenotes/source/locale/ko_KR/LC_MESSAGES/releasenotes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/locale/ko_KR/LC_MESSAGES/releasenotes.po -------------------------------------------------------------------------------- /releasenotes/source/locale/pt_BR/LC_MESSAGES/releasenotes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/locale/pt_BR/LC_MESSAGES/releasenotes.po -------------------------------------------------------------------------------- /releasenotes/source/mitaka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/mitaka.rst -------------------------------------------------------------------------------- /releasenotes/source/newton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/newton.rst -------------------------------------------------------------------------------- /releasenotes/source/ocata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/ocata.rst -------------------------------------------------------------------------------- /releasenotes/source/pike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/pike.rst -------------------------------------------------------------------------------- /releasenotes/source/queens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/queens.rst -------------------------------------------------------------------------------- /releasenotes/source/rocky.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/rocky.rst -------------------------------------------------------------------------------- /releasenotes/source/stein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/stein.rst -------------------------------------------------------------------------------- /releasenotes/source/train.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/train.rst -------------------------------------------------------------------------------- /releasenotes/source/unreleased.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/unreleased.rst -------------------------------------------------------------------------------- /releasenotes/source/ussuri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/ussuri.rst -------------------------------------------------------------------------------- /releasenotes/source/victoria.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/victoria.rst -------------------------------------------------------------------------------- /releasenotes/source/wallaby.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/wallaby.rst -------------------------------------------------------------------------------- /releasenotes/source/xena.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/xena.rst -------------------------------------------------------------------------------- /releasenotes/source/yoga.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/yoga.rst -------------------------------------------------------------------------------- /releasenotes/source/zed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/releasenotes/source/zed.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/aodh/HEAD/tox.ini --------------------------------------------------------------------------------