diff --git a/sd-notify.js b/sd-notify.js
index 636f3aa..829bc9f 100644
--- a/sd-notify.js
+++ b/sd-notify.js
@@ -4,11 +4,15 @@
 const MODULE_NAME = 'KOMODO-SDK.SD-NOTIFY';
 
 const logger = require('tektrans-logger');
+const matrix = require('./matrix');
 
 module.exports = () => {
     try {
         const notify = require('sd-notify');
+
         notify.ready();
+        matrix.systemd_notified = new Date();
+
         logger.info(`${MODULE_NAME} 701F8400: Systemd ready notification has been sent`);
     } catch (e) {
         logger.warn(`${MODULE_NAME} A6C99938: Optional dependency not found: sd-notify`);