-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
63 changed files
with
5,074 additions
and
1,888 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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"disallowImplicitTypeConversion": ["string"], | ||
"disallowKeywords": ["with"], | ||
"disallowMultipleLineBreaks": true, | ||
"disallowMixedSpacesAndTabs": true, | ||
"disallowTrailingWhitespace": true, | ||
"requireSpacesInFunctionExpression": { | ||
"beforeOpeningCurlyBrace": true | ||
}, | ||
"disallowSpacesInsideArrayBrackets": true, | ||
"disallowSpacesInsideParentheses": true, | ||
"validateIndentation": 2 | ||
} |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"browser": true, | ||
|
||
"bitwise":false, | ||
"curly": true, | ||
"eqnull": true, | ||
"strict": true, | ||
"module": true, | ||
"devel": true, | ||
"eqeqeq": true, | ||
"forin": false, | ||
"immed": true, | ||
"supernew": true, | ||
"expr": true, | ||
"indent": 2, | ||
"latedef": false, | ||
"newcap": true, | ||
"noarg": true, | ||
"noempty": true, | ||
"undef": true, | ||
"boss": true, | ||
"trailing": true, | ||
"laxbreak": true, | ||
"laxcomma": true, | ||
"sub": true, | ||
"unused": true, | ||
"maxdepth": 6, | ||
"maxlen": 140, | ||
"esnext": true, | ||
|
||
"globals": { | ||
"System": true, | ||
"Promise": true, | ||
"define": true, | ||
"require": true, | ||
"Chromath": false, | ||
"setImmediate": true | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# Contributing to Grafana-Zabbix |
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 |
---|---|---|
@@ -0,0 +1,82 @@ | ||
module.exports = function(grunt) { | ||
|
||
require('load-grunt-tasks')(grunt); | ||
|
||
grunt.loadNpmTasks('grunt-execute'); | ||
grunt.loadNpmTasks('grunt-contrib-clean'); | ||
|
||
grunt.initConfig({ | ||
|
||
clean: ["dist"], | ||
|
||
copy: { | ||
src_to_dist: { | ||
cwd: 'src', | ||
expand: true, | ||
src: [ | ||
'**/*', | ||
'!datasource-zabbix/*.js', | ||
'!panel-triggers/*.js', | ||
'!components/*.js', | ||
'!module.js', | ||
'!**/*.scss' | ||
], | ||
dest: 'dist/' | ||
}, | ||
pluginDef: { | ||
expand: true, | ||
src: ['plugin.json', 'README.md'], | ||
dest: 'dist/', | ||
} | ||
}, | ||
|
||
watch: { | ||
rebuild_all: { | ||
files: ['src/**/*', 'plugin.json'], | ||
tasks: ['default'], | ||
options: {spawn: false} | ||
}, | ||
}, | ||
|
||
babel: { | ||
options: { | ||
sourceMap: true, | ||
presets: ["es2015"], | ||
plugins: ['transform-es2015-modules-systemjs', "transform-es2015-for-of"], | ||
}, | ||
dist: { | ||
files: [{ | ||
cwd: 'src', | ||
expand: true, | ||
src: [ | ||
'datasource-zabbix/*.js', | ||
'panel-triggers/*.js', | ||
'components/*.js', | ||
'module.js', | ||
], | ||
dest: 'dist/' | ||
}] | ||
}, | ||
}, | ||
|
||
sass: { | ||
options: { | ||
sourceMap: true | ||
}, | ||
dist: { | ||
files: { | ||
'dist/panel-triggers/css/panel_triggers.css' : 'src/panel-triggers/sass/panel_triggers.scss', | ||
} | ||
} | ||
} | ||
|
||
}); | ||
|
||
grunt.registerTask('default', [ | ||
'clean', | ||
'copy:src_to_dist', | ||
'copy:pluginDef', | ||
'babel', | ||
'sass' | ||
]); | ||
}; |
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# Grafana-Zabbix Documentation |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
site_name: Grafana-Zabbix Documentation | ||
#site_url: http://docs.grafana-zabbix.org/ | ||
#site_url: / | ||
site_description: Documentation for Grafana-Zabbix, Zabbix monitoring system plugin bundle for Grafana | ||
repo_url: https://github.com/alexanderzobnin/grafana-zabbix/ | ||
copyright: Copyright © 2014-2015, Alexander Zobnin | ||
|
||
docs_dir: sources | ||
theme: readthedocs | ||
|
||
pages: | ||
- Project: | ||
- 'About Grafana-Zabbix': 'index.md' | ||
- 'Feature Highlights': 'features.md' | ||
- Installation: | ||
- 'Installation': 'installation/index.md' | ||
- 'Configuration': 'installation/configuration.md' | ||
- 'Troubleshooting': 'installation/troubleshooting.md' | ||
- User Guides: | ||
- 'Getting Started': 'guides/gettingstarted.md' | ||
- Reference: | ||
- 'Zabbix Datasource': 'reference/datasource-zabbix.md' | ||
- 'Triggers Panel': 'reference/panel-triggers.md' | ||
- Tutorials: | ||
- 'Building Host Dashboard': 'tutorials/host_dashboard.md' |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
page_title: Feature Highlights | ||
page_description: Grafana-Zabbix Feature Highlights. | ||
|
||
# Feature Highlights | ||
|
||
Grafana in couple with Grafana-Zabbix plugin allows to create great dashboards. There is some | ||
features: | ||
|
||
- Rich graphing with Grafana | ||
- Template variables allow to create reusable dashboards | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Getting Started with Grafana-Zabbix | ||
After you [installed and configured](../installation/index.md) Grafana-Zabbix data source let's | ||
create a simple dashboard. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.png filter=lfs diff=lfs merge=lfs -text | ||
*.jpg filter=lfs diff=lfs merge=lfs -text | ||
*.psd filter=lfs diff=lfs merge=lfs -text |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
page_title: About Grafana-Zabbix | ||
page_description: Introduction to Grafana-Zabbix plugin. | ||
|
||
# About Grafana-Zabbix plugin | ||
|
||
Grafana-Zabbix is a plugin for Grafana allowing to visualize monitoring data from Zabbix | ||
and create dashboards for analyzing metrics and realtime monitoring. Main goals of this project | ||
are extend Zabbix capabilities for monitoring data visualization and provide quick and powerful way | ||
to create dashboards. It is possible due both Grafana and Grafana-Zabbix plugin features. | ||
|
||
## Community Resources, Feedback, and Support | ||
|
||
This project is being started as a simple plugin for Grafana. But many powerful features and | ||
improvements come from community. So don't hesitate to give any feedback and together we will make | ||
this tool better. | ||
|
||
If you have any troubles with Grafana or you just want clarification on a feature, there are | ||
a number of ways to get help: | ||
|
||
- [Troubleshooting guide](/installation/troubleshooting/) | ||
- Search closed and open [issues on GitHub](https://github.com/grafana/grafana/issues) | ||
- [Gitter room](https://gitter.im/alexanderzobnin/grafana-zabbix) | ||
- [Twitter](https://twitter.com/AlexanderZobnin) | ||
|
||
Or you can just send me [email](mailto:[email protected]). | ||
|
||
## Support Project | ||
I develop this project in my free time, but if you really find it helpful and promising, you can | ||
support me. There are some ways to do this. You can [donate](https://www.paypal.me/alexanderzobnin) | ||
any reasonable amount, or you can request a feature development, interesting for you (for example, | ||
Triggers panel was sponsored by [Core IT Project](http://coreit.fr/)). | ||
|
||
## License | ||
|
||
By utilizing this software, you agree to the terms of the included license. Grafana-Zabbix plugin is | ||
licensed under the Apache 2.0 agreement. See | ||
[LICENSE](https://github.com/alexanderzobnin/grafana-zabbix/blob/master/LICENSE.md) for the full | ||
license terms. |
Oops, something went wrong.