Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/celaus/crate-chart
A chart plugin for Crate.IO's admin interface.
https://github.com/celaus/crate-chart
Last synced: 26 days ago
JSON representation
A chart plugin for Crate.IO's admin interface.
- Host: GitHub
- URL: https://github.com/celaus/crate-chart
- Owner: celaus
- License: mit
- Created: 2015-11-10T16:32:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-10T16:50:01.000Z (almost 9 years ago)
- Last Synced: 2024-04-17T18:06:23.688Z (7 months ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CHARTS FOR CRATE.IO
For simple analysis of arbitrary queries.
# HOWTO
First, install the plugin in the [Crate.IO](https://crate.io) admin interface by copying the folder to `$crate_location/plugins/crate-admin/_site/plugins` and adjusting the `plugins.json` accordingly (there should be a default Tutorials plugin).
Afterwards, start Crate.IO and go to `http://localhost:4200/admin`, navigate to the CHARTS plugin on the navbar (left).
For displaying results, enter something like:
```sql
select something as series, val1 as x, val2 as y from aDatabase order by 2;
```
and click "GO". Note the column aliases, they are important for receiving results.