A Jahia module that embeds the Jahia status page widget in two ways:
jnt:statuspageIoWidget component that editors can drop onto any page in jContentThe Statuspage.io page ID is configurable at runtime through an OSGi configuration, a GraphQL API, and a dedicated administration panel.
On initialization, the module fetches the current page ID via GraphQL and registers a callback with the Jahia UI Extender registry (target jahiaApp-init:60). That callback creates a fixed-position iframe pointing to https://<pageId>.statuspage.io/embed/frame and appends it to the document body. The iframe communicates with the host page via postMessage to show or dismiss itself depending on the current status.
The same logic is available as a website component through the jnt:statuspageIoWidget nodetype and its JSP view, which reads the pageId property set on the node and injects the iframe directly into the rendered page.
graphql-dxm-providerThe Statuspage.io page ID is stored in the OSGi configuration PID org.jahia.community.statuspageio.
Default configuration file (META-INF/configurations/org.jahia.community.statuspageio.cfg):
pageId=
To override it at runtime, edit or create the file on the Jahia server:
<karaf-home>/etc/org.jahia.community.statuspageio.cfg
The change takes effect immediately without redeploying the module.
The page ID can also be updated through the GraphQL mutation (see GraphQL API) or through the Administration panel.
The module extends the Jahia GraphQL API with a query and a mutation.
Query — retrieve the current configuration:
query {
statuspageIo {
pageId
}
}
Mutation — update the page ID (requires admin permission):
mutation {
updateStatuspageIoConfig(pageId: "newPageId")
}
A configuration panel is available in the Jahia administration under Configuration → Statuspage.io Configuration. It allows administrators to view and update the page ID through a form backed by the GraphQL mutation above.
A Jahia module that embeds the Jahia status page widget in two ways:
jnt:statuspageIoWidget component that editors can drop onto any page in jContentThe Statuspage.io page ID is configurable at runtime through an OSGi configuration, a GraphQL API, and a dedicated administration panel.
MIT License Copyright (c) 2026 - present Florent BOURASSÉ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.