Skip to content

Commit

Permalink
Add installation instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderzobnin committed May 7, 2015
1 parent f11e084 commit bc1a3bb
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,33 @@
# grafana-zabbix
Zabbix API datasource for Grafana dashboard

## 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.

0 comments on commit bc1a3bb

Please sign in to comment.