Fork me on GitHub

General

Which version or Rundeck API is used by Rundeck Monitor ?

Rundeck Monitor can use Rundeck API from 5 to 12, it fully works with all these versions. The configuration wizard check the Rundeck version for using only compatible API version :

  • API v5 since Rundeck version 1.4.4
  • API v6 since Rundeck version 1.5.1
  • API v7 since Rundeck version 1.5.3
  • API v8 since Rundeck version 1.6.0
  • API v9 since Rundeck version 1.6.1
  • API v10 since Rundeck version 2.0.0
  • API v11 since Rundeck version 2.1.0
  • API v12 since Rundeck version 2.2.0

How Rundeck Monitor is connecting to Rundeck ?

Rundeck Monitor uses the official Rundeck java client. Possible authentication methods are :

  • Connect with a user and a password
  • Connect with an API token

Installation

How to install Rundeck Monitor ?

Just download the attached jar in the lastest Rundeck Monitor release on GitHub.


What are available packaging of Rundeck Monitor ?

Rundeck Monitor is only available as an autonomous jar which integrate all needed dependencies.


Which java version is needed by Rundeck Monitor ?

Rundeck Monitor needs java version 1.7 or greater to be executed.


How to execute Rundeck Monitor ?

If jar files are correctly associated with Java, just open the file to launch Rundeck Monitor.

To manually execute the jar file, just type the command: ./rundeck-monitor-X.Y.jar or java -jar rundeck-monitor-X.Y.jar. On Linux/UNIX, this embedded script can be runned:

#!/bin/sh



exec java -jar "$0" "$@"

HTTP connections to Rundeck when using Rundeck Monitor

Can i use Rundeck Monitor behind an http proxy server ?

Yes, you will need JAVA_OPTS environment variable with a value like -Dhttp.proxyHost=my-proxy -Dhttp.proxyPort=80. For more information, look at the Java doc.