-
Notifications
You must be signed in to change notification settings - Fork 5
/
zabbixgraph.php
45 lines (41 loc) · 1.43 KB
/
zabbixgraph.php
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
return [
/*
|--------------------------------------------------------------------------
| Zabbix Host
|--------------------------------------------------------------------------
|
| The host is the full URL (including http(s)://) to your Zabbix
| installation. Make sure that the Zabbix server is reachable
| from your production server to prevent possible failures.
|
*/
'host' => env('ZABBIXGRAPH_HOST'),
/*
|--------------------------------------------------------------------------
| Zabbix Username
|--------------------------------------------------------------------------
|
| The Zabbix username you use while logging in to the Zabbix UI.
|
*/
'username' => env('ZABBIXGRAPH_USERNAME'),
/*
|--------------------------------------------------------------------------
| Zabbix Password
|--------------------------------------------------------------------------
|
| The Zabbix password you use while logging in to the Zabbix UI.
|
*/
'password' => env('ZABBIXGRAPH_PASSWORD'),
/*
|--------------------------------------------------------------------------
| Old Zabbix (<=1.8) version
|--------------------------------------------------------------------------
|
| If you are using Zabbix 1.8 or older, this must be set to true.
|
*/
'old_version' => env('ZABBIXGRAPH_OLD_VERSION', false),
];