Update README.md - add link to releases.

This commit is contained in:
Alexander Zobnin
2015-05-07 20:48:17 +03:00
parent 42b30d511c
commit 24fbff3c55
2 changed files with 36 additions and 5 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*.sublime-project
*.sublime-workspace

View File

@@ -1,10 +1,39 @@
# grafana-zabbix # grafana-zabbix
Zabbix API datasource for Grafana dashboard
Display your Zabbix data directly in Grafana dashboards #### Zabbix API datasource for Grafana dashboard
![grafana - zabbix datasource](https://cloud.githubusercontent.com/assets/4932851/7454206/34bf9f8c-f27a-11e4-8e96-a73829f188c4.png) Display your Zabbix data directly in Grafana dashboards!
Useful metric editor with host group and application filtering:
Useful metric editor with host group and application filtering ![grafana - zabbix datasource](https://cloud.githubusercontent.com/assets/4932851/7441162/4f6af788-f0e4-11e4-887b-34d987d00c40.png)
![2015-05-02 15-52-53](https://cloud.githubusercontent.com/assets/4932851/7441162/4f6af788-f0e4-11e4-887b-34d987d00c40.png) ## Installation
### Grafana 1.9.x
Download [latest release](https://github.com/alexanderzobnin/grafana-zabbix/releases) and unpack `zabbix` directory 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.