add install info to gitignore file
Change-Id: Ib3698ca18f81b52fb840d74fdedde9e8dded43fb
This commit is contained in:
parent
75ede04cab
commit
f405da8bb1
4
.gitignore
vendored
4
.gitignore
vendored
@ -28,4 +28,6 @@ releasenotes/build*
|
||||
|
||||
AUTHORS
|
||||
Authors
|
||||
ChangeLog
|
||||
ChangeLog
|
||||
|
||||
openstack_venus.egg-info/*
|
@ -1,15 +1,21 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: openstack-venus
|
||||
Version: 1.1.0.dev26
|
||||
Version: 3.1.0.dev6
|
||||
Summary: OpenStack Log Management as a Service
|
||||
Home-page: UNKNOWN
|
||||
Author: Brin Zhang
|
||||
Author-email: zhangbailin@inspur.com
|
||||
License: UNKNOWN
|
||||
Description: Hello Venus
|
||||
========================
|
||||
Description: ===============
|
||||
OpenStack Venus
|
||||
===============
|
||||
|
||||
An OpenStack Log Management Service.
|
||||
.. image:: https://governance.openstack.org/tc/badges/venus.svg
|
||||
:target: https://governance.openstack.org/tc/reference/tags/index.html
|
||||
|
||||
.. Change things from this point on
|
||||
|
||||
OpenStack Venus is an OpenStack Log Management Service.
|
||||
|
||||
About Venus
|
||||
-----------
|
||||
|
@ -6,7 +6,6 @@ ChangeLog
|
||||
HACKING.rst
|
||||
LICENSE
|
||||
MANIFEST.in
|
||||
README.bak.rst
|
||||
README.rst
|
||||
requirements.txt
|
||||
setup.cfg
|
||||
@ -16,19 +15,27 @@ tox.ini
|
||||
api-ref/source/conf.py
|
||||
api-ref/source/index.rst
|
||||
api-ref/source/status.yaml
|
||||
api-ref/source/v1/anomaly-detect.inc
|
||||
api-ref/source/v1/api-versions.inc
|
||||
api-ref/source/v1/custom-config.inc
|
||||
api-ref/source/v1/index.rst
|
||||
api-ref/source/v1/parameters.yaml
|
||||
api-ref/source/v1/search-analyse-logs.inc
|
||||
api-ref/source/v1/search-instance-callchain.inc
|
||||
api-ref/source/v1/search-instance-requestids.inc
|
||||
api-ref/source/v1/search-logs-download.inc
|
||||
api-ref/source/v1/search-logs.inc
|
||||
api-ref/source/v1/search-params.inc
|
||||
api-ref/source/v1/search-typical-logs.inc
|
||||
api-ref/source/v1/search.inc
|
||||
api-ref/source/v1/samples/versions-response.json
|
||||
api-ref/source/v1/samples/custom-config/custom-config-show-response.json
|
||||
api-ref/source/v1/samples/anomaly-detect/add-anomaly-rule-request-curl.json
|
||||
api-ref/source/v1/samples/anomaly-detect/add-anomaly-rule-show-response.json
|
||||
api-ref/source/v1/samples/anomaly-detect/delete-anomaly-record-request-curl.json
|
||||
api-ref/source/v1/samples/anomaly-detect/delete-anomaly-record-show-response.json
|
||||
api-ref/source/v1/samples/anomaly-detect/delete-anomaly-rule-show-response.json
|
||||
api-ref/source/v1/samples/anomaly-detect/get-anomaly-record-request-curl.json
|
||||
api-ref/source/v1/samples/anomaly-detect/get-anomaly-record-show-response.json
|
||||
api-ref/source/v1/samples/anomaly-detect/get-anomaly-rule-list-show-response.json
|
||||
api-ref/source/v1/samples/anomaly-detect/get-anomaly-rule-show-response.json
|
||||
api-ref/source/v1/samples/anomaly-detect/update-anomaly-rule-failed-response.json
|
||||
api-ref/source/v1/samples/anomaly-detect/update-anomaly-rule-request.json
|
||||
api-ref/source/v1/samples/anomaly-detect/update-anomaly-rule-success-response.json
|
||||
api-ref/source/v1/samples/custom-config/get-custom-config-show-response.json
|
||||
api-ref/source/v1/samples/custom-config/set-custom-config-show-response.json
|
||||
api-ref/source/v1/samples/search-log/search-analyse-logs-show-response.json
|
||||
api-ref/source/v1/samples/search-log/search-instance-callchain-show-response.json
|
||||
api-ref/source/v1/samples/search-log/search-instance-request-ids-show-response.json
|
||||
@ -86,9 +93,12 @@ openstack_venus.egg-info/SOURCES.txt
|
||||
openstack_venus.egg-info/dependency_links.txt
|
||||
openstack_venus.egg-info/entry_points.txt
|
||||
openstack_venus.egg-info/not-zip-safe
|
||||
openstack_venus.egg-info/pbr.json
|
||||
openstack_venus.egg-info/requires.txt
|
||||
openstack_venus.egg-info/top_level.txt
|
||||
releasenotes/notes/.placeholder
|
||||
releasenotes/source/2023.1.rst
|
||||
releasenotes/source/2023.2.rst
|
||||
releasenotes/source/conf.py
|
||||
releasenotes/source/index.rst
|
||||
releasenotes/source/unreleased.rst
|
||||
@ -100,6 +110,8 @@ venus/__init__.py
|
||||
venus/context.py
|
||||
venus/exception.py
|
||||
venus/i18n.py
|
||||
venus/manager.py
|
||||
venus/rpc.py
|
||||
venus/service.py
|
||||
venus/utils.py
|
||||
venus/version.py
|
||||
@ -126,6 +138,7 @@ venus/api/v1/views/versions.py
|
||||
venus/cmd/__init__.py
|
||||
venus/cmd/api.py
|
||||
venus/cmd/manage.py
|
||||
venus/cmd/task.py
|
||||
venus/common/__init__.py
|
||||
venus/common/utils.py
|
||||
venus/conf/__init__.py
|
||||
@ -136,14 +149,32 @@ venus/conf/db.py
|
||||
venus/conf/elasticsearch.py
|
||||
venus/conf/profiler.py
|
||||
venus/db/__init__.py
|
||||
venus/db/alembic.ini
|
||||
venus/db/api.py
|
||||
venus/db/base.py
|
||||
venus/db/migration.py
|
||||
venus/db/alembic/README
|
||||
venus/db/alembic/env.py
|
||||
venus/db/alembic/script.py.mako
|
||||
venus/db/alembic/versions/a6cf98f55b4d_.py
|
||||
venus/hacking/__init__.py
|
||||
venus/hacking/checks.py
|
||||
venus/locale/venus-log-info.pot
|
||||
venus/locale/venus-log-warning.pot
|
||||
venus/locale/venus.pot
|
||||
venus/modules/__init__.py
|
||||
venus/modules/anomaly_detect/__init__.py
|
||||
venus/modules/anomaly_detect/action.py
|
||||
venus/modules/anomaly_detect/controller.py
|
||||
venus/modules/anomaly_detect/backends/__init__.py
|
||||
venus/modules/anomaly_detect/backends/models.py
|
||||
venus/modules/anomaly_detect/backends/sql.py
|
||||
venus/modules/custom_config/__init__.py
|
||||
venus/modules/custom_config/action.py
|
||||
venus/modules/custom_config/controller.py
|
||||
venus/modules/custom_config/backends/__init__.py
|
||||
venus/modules/custom_config/backends/models.py
|
||||
venus/modules/custom_config/backends/sql.py
|
||||
venus/modules/search/__init__.py
|
||||
venus/modules/search/action.py
|
||||
venus/modules/search/controller.py
|
||||
@ -164,6 +195,8 @@ venus/task/__init__.py
|
||||
venus/task/adapter.py
|
||||
venus/task/timer.py
|
||||
venus/task/core/__init__.py
|
||||
venus/task/core/anomaly_detect_task.py
|
||||
venus/task/core/delete_anomaly_record_task.py
|
||||
venus/task/core/delete_es_index_task.py
|
||||
venus/tests/__init__.py
|
||||
venus/tests/test_hacking.py
|
||||
@ -171,8 +204,14 @@ venus/tests/functional/__init__.py
|
||||
venus/tests/unit/__init__.py
|
||||
venus/tests/unit/fakes.py
|
||||
venus/tests/unit/api/__init__.py
|
||||
venus/tests/unit/api/test_common.py
|
||||
venus/tests/unit/api/test_extensions.py
|
||||
venus/tests/unit/api/test_search_action.py
|
||||
venus/tests/unit/api/test_search_controller.py
|
||||
venus/tests/unit/api/test_urlmap.py
|
||||
venus/tests/unit/api/test_xmlutil.py
|
||||
venus/tests/unit/common/__init__.py
|
||||
venus/tests/unit/common/test_utils.py
|
||||
venus/wsgi/__init__.py
|
||||
venus/wsgi/common.py
|
||||
venus/wsgi/eventlet_server.py
|
||||
@ -197,6 +236,7 @@ venus/api/v1/views/versions.py
|
||||
venus/cmd/__init__.py
|
||||
venus/cmd/api.py
|
||||
venus/cmd/manage.py
|
||||
venus/cmd/task.py
|
||||
venus/common/__init__.py
|
||||
venus/common/utils.py
|
||||
venus/conf/__init__.py
|
||||
@ -207,19 +247,24 @@ venus/conf/db.py
|
||||
venus/conf/elasticsearch.py
|
||||
venus/conf/profiler.py
|
||||
venus/db/__init__.py
|
||||
venus/db/api.py
|
||||
venus/db/base.py
|
||||
venus/db/migration.py
|
||||
venus/db/sqlalchemy/__init__.py
|
||||
venus/db/sqlalchemy/api.py
|
||||
venus/db/sqlalchemy/migrate_repo/__init__.py
|
||||
venus/db/sqlalchemy/migrate_repo/manage.py
|
||||
venus/db/sqlalchemy/migrate_repo/versions/001_venus_init.py
|
||||
venus/db/sqlalchemy/migrate_repo/versions/__init__.py
|
||||
venus/hacking/__init__.py
|
||||
venus/hacking/checks.py
|
||||
venus/modules/__init__.py
|
||||
venus/modules/anomaly_detect/__init__.py
|
||||
venus/modules/anomaly_detect/action.py
|
||||
venus/modules/anomaly_detect/controller.py
|
||||
venus/modules/anomaly_detect/backends/__init__.py
|
||||
venus/modules/anomaly_detect/backends/models.py
|
||||
venus/modules/anomaly_detect/backends/sql.py
|
||||
venus/modules/custom_config/__init__.py
|
||||
venus/modules/custom_config/action.py
|
||||
venus/modules/custom_config/controller.py
|
||||
venus/modules/custom_config/backends/__init__.py
|
||||
venus/modules/custom_config/backends/models.py
|
||||
venus/modules/custom_config/backends/sql.py
|
||||
venus/modules/search/__init__.py
|
||||
venus/modules/search/action.py
|
||||
venus/modules/search/controller.py
|
||||
@ -239,6 +284,8 @@ venus/task/__init__.py
|
||||
venus/task/adapter.py
|
||||
venus/task/timer.py
|
||||
venus/task/core/__init__.py
|
||||
venus/task/core/anomaly_detect_task.py
|
||||
venus/task/core/delete_anomaly_record_task.py
|
||||
venus/task/core/delete_es_index_task.py
|
||||
venus/tests/__init__.py
|
||||
venus/tests/test_hacking.py
|
||||
@ -246,8 +293,14 @@ venus/tests/functional/__init__.py
|
||||
venus/tests/unit/__init__.py
|
||||
venus/tests/unit/fakes.py
|
||||
venus/tests/unit/api/__init__.py
|
||||
venus/tests/unit/api/test_common.py
|
||||
venus/tests/unit/api/test_extensions.py
|
||||
venus/tests/unit/api/test_search_action.py
|
||||
venus/tests/unit/api/test_search_controller.py
|
||||
venus/tests/unit/api/test_urlmap.py
|
||||
venus/tests/unit/api/test_xmlutil.py
|
||||
venus/tests/unit/common/__init__.py
|
||||
venus/tests/unit/common/test_utils.py
|
||||
venus/wsgi/__init__.py
|
||||
venus/wsgi/common.py
|
||||
venus/wsgi/eventlet_server.py
|
||||
|
@ -1,6 +1,7 @@
|
||||
[console_scripts]
|
||||
venus-api = venus.cmd.api:main
|
||||
venus-manager = venus.cmd.manage:main
|
||||
venus_api = venus.cmd.api:main
|
||||
venus_manager = venus.cmd.manage:main
|
||||
venus_task = venus.cmd.task:main
|
||||
|
||||
[venus.database.migration_backend]
|
||||
sqlalchemy = oslo_db.sqlalchemy.migration
|
||||
|
1
openstack_venus.egg-info/pbr.json
Normal file
1
openstack_venus.egg-info/pbr.json
Normal file
@ -0,0 +1 @@
|
||||
{"git_version": "75ede04", "is_release": false}
|
@ -14,7 +14,7 @@ oslo.upgradecheck>=0.1.0
|
||||
oslo.utils>=4.5.0
|
||||
oslo.versionedobjects>=1.31.2
|
||||
osprofiler>=3.4.0
|
||||
SQLAlchemy!=1.1.5,!=1.1.6,!=1.1.7,!=1.1.8,>=0.9.0
|
||||
SQLAlchemy>=1.4.0
|
||||
alembic>=0.8.10
|
||||
stevedore>=1.5.0
|
||||
keystonemiddleware>=4.17.0
|
||||
|
Loading…
Reference in New Issue
Block a user