Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Jira Legacy
serverSystem Jira
columnIdsissuekey,summary,issuetype,created,updated,duedate,assignee,reporter,priority,status,resolution
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverId4733707d-2057-3a0f-ae5e-4fd8aff50176
keyCPS-1857

Out-of-scope

  • ...Any other health check response other then Spring Boots actuators is out of scope in this development.


Assumptions

#

Issue

Notes

Decisions

1The health check URL is the default Spring Boot actuator health check URL.

2

The URL extension to service(name) is

'/manage/health'



3

The response body for that health check request is the generic response produced by Spring Boot health check actuator end-point.




Issues & Decisions

#

Issue

Notes

Decisions

1




2


Overview

The DMI Plugin Watchdog monitors the aliveness of DMI plugins. The job periodically (a configurable period of time) checks the health and status of each DMI plugin to ensure that
they are functioning properly. If a DMI-plugin is found to be unresponsive or in an unhealthy state, the Trust Level Cache will be updated with the latest status.

During the DMI-plugin registration process, DMI-plugin's service(name) will be added to Trust Level Cache with a value of COPMLETE. When the job runs, it will check aliveness of the DMI-plugin
by returning a response. Please note that the service(name) will be appended with a URL extension which is '/manage/health'.


A sample health check request:

Code Block
languagetext
titleA sample health check URL
service(name)/manage/health


A sample health check response generated by Spring Boot actuator health check end-point:

Elite soft json viewer
modeTree
{
    "status": "UP",
    "components": {
        "diskSpace": {
            "status": "UP",
            "details": {
                "total": 269490393088,
                "free": 228454936576,
                "threshold": 10485760,
                "exists": true
            }
        },
        "livenessState": {
            "status": "UP"
        },
        "ping": {
            "status": "UP"
        },
        "readinessState": {
            "status": "UP"
        }
    },
    "groups": [
        "liveness",
        "readiness"
    ]
}