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

BUG: TimeSeries submodel data (from MQTT and InfluxDB) does not display after uploading the shell on Basxy Web UI #95

Open
SUpadhyay07 opened this issue Nov 12, 2024 · 4 comments
Labels
bug Something isn't working

Comments

@SUpadhyay07
Copy link

Description:
In the latest AAS Web UI (v2-240801), my TimeSeries submodel data (from MQTT and visible in InfluxDB) doesn't display after uploading the shell. This works fine in the previous version (v2-240327). However, two other submodels (Nameplate and Document) work in the latest version but not in the previous one. I need all submodels to function in a single version i.e. the latest version.

Versions:
Latest: eclipsebasyx/aas-gui:v2-240801
Previous: eclipsebasyx/aas-gui:v2-240327
Please let me know if further details are needed.

Attachments:

  1. Previous: eclipsebasyx/aas-gui:v2-240327 --- Data visible but selecting multiple attributes shows only one.
  2. InfluxDB: Data available, expected to display in Latest: eclipsebasyx/aas-gui:v2-240801 -- With all the attributes
  3. Latest: eclipsebasyx/aas-gui:v2-240801 --- TimeSeries data not fetched from InfluxDB.

image
image
image

This issue is urgent. Please provide suggestions on why multiple attributes are not displaying in aas-gui:v2-240327, and let me know when I can expect a bug fix in the latest version(eclipsebasyx/aas-gui:v2-240801)

@SUpadhyay07 SUpadhyay07 added the bug Something isn't working label Nov 12, 2024
@aaronzi
Copy link
Member

aaronzi commented Nov 12, 2024

Hi @SUpadhyay07,

please try the actual newest version which would be eclipsebasyx/aas-gui:v2-241006. If this version causes problems as well, please notify us here.

@SUpadhyay07
Copy link
Author

Hi @aaronzi
Thank you for the quick response.
I attempted this with the updated web UI(eclipsebasyx/aas-gui:v2-241006), but I'm encountering an authorization error related to the linked segment in the InfluxDB Docker container. I've attached a screenshot of the error. Below is my query for the linked segment:.
from(bucket: "basyx")
|> range(start: -60s)
|> filter(fn: (r) => r["_measurement"] == "cpu_load")
|> filter(fn: (r) => r["_field"] == "Value")
|> filter(fn: (r) => r["host"] == "basyx_host")
|> filter(fn: (r) => r["topic"] == "machine/SI0559/ipc/cpu/load")
|> yield(name: "mean")

image

@aaronzi
Copy link
Member

aaronzi commented Nov 13, 2024

What are you using as endpoint in the LinkedSegment? My guess is that the orgId does not match the one of influxDB. But if you are using influxDB in the config provided in the Time Series Data Example from BaSyx, you can change the endpoint to this:

http://localhost:8086/api/v2/query?org=basyx

Here, the org name is used instead of the id. This has the benefit of not being changed automatically after restarting the Docker containers.

@SUpadhyay07
Copy link
Author

Hi @aaronzi
Thanks for your feedback earlier. I was using the organization ID previously. However, I am now facing a new challenge.

For the attribute temperature, I have multiple subtopics. In the metadata of the submodel, I have specified temperature. However, from MQTT, there are multiple topics coming with the temperature attribute.

I attempted to resolve this by renaming the attribute name in the docker-compose file of Telegraf and in the metadata as well, but it is still not fetching the data from influx for temperature rest it is showing the data.

Expected Behavior

The temperature data from multiple MQTT topics should be properly mapped.

Question

How should I proceed to handle this situation where multiple MQTT topics are coming with the same temperature attribute? Is there a specific configuration or mapping that needs to be adjusted in the metadata or Telegraf setup?

Any guidance or examples would be greatly appreciated!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Status: Backlog
Development

No branches or pull requests

2 participants