mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
51de44a3e5
Bring in initial state for the platform/telemetry bundle, which provides general-purpose telemetry conventions and infrastructure to support creating domain objects which expose telemetry data. WTD-575.
34 lines
992 B
JSON
34 lines
992 B
JSON
{
|
|
"name": "Data bundle",
|
|
"description": "Interfaces and infrastructure for real-time and historical data.",
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"provides": "telemetryService",
|
|
"type": "aggregator",
|
|
"implementation": "TelemetryAggregator.js",
|
|
"depends": [ "$q" ]
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "TelemetryController",
|
|
"implementation": "TelemetryController.js",
|
|
"depends": [ "$scope", "$q", "$timeout", "$log" ]
|
|
}
|
|
],
|
|
"capabilities": [
|
|
{
|
|
"key": "telemetry",
|
|
"implementation": "TelemetryCapability.js",
|
|
"depends": [ "telemetryService" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "telemetryHelper",
|
|
"implementation": "TelemetryHelper.js"
|
|
}
|
|
]
|
|
}
|
|
} |