def health_request_processor()

in src/main.py [0:0]


    def health_request_processor(self, message_id, command, message):

        # Create the RESPONSE message format.
        status = 200                    # The response message status, not health status. 
        data = self.health_status       # Return any data needed in health_status object
        response_message = self.pubsub_messages.get_pubsub_response(message_id, command, status, data)

        # Get the requests reply SDK ('ipc' || 'mqtt' and reply topic from the request message) 
        # is possible that a request received on IPC is responsed to via MQTT.
        reply_sdk = message['reply-sdk']; 
        reply_topic = message['reply-topic']
        
        # Publish the message to requested SDK and topic
        self.publish_message(reply_sdk, reply_topic, response_message)