qbus-eos-typescript-sdk
v1.0.0-rc-4
Published
This README would normally document whatever steps are necessary to get your application up and running.
Downloads
2
Readme
EOS SDK
This module contains usefull code to use in the EOS project at QBUS.
Usage
Installation: todo
Examples
- Retrieve a profile:
get_profile("VIRTDEVICE_019", "SEM_001")
- Upload global metrics:
const metrics = new Map<DateTime, any>();
const timestamp = DateTime.now();
metrics.set(timestamp, {"some_parameter": some_value});
put_global_metrics(metrics, "metric_name");