├── .github └── workflows │ └── test-and-publish.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── dashboards └── flask_webapp.json ├── examples ├── connexion-pydantic │ ├── Dockerfile │ ├── README.md │ ├── endpoint.py │ ├── main.py │ ├── my_api.yaml │ └── run_tests.sh ├── flask-httpauth │ ├── Dockerfile │ ├── README.md │ ├── httpauth_example.py │ └── run_tests.sh ├── flask-multi-processes │ ├── Dockerfile │ ├── README.md │ ├── processes_example.py │ └── run_tests.sh ├── flask-run-135 │ ├── Dockerfile │ ├── README.md │ ├── app.py │ └── run_tests.sh ├── gunicorn-app-factory │ ├── Dockerfile │ ├── README.md │ ├── app_setup.py │ ├── config.py │ ├── requirements.txt │ ├── run_tests.sh │ └── server.py ├── gunicorn-exceptions-113 │ ├── Dockerfile │ ├── README.md │ ├── config.py │ ├── requirements.txt │ ├── run_tests.sh │ └── server.py ├── gunicorn-internal │ ├── Dockerfile │ ├── README.md │ ├── config.py │ ├── requirements.txt │ ├── run_tests.sh │ └── server.py ├── gunicorn-multiprocess-109 │ ├── Dockerfile │ ├── README.md │ ├── requirements.txt │ ├── run_tests.sh │ └── server.py ├── gunicorn │ ├── Dockerfile │ ├── README.md │ ├── config.py │ ├── requirements.txt │ ├── run_tests.sh │ └── server.py ├── pytest-app-factory │ ├── Dockerfile │ ├── myapp │ │ ├── config.py │ │ └── extensions.py │ ├── run_tests.sh │ └── test │ │ └── test_example.py ├── reload │ ├── Dockerfile │ ├── reload_example.py │ └── run_tests.sh ├── restful-return-none │ ├── Dockerfile │ ├── README.md │ ├── run_tests.sh │ └── server.py ├── restful-with-blueprints │ ├── Dockerfile │ ├── README.md │ ├── run_tests.sh │ └── server.py ├── restplus-default-metrics │ ├── Dockerfile │ ├── README.md │ ├── run_tests.sh │ └── server.py ├── sample-signals │ ├── README.md │ ├── app │ │ ├── Dockerfile │ │ ├── app.py │ │ └── requirements.txt │ ├── dashboard.png │ ├── docker-compose.yml │ ├── generator │ │ ├── Dockerfile │ │ ├── generate_events.py │ │ └── requirements.txt │ ├── grafana │ │ ├── config.ini │ │ ├── dashboard.yaml │ │ ├── dashboards │ │ │ └── example.json │ │ └── datasource.yaml │ └── prometheus │ │ └── config.yml ├── uwsgi-connexion │ ├── Dockerfile │ ├── README.md │ ├── endpoint.py │ ├── main.py │ ├── my_api.yaml │ └── run_tests.sh ├── uwsgi-lazy-apps │ ├── Dockerfile │ ├── README.md │ ├── requirements.txt │ ├── run_tests.sh │ └── server.py ├── uwsgi │ ├── Dockerfile │ ├── README.md │ ├── requirements.txt │ ├── run_tests.sh │ └── server.py └── wsgi │ ├── Dockerfile │ ├── README.md │ ├── app.py │ ├── httpd.conf │ ├── requirements.txt │ ├── run_tests.sh │ └── wsgi.py ├── prepare_release.sh ├── prometheus_flask_exporter ├── __init__.py └── multiprocess.py ├── requirements.txt ├── setup.py └── tests ├── test_app_factory.py ├── test_blueprint.py ├── test_defaults.py ├── test_endpoint.py ├── test_extensions.py ├── test_group_by.py ├── test_metric_initialization.py ├── test_metrics.py └── unittest_helper.py /.github/workflows/test-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/.github/workflows/test-and-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/README.md -------------------------------------------------------------------------------- /dashboards/flask_webapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/dashboards/flask_webapp.json -------------------------------------------------------------------------------- /examples/connexion-pydantic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/connexion-pydantic/Dockerfile -------------------------------------------------------------------------------- /examples/connexion-pydantic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/connexion-pydantic/README.md -------------------------------------------------------------------------------- /examples/connexion-pydantic/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/connexion-pydantic/endpoint.py -------------------------------------------------------------------------------- /examples/connexion-pydantic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/connexion-pydantic/main.py -------------------------------------------------------------------------------- /examples/connexion-pydantic/my_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/connexion-pydantic/my_api.yaml -------------------------------------------------------------------------------- /examples/connexion-pydantic/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/connexion-pydantic/run_tests.sh -------------------------------------------------------------------------------- /examples/flask-httpauth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-httpauth/Dockerfile -------------------------------------------------------------------------------- /examples/flask-httpauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-httpauth/README.md -------------------------------------------------------------------------------- /examples/flask-httpauth/httpauth_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-httpauth/httpauth_example.py -------------------------------------------------------------------------------- /examples/flask-httpauth/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-httpauth/run_tests.sh -------------------------------------------------------------------------------- /examples/flask-multi-processes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-multi-processes/Dockerfile -------------------------------------------------------------------------------- /examples/flask-multi-processes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-multi-processes/README.md -------------------------------------------------------------------------------- /examples/flask-multi-processes/processes_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-multi-processes/processes_example.py -------------------------------------------------------------------------------- /examples/flask-multi-processes/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-multi-processes/run_tests.sh -------------------------------------------------------------------------------- /examples/flask-run-135/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-run-135/Dockerfile -------------------------------------------------------------------------------- /examples/flask-run-135/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-run-135/README.md -------------------------------------------------------------------------------- /examples/flask-run-135/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-run-135/app.py -------------------------------------------------------------------------------- /examples/flask-run-135/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/flask-run-135/run_tests.sh -------------------------------------------------------------------------------- /examples/gunicorn-app-factory/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-app-factory/Dockerfile -------------------------------------------------------------------------------- /examples/gunicorn-app-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-app-factory/README.md -------------------------------------------------------------------------------- /examples/gunicorn-app-factory/app_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-app-factory/app_setup.py -------------------------------------------------------------------------------- /examples/gunicorn-app-factory/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-app-factory/config.py -------------------------------------------------------------------------------- /examples/gunicorn-app-factory/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-app-factory/requirements.txt -------------------------------------------------------------------------------- /examples/gunicorn-app-factory/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-app-factory/run_tests.sh -------------------------------------------------------------------------------- /examples/gunicorn-app-factory/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-app-factory/server.py -------------------------------------------------------------------------------- /examples/gunicorn-exceptions-113/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-exceptions-113/Dockerfile -------------------------------------------------------------------------------- /examples/gunicorn-exceptions-113/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-exceptions-113/README.md -------------------------------------------------------------------------------- /examples/gunicorn-exceptions-113/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-exceptions-113/config.py -------------------------------------------------------------------------------- /examples/gunicorn-exceptions-113/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-exceptions-113/requirements.txt -------------------------------------------------------------------------------- /examples/gunicorn-exceptions-113/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-exceptions-113/run_tests.sh -------------------------------------------------------------------------------- /examples/gunicorn-exceptions-113/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-exceptions-113/server.py -------------------------------------------------------------------------------- /examples/gunicorn-internal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-internal/Dockerfile -------------------------------------------------------------------------------- /examples/gunicorn-internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-internal/README.md -------------------------------------------------------------------------------- /examples/gunicorn-internal/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-internal/config.py -------------------------------------------------------------------------------- /examples/gunicorn-internal/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-internal/requirements.txt -------------------------------------------------------------------------------- /examples/gunicorn-internal/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-internal/run_tests.sh -------------------------------------------------------------------------------- /examples/gunicorn-internal/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-internal/server.py -------------------------------------------------------------------------------- /examples/gunicorn-multiprocess-109/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-multiprocess-109/Dockerfile -------------------------------------------------------------------------------- /examples/gunicorn-multiprocess-109/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-multiprocess-109/README.md -------------------------------------------------------------------------------- /examples/gunicorn-multiprocess-109/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-multiprocess-109/requirements.txt -------------------------------------------------------------------------------- /examples/gunicorn-multiprocess-109/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-multiprocess-109/run_tests.sh -------------------------------------------------------------------------------- /examples/gunicorn-multiprocess-109/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn-multiprocess-109/server.py -------------------------------------------------------------------------------- /examples/gunicorn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn/Dockerfile -------------------------------------------------------------------------------- /examples/gunicorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn/README.md -------------------------------------------------------------------------------- /examples/gunicorn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn/config.py -------------------------------------------------------------------------------- /examples/gunicorn/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn/requirements.txt -------------------------------------------------------------------------------- /examples/gunicorn/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn/run_tests.sh -------------------------------------------------------------------------------- /examples/gunicorn/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/gunicorn/server.py -------------------------------------------------------------------------------- /examples/pytest-app-factory/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/pytest-app-factory/Dockerfile -------------------------------------------------------------------------------- /examples/pytest-app-factory/myapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/pytest-app-factory/myapp/config.py -------------------------------------------------------------------------------- /examples/pytest-app-factory/myapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/pytest-app-factory/myapp/extensions.py -------------------------------------------------------------------------------- /examples/pytest-app-factory/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/pytest-app-factory/run_tests.sh -------------------------------------------------------------------------------- /examples/pytest-app-factory/test/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/pytest-app-factory/test/test_example.py -------------------------------------------------------------------------------- /examples/reload/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/reload/Dockerfile -------------------------------------------------------------------------------- /examples/reload/reload_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/reload/reload_example.py -------------------------------------------------------------------------------- /examples/reload/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/reload/run_tests.sh -------------------------------------------------------------------------------- /examples/restful-return-none/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restful-return-none/Dockerfile -------------------------------------------------------------------------------- /examples/restful-return-none/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restful-return-none/README.md -------------------------------------------------------------------------------- /examples/restful-return-none/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restful-return-none/run_tests.sh -------------------------------------------------------------------------------- /examples/restful-return-none/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restful-return-none/server.py -------------------------------------------------------------------------------- /examples/restful-with-blueprints/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restful-with-blueprints/Dockerfile -------------------------------------------------------------------------------- /examples/restful-with-blueprints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restful-with-blueprints/README.md -------------------------------------------------------------------------------- /examples/restful-with-blueprints/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restful-with-blueprints/run_tests.sh -------------------------------------------------------------------------------- /examples/restful-with-blueprints/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restful-with-blueprints/server.py -------------------------------------------------------------------------------- /examples/restplus-default-metrics/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restplus-default-metrics/Dockerfile -------------------------------------------------------------------------------- /examples/restplus-default-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restplus-default-metrics/README.md -------------------------------------------------------------------------------- /examples/restplus-default-metrics/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restplus-default-metrics/run_tests.sh -------------------------------------------------------------------------------- /examples/restplus-default-metrics/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/restplus-default-metrics/server.py -------------------------------------------------------------------------------- /examples/sample-signals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/README.md -------------------------------------------------------------------------------- /examples/sample-signals/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/app/Dockerfile -------------------------------------------------------------------------------- /examples/sample-signals/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/app/app.py -------------------------------------------------------------------------------- /examples/sample-signals/app/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | prometheus_flask_exporter 3 | -------------------------------------------------------------------------------- /examples/sample-signals/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/dashboard.png -------------------------------------------------------------------------------- /examples/sample-signals/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/docker-compose.yml -------------------------------------------------------------------------------- /examples/sample-signals/generator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/generator/Dockerfile -------------------------------------------------------------------------------- /examples/sample-signals/generator/generate_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/generator/generate_events.py -------------------------------------------------------------------------------- /examples/sample-signals/generator/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /examples/sample-signals/grafana/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/grafana/config.ini -------------------------------------------------------------------------------- /examples/sample-signals/grafana/dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/grafana/dashboard.yaml -------------------------------------------------------------------------------- /examples/sample-signals/grafana/dashboards/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/grafana/dashboards/example.json -------------------------------------------------------------------------------- /examples/sample-signals/grafana/datasource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/grafana/datasource.yaml -------------------------------------------------------------------------------- /examples/sample-signals/prometheus/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/sample-signals/prometheus/config.yml -------------------------------------------------------------------------------- /examples/uwsgi-connexion/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-connexion/Dockerfile -------------------------------------------------------------------------------- /examples/uwsgi-connexion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-connexion/README.md -------------------------------------------------------------------------------- /examples/uwsgi-connexion/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-connexion/endpoint.py -------------------------------------------------------------------------------- /examples/uwsgi-connexion/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-connexion/main.py -------------------------------------------------------------------------------- /examples/uwsgi-connexion/my_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-connexion/my_api.yaml -------------------------------------------------------------------------------- /examples/uwsgi-connexion/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-connexion/run_tests.sh -------------------------------------------------------------------------------- /examples/uwsgi-lazy-apps/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-lazy-apps/Dockerfile -------------------------------------------------------------------------------- /examples/uwsgi-lazy-apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-lazy-apps/README.md -------------------------------------------------------------------------------- /examples/uwsgi-lazy-apps/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-lazy-apps/requirements.txt -------------------------------------------------------------------------------- /examples/uwsgi-lazy-apps/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-lazy-apps/run_tests.sh -------------------------------------------------------------------------------- /examples/uwsgi-lazy-apps/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi-lazy-apps/server.py -------------------------------------------------------------------------------- /examples/uwsgi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi/Dockerfile -------------------------------------------------------------------------------- /examples/uwsgi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi/README.md -------------------------------------------------------------------------------- /examples/uwsgi/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi/requirements.txt -------------------------------------------------------------------------------- /examples/uwsgi/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi/run_tests.sh -------------------------------------------------------------------------------- /examples/uwsgi/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/uwsgi/server.py -------------------------------------------------------------------------------- /examples/wsgi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/wsgi/Dockerfile -------------------------------------------------------------------------------- /examples/wsgi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/wsgi/README.md -------------------------------------------------------------------------------- /examples/wsgi/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/wsgi/app.py -------------------------------------------------------------------------------- /examples/wsgi/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/wsgi/httpd.conf -------------------------------------------------------------------------------- /examples/wsgi/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/wsgi/requirements.txt -------------------------------------------------------------------------------- /examples/wsgi/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/wsgi/run_tests.sh -------------------------------------------------------------------------------- /examples/wsgi/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/examples/wsgi/wsgi.py -------------------------------------------------------------------------------- /prepare_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/prepare_release.sh -------------------------------------------------------------------------------- /prometheus_flask_exporter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/prometheus_flask_exporter/__init__.py -------------------------------------------------------------------------------- /prometheus_flask_exporter/multiprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/prometheus_flask_exporter/multiprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_app_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/tests/test_app_factory.py -------------------------------------------------------------------------------- /tests/test_blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/tests/test_blueprint.py -------------------------------------------------------------------------------- /tests/test_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/tests/test_defaults.py -------------------------------------------------------------------------------- /tests/test_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/tests/test_endpoint.py -------------------------------------------------------------------------------- /tests/test_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/tests/test_extensions.py -------------------------------------------------------------------------------- /tests/test_group_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/tests/test_group_by.py -------------------------------------------------------------------------------- /tests/test_metric_initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/tests/test_metric_initialization.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/tests/test_metrics.py -------------------------------------------------------------------------------- /tests/unittest_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rycus86/prometheus_flask_exporter/HEAD/tests/unittest_helper.py --------------------------------------------------------------------------------