How do get Telemetry Database data? #775
Replies: 1 comment 4 replies
-
The F' GDS is really meant for development and testing, and because of that it doesn't have any sort of telemetry / event persistence system. It'll show you live data and that's about it. Generally in real operations you want to save all the data you can get from your spacecraft. Personally I recommend building a tool that can store your received telemetry into a database (I don't think anybody's built anu open source F' telemetry to database tools yet). Once you have your telemetry in a database, it becomes much easier to visualize and query your telemetry. If you want to store telemetry on the spacecraft side I recommend taking a look at the ComLogger component. It can log telemetry channels and events to disk, which can then be downlinked at a later time. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I am saving telemetry data in my components and I can see them on GDS but GDS is only for debugging. How can I get all the data inside Telemetry Database in a text or csv format (or any other useful format) to downlink? Can I get all the data or do I have iterate through their ids? Can I delete the data because I don't want any telemetry older than x days?
If not what are some recommendations?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions