absmach / magistrala-ui

UI Repository for Magistrala IoT
10 stars 17 forks source link

NOISSUE - Fix Health Endpoint Response #201

Closed rodneyosodo closed 7 months ago

rodneyosodo commented 7 months ago

What type of PR is this?

What does this do?

Fixes /health endpoint to return correct details about service health

Which issue(s) does this PR fix/relate to?

No issue

Have you included tests for your changes?

Did you document any new/modified functionality?

Notes

curl -sSiX GET http://0.0.0.0:9095/health

Before

{
  "status": "pass",
  "version": "0.0.0",
  "commit": "ffffffff",
  "description": "ui service",
  "build_time": "1970-01-01_00:00:00",
  "instance_id": "19c8f131-63f1-461d-be36-b7cb7bf6edb2"
}

After

{
  "status": "pass",
  "version": "v0.14.0",
  "commit": "9b460cb208fa54d28588f596fd0f6afab72b8479",
  "description": "ui service",
  "build_time": "2024-03-02_01:38:52",
  "instance_id": "fa5e06b3-fea4-4bd0-86e5-7f82694fca4c"
}