Update README.md - add link to releases.
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
35
README.md
35
README.md
@@ -3,8 +3,37 @@ Zabbix API datasource for Grafana dashboard
|
|||||||
|
|
||||||
Display your Zabbix data directly in Grafana dashboards
|
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
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
## 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.
|
||||||
Reference in New Issue
Block a user