https://github.com/gdubya/mqtt-notification-plugin
A simple MQTT Notification plugin for Jenkins
https://github.com/gdubya/mqtt-notification-plugin
java jenkins-ci jenkins-plugin mqtt
Last synced: 25 days ago
JSON representation
A simple MQTT Notification plugin for Jenkins
- Host: GitHub
- URL: https://github.com/gdubya/mqtt-notification-plugin
- Owner: gdubya
- License: mit
- Created: 2013-04-01T13:10:43.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2023-05-17T03:02:02.000Z (almost 2 years ago)
- Last Synced: 2025-03-24T18:49:40.121Z (about 1 month ago)
- Topics: java, jenkins-ci, jenkins-plugin, mqtt
- Language: Java
- Homepage:
- Size: 74.2 KB
- Stars: 11
- Watchers: 4
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
MQTT Notification plugin
====================[](https://plugins.jenkins.io/mqtt-notification-plugin)
[](https://github.com/jenkinsci/mqtt-notification-plugin/releases/latest)
[](https://plugins.jenkins.io/mqtt-notification-plugin)# About
A simple notifier that can publish build notifications to a topic on
a [MQTT](http://mqtt.org/) broker.[MQTT](http://mqtt.org/) is a machine-to-machine (M2M)/"Internet of
Things" connectivity protocol. It was designed as an extremely
lightweight publish/subscribe messaging transport.# Configuration
The following details are configurable per Jenkins job:- Broker hostname/port
- Topic
- MessageBoth the topic and the message may also include certain dynamic
variables. These include:- PROJECT\_URL - The relative URL to the Jenkins project to which this
job belongs (e.g. "job/my-build").
- BUILD\_RESULT - The result of the Job (e.g. SUCCESS, FAILURE,
ABORTED, etc.)
- BUILD\_NUMBER - The build number
- CULPRITS - Comma-separated list of build culpritsAll other build variables and environment variables can also be
used ([JENKINS-41839](https://issues.jenkins-ci.org/browse/JENKINS-41839)).The default topic when no value is specified is "jenkins/PROJECT\_URL".
The default message when no value is specified is "BUILD\_RESULT".
# License
This Jenkins plugin is licensed under the [MIT License](./LICENSE.txt).