This commit is contained in:
laf
2016-10-20 22:23:01 +00:00
38 changed files with 1743 additions and 182 deletions

View File

@@ -25,6 +25,7 @@ Table of Content:
- [PlaySMS](#transports-playsms)
- [VictorOps](#transports-victorops)
- [Canopsis](#transports-canopsis)
- [osTicket](#transports-osticket)
- [Entities](#entities)
- [Devices](#entity-devices)
- [BGP Peers](#entity-bgppeers)
@@ -521,6 +522,23 @@ For more information about canopsis and its events, take a look here :
http://www.canopsis.org/
http://www.canopsis.org/wp-content/themes/canopsis/doc/sakura/user-guide/event-spec.html
## <a name="transports-osticket">osTicket</a>
[Using a proxy?](../Support/Configuration.md#proxy-support)
osTicket, open source ticket system. LibreNMS can send alerts to osTicket API which are then converted to osTicket tickets. To configure the transport, go to:
Global Settings -> Alerting Settings -> osTicket Transport.
This can also be done manually in config.php :
~~
```php
$config['alert']['transports']['osticket']['url'] = 'http://osticket.example.com/api/http.php/tickets.json';
$config['alert']['transports']['osticket']['token'] = '123456789';
```
~~
# <a name="entities">Entities
Entities as described earlier are based on the table and column names within the database, if you are unsure of what the entity is you want then have a browse around inside MySQL using `show tables` and `desc <tablename>`.