I'm new to OpenMCT and i'm getting stucked while implementing my own telemetry data. I've cloned openmct-tutorial repository and started it with npm start and everything just work fine. What i would like to do now is to take telemetry sent by a python script and visualize in an appropriate object.
I'm able to create objects for my telemetry with plugins but i can't understand what i have to do to visualize data in those objects. I tried to send data like data = { "timestamp": int(time.time()), "value": value, "id": key } using websocket to ws://localhost:8080/realtime but i think i should send data to something else.
Hi guys,
I'm new to OpenMCT and i'm getting stucked while implementing my own telemetry data. I've cloned openmct-tutorial repository and started it with
npm start
and everything just work fine. What i would like to do now is to take telemetry sent by a python script and visualize in an appropriate object.I'm able to create objects for my telemetry with plugins but i can't understand what i have to do to visualize data in those objects. I tried to send data like
data = { "timestamp": int(time.time()), "value": value, "id": key }
using websocket tows://localhost:8080/realtime
but i think i should send data to something else.If anyone could help me i'll appreciate it!