-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-1.0' into grafana-1.9
- Loading branch information
Showing
4 changed files
with
329 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,43 @@ | ||
# grafana-zabbix | ||
Zabbix API datasource for Grafana dashboard | ||
|
||
![alt tag](https://cloud.githubusercontent.com/assets/4932851/7454206/34bf9f8c-f27a-11e4-8e96-a73829f188c4.png) | ||
|
||
|
||
Query editor allows to add metric by step-by-step selection from host group, host, application dropdown menus. | ||
|
||
![alt tag](https://cloud.githubusercontent.com/assets/4932851/7441162/4f6af788-f0e4-11e4-887b-34d987d00c40.png) | ||
![alt tag](https://cloud.githubusercontent.com/assets/4932851/7441163/56f28f16-f0e4-11e4-9d46-54181c2a2e7e.png) | ||
![alt tag](https://cloud.githubusercontent.com/assets/4932851/7441167/5f29cc94-f0e4-11e4-8d39-7580f33201f6.png) | ||
|
||
|
||
## Installation | ||
|
||
### Grafana 1.9.x | ||
|
||
Download latest release and unpack into `<your grafana installation>/plugins/datasource/`. Then edit Grafana config.js: | ||
* Add dependencies | ||
|
||
``` | ||
plugins: { | ||
panels: [], | ||
dependencies: ['datasource/zabbix/datasource', 'datasource/zabbix/queryCtrl'], | ||
} | ||
``` | ||
* Add datasource and setup your Zabbix API url, username and password | ||
|
||
``` | ||
datasources: { | ||
... | ||
}, | ||
zabbix: { | ||
type: 'ZabbixAPIDatasource', | ||
url: 'http://www.zabbix.org/zabbix/api_jsonrpc.php', | ||
username: 'guest', | ||
password: '' | ||
} | ||
}, | ||
``` | ||
|
||
### Grafana 2.0.x | ||
Now in development. |
Oops, something went wrong.