blob: 94a00593ba56ad09bac7743f1a3e0741a008d0e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# icingaweb2-module-statusmap
This is a very basic status map module for Icingaweb 2.
## Installation
To install, check out this repo to your icingaweb2 modules directory:
```bash
git clone https://github.com/invliD/icingaweb2-module-statusmap.git /usr/share/icingaweb2/modules/statusmap
```
In addition, the monitoring module does not contain an IDO model class and a DataView, so you need to link those files into that module:
```bash
ln -s ../../../../../../statusmap/library/Monitoring/Backend/Ido/Query/HostdependencyQuery.php /usr/share/icingaweb2/modules/monitoring/library/Monitoring/Backend/Ido/Query/HostdependencyQuery.php
ln -s ../../../../statusmap/library/Monitoring/DataView/Hostdependency.php /usr/share/icingaweb2/modules/monitoring/library/Monitoring/DataView/Hostdependency.php
```
## Contributing
If you want to contribute to this project:
- Fork the repository
- Hack your changes
- Submit a Pull Request
## License
This project is licensed under the GNU GPLv2. See COPYING.md for the full license text.
|