Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sasaki77 committed Oct 23, 2020
1 parent 38a87eb commit bce8e21
Show file tree
Hide file tree
Showing 14 changed files with 106 additions and 0 deletions.
22 changes: 22 additions & 0 deletions dist/LICENSE
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.
40 changes: 40 additions & 0 deletions dist/README.md
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
```
2 changes: 2 additions & 0 deletions dist/dark.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/dark.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added dist/img/EPICS_Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions dist/light.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/light.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/module.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/module.js.map

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions dist/plugin.json
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": [ ]
}
}
1 change: 1 addition & 0 deletions dist/styles/dark.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/styles/dark.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/styles/light.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/styles/light.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bce8e21

Please sign in to comment.