Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add api.v2/elasticsearch-health route helper, like PA has #566

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions pmg/api/v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
from sqlalchemy.orm import defer, noload
from sqlalchemy.sql.expression import nullslast
from pmg.bill_tracker import produce_bill_tracker_json
from pmg import app
import requests

from pmg import cache, cache_key, should_skip_cache
from pmg.models import (
Expand Down Expand Up @@ -265,3 +267,10 @@ def bill_tracker():
def bill_tracker_update():
produce_bill_tracker_json()
return "/v2/bill-tracker JSON updated"


@api.route("/elasticsearch-health")
def elasticsearch_health():
r = requests.get("%s/_cluster/health?pretty=true" % app.config["ES_SERVER"])
r.raise_for_status()
return r.json()
Loading