You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
370 B
30 lines
370 B
7 years ago
|
# Hastic server
|
||
|
|
||
|
Implementation of basic pattern recognition and unsupervised learning for anomamaly detection.
|
||
|
|
||
|
Implementation of analytic unit for Hastic.
|
||
|
see [REST API](REST.md)
|
||
|
|
||
|
## Build & run
|
||
|
|
||
|
### Analytic unit
|
||
|
|
||
|
Python3 project
|
||
|
|
||
|
```
|
||
|
pip3 install pandas
|
||
|
pip3 install influxdb
|
||
|
|
||
|
```
|
||
|
|
||
|
### Server
|
||
|
|
||
|
Node.js project
|
||
|
|
||
|
```
|
||
|
cd server
|
||
|
npm install
|
||
|
npm run build
|
||
|
npm start
|
||
|
```
|