Replies: 2 comments 13 replies
-
|
Ragflow doesn't have a built-in public health check endpoint, but its API is built on Flask and is highly extensible. There is a If you want a public health check endpoint, you can easily add one by creating a new A minimal example: # api/apps/health_app.py
from flask import Blueprint, jsonify
manager = Blueprint("health", __name__)
@manager.route("/healthz", methods=["GET"])
def health_check():
return jsonify({"status": "ok"}), 200This will expose The modular Flask/Blueprint setup makes it straightforward to customize or extend endpoints as your needs evolve. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
-
|
Hi! Appreciate your feedback! Could you open a feature request? Could be implemented later, especially after our SaaS launch. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello all,
I've read around about this and I know that there's no built-in endpoint/funccionality on Ragflow to run health checks and see if the application is still accessible, so I'm making this post to know if anyone's ever needed to do something similar and how.
Would you mind sharing available approaches, please?
TIA.
Beta Was this translation helpful? Give feedback.
All reactions