-
Notifications
You must be signed in to change notification settings - Fork 108
Description
I'm looking into using OpenMCT for a project of mine, however I do not need historical telemetry data. In order to see if OpenMCT was going to be the tool I could use, followed the getting started tutorial and slightly modified the index.html to only include the realtime plugin. My changes to the tutorial are below:
diff --git a/index.html b/index.html
index 8b9cdf3..7c772af 100644
--- a/index.html
+++ b/index.html
@@ -5,7 +5,7 @@
<script src="node_modules/openmct/dist/openmct.js"></script>
<script src="lib/http.js"></script>
<script src="dictionary-plugin.js"></script>
- <script src="historical-telemetry-plugin.js"></script>
+ <!-- script src="historical-telemetry-plugin.js"></script>-->
<script src="realtime-telemetry-plugin.js"></script>
</head>
<body>
@@ -19,7 +19,7 @@
openmct.install(openmct.plugins.Espresso());
openmct.install(DictionaryPlugin());
- openmct.install(HistoricalTelemetryPlugin());
+ // openmct.install(HistoricalTelemetryPlugin());
openmct.install(RealtimeTelemetryPlugin());
openmct.start();After running this code, everything seems to work until I attempted to click something like the "Fuel" telemetry object (or any object within the spacecraft top level). When I did that, I get the following exception:

My question is this: Does OpenMCT support using only realtime data, and if it does, why does the tutorial barf when not including the historical data? What changes would I need to make to the tutorial code to prove that this feature is available?
Thanks for your time!