Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Need ability to add more than one yamcs instance per one openmct instantiation #7980

Open
haisamido opened this issue Jan 13, 2025 · 0 comments

Comments

@haisamido
Copy link

haisamido commented Jan 13, 2025

Is your feature request related to a problem? Please describe.
Need ability to add more than one yamcs instance per one openmct instantiation, because we have one yamcs server, a mission, with multiple defined instances, i.e.spacecraft.

Describe the solution you'd like
This configuration

const config = {
    yamcsDictionaryEndpoint: "http://localhost:9000/yamcs-proxy/",
    yamcsHistoricalEndpoint: "http://localhost:9000/yamcs-proxy/",
    yamcsWebsocketEndpoint: "ws://localhost:9000/yamcs-proxy-ws/",
    yamcsUserEndpoint: "http://localhost:9000/yamcs-proxy/api/user/",
    yamcsInstance: "myproject",
    yamcsProcessor: "realtime",
    yamcsFolder: "myproject",
    throttleRate: 1000,

should be more like:

const config = {
    yamcsDictionaryEndpoint: "http://localhost:9000/yamcs-proxy/",
    yamcsHistoricalEndpoint: "http://localhost:9000/yamcs-proxy/",
    yamcsWebsocketEndpoint: "ws://localhost:9000/yamcs-proxy-ws/",
    yamcsUserEndpoint: "http://localhost:9000/yamcs-proxy/api/user/",
    yamcsInstances: ["myproject1","myproject2"]
    yamcsProcessor: "realtime",
    yamcsFolders: ["myproject1","myproject2"]
    throttleRate: 1000,

in order for the HTML UI to display parameters from each instance (spacecraft) in a drop down list

Describe alternatives you've considered
Having more than one openmct running which is not ideal for a mission that has multiple spacecraft.

Additional context
TBD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant