You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I would like to write a program which first requests all available signals in the data broker and then reacts based on that. The general idea is then to subscribe to all available signals and write any changes to a CSV-file.
I manually managed to achieve this goal with the 'sdv.databroker.v1' interface using the databroker-cli.
But for my solution, I am using the Python SDK from the kuksa-client through the kuksa.val.v1 interface which seems to have a different behavior here.
results in ' ({'code': 404, 'reason': 'not_found', 'message': 'Path not found'}, [{'error': {'code': 404, 'reason': 'not_found', 'message': 'Path not found'}}])'. Using '' or something like 'Vehicle.' does not work either.
sdv.databroker.v1:
With the databroker-cli which seems to use the sdv.databroker.v1 interface, running
metadata *
returns a list of all available signals. The proto definition for the GetMetadataRequest states: "If no names are provided, metadata for all known data points will be returned.". This is exactly what I am looking for in the other interface.
The text was updated successfully, but these errors were encountered:
The mock service currently uses both the old and the new IF just to query all metadata. Would be greatly appreciated if the kuksa.val.v1 would also support this.
Hi, I would like to write a program which first requests all available signals in the data broker and then reacts based on that. The general idea is then to subscribe to all available signals and write any changes to a CSV-file.
I manually managed to achieve this goal with the 'sdv.databroker.v1' interface using the databroker-cli.
But for my solution, I am using the Python SDK from the kuksa-client through the
kuksa.val.v1
interface which seems to have a different behavior here.kuksa.val.v1:
Using something like
results in ' ({'code': 404, 'reason': 'not_found', 'message': 'Path not found'}, [{'error': {'code': 404, 'reason': 'not_found', 'message': 'Path not found'}}])'. Using '' or something like 'Vehicle.' does not work either.
sdv.databroker.v1:
With the databroker-cli which seems to use the sdv.databroker.v1 interface, running
returns a list of all available signals. The proto definition for the GetMetadataRequest states: "If no names are provided, metadata for all known data points will be returned.". This is exactly what I am looking for in the other interface.
The text was updated successfully, but these errors were encountered: