No description
- Less 72%
- JavaScript 17.3%
- Shell 6.7%
- PHP 4%
|
|
||
|---|---|---|
| bin | ||
| debian | ||
| public | ||
| vendor | ||
| .gitignore | ||
| composer.json | ||
| composer.lock | ||
| configuration.php | ||
| extendStyles.php | ||
| LICENSE | ||
| module.info | ||
| README.md | ||
| run.php | ||
Icinga Web 2 - Incubator
This repository ships bleeding edge libraries useful for Icinga Web 2 modules. Please download the latest release and install it like any other module.
HINT: Do NOT install the GIT master, it will not work! Checking out a branch like
stable/0.18.0or a tag likev0.18.0is fine.
Sample Tarball installation
MODULE_NAME=incubator
MODULE_VERSION=v0.23.0
MODULES_PATH="/usr/share/icingaweb2/modules"
MODULE_PATH="${MODULES_PATH}/${MODULE_NAME}"
RELEASES="https://github.com/Icinga/icingaweb2-module-${MODULE_NAME}/archive"
mkdir "$MODULE_PATH" \
&& wget -q $RELEASES/${MODULE_VERSION}.tar.gz -O - \
| tar xfz - -C "$MODULE_PATH" --strip-components 1
icingacli module enable "${MODULE_NAME}"
Sample GIT installation
MODULE_NAME=incubator
MODULE_VERSION=v0.23.0
REPO="https://github.com/Icinga/icingaweb2-module-${MODULE_NAME}"
MODULES_PATH="/usr/share/icingaweb2/modules"
git clone ${REPO} "${MODULES_PATH}/${MODULE_NAME}" --branch "${MODULE_VERSION}"
icingacli module enable "${MODULE_NAME}"
Developer Documentation
Add a new dependency
composer require author/library:version
Create a new release
./bin/make-release.sh <version>
e.g.
./bin/make-release.sh 0.23.0
Changes
v0.23.0
- now requires at least icinga-php-thirdparty v0.12.1
- requires at least PHP 7.4
- supports PHP 8.4
- supports react/promise 3.x
- supports psr/log 1.x and 3.x, ships none
- fixed issue with ill-configured systems w/o locales
- compatibility with upcoming ipl interface changes
- improved error handling in curl/async
- avoids ghost changes in storables
- improve error handling in protocol/json-rpc
- raised max parallel connections in curl/async
v0.21.0
- raised gipfl/systemd for PHP 8.2
v0.20.0
- improved am/pm formatting
- support db expressions in filter rendering
- fix background in action bar dropdowns
- JsonRPC no supports proxy handlers
- dbstore improved modification detection
v0.19.0
- improved ProcessInfo serialization
- allow to use Cli\Screen w/o CLI
- curl: fix PHP 8.1 support in specific error conditions
- InfluxDB: fix v2 support
- InfluxDB: body compression
- InfluxDB: add header for debugging purposes
v0.18.0
- cosmetic changes for Icinga Web
- Settings can now be compared
- fix some zfdb exceptions on 8.1