1.0.0-rc-4 • Published 1 year ago

qbus-eos-typescript-sdk v1.0.0-rc-4

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

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");