-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
InfluxDB 2.0: There is now way how to get version of InfluxDB from API [area/api] #13907
Comments
Related to #13747 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been automatically closed because it has not had recent activity. Please reopen if this issue is still important to you. Thank you for your contributions. |
+1 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
InfluxDB 1.8 "/health" endpoint already returns version: {
"checks": [],
"message": "ready for queries and writes",
"name": "influxdb",
"status": "pass",
"version": "1.8.0"
} Whereas the InfluxDB2.0 now returns {
"name": "influxdb",
"message": "ready for queries and writes",
"status": "pass",
"checks": []
} Adding a version string to 2.0 will fix this issue. |
The InfluxDB 1.7.x has defined
/ping
endpoint withX-Influxdb-Version
header but in the API 2.0 there is no such thing.The
/health
endpoint will be useful for that.The text was updated successfully, but these errors were encountered: