-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016 Grafana | ||
Copyright (c) 2019-2020 Shinya Sasaki | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# EPICS Archiver Appliance Datasource | ||
|
||
Visualize EPICS Archiver Appliance on Grafana. | ||
|
||
See [Archiver Appliance site](https://slacmshankar.github.io/epicsarchiver_docs/index.html) for more information about Archiver Appliance. | ||
|
||
## Features | ||
- Select multiple PVs by using Regex (Only supports wildcard pattern like `PV.*` and alternation pattern like `PV(1|2)`) | ||
- Legend alias with regular expression pattern | ||
- Data retrieval with data processing (See [Archiver Appliance User Guide](https://slacmshankar.github.io/epicsarchiver_docs/userguide.html) for processing of data) | ||
- Using PV names for Grafana variables | ||
- Transform your data with processing functions | ||
|
||
## Installation | ||
|
||
Clone this plugin into grafana plugins directory; the default is /var/lib/grafana/plugins. | ||
|
||
## Documentaion | ||
Documentation is available at [https://sasaki77.github.io/archiverappliance-datasource](https://sasaki77.github.io/archiverappliance-datasource). | ||
|
||
## Dev setup | ||
|
||
It is recommend to use node 12.13.0 | ||
|
||
``` | ||
npm install -g yarn | ||
yarn install | ||
yarn dev | ||
``` | ||
|
||
[grafana-toolkit](https://github.com/grafana/grafana/tree/master/packages/grafana-toolkit) is used to develop the plugin. Please refer grafana-toolkit documentation for more information. | ||
|
||
## Build documentation | ||
|
||
``` | ||
python -m venv env | ||
source env/bin/activate | ||
pip install sphinx commonmark recommonmark sphinx_rtd_theme | ||
make html | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "ArchiverAppliance", | ||
"id": "sasaki77-archiverappliance-datasource", | ||
"type": "datasource", | ||
|
||
"metrics": true, | ||
"annotations": false, | ||
|
||
"info": { | ||
"description": "Archiver Appliance Datasource", | ||
"author": { | ||
"name": "Shinya Sasaki", | ||
"url": "http://www-acc.kek.jp/WWW-ACC-exp/KEKB/control/KEKB-Control-home.html" | ||
}, | ||
"logos": { | ||
"small": "img/EPICS_Logo.png", | ||
"large": "img/EPICS_Logo.png" | ||
}, | ||
"links": [ | ||
{"name": "GitHub", "url": "https://github.com/sasaki77/archiverappliance-datasource"}, | ||
{"name": "MIT License", "url": "https://github.com/sasaki77/archiverappliance-datasource/blob/master/LICENSE"} | ||
], | ||
"version": "1.1.1", | ||
"updated": "2020-10-23" | ||
}, | ||
|
||
"dependencies": { | ||
"grafanaVersion": "7.X.X", | ||
"plugins": [ ] | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.