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
The descriptor container has a parent_handle (e.g., "ch0") of type str.
Observations:
There is a source_mds attribute on the metric, but in a basic reference mdib.xml, this is None, suggesting it's not a required property.
The PAT mdib.xml example embeds all parent handles (mt.ch.vmd.mds) in metric handles, but can we rely on this? What if providers use incomplete metric handles?
Ideally, determining the originating Mds.Vmd.Channel.Metric could be:
Alternatively, it would be useful if observableproperties.bind could pass not just the metric update dict but also the epr from the source device.
Questions:
What is the recommended way for a callback function to determine which Mds.Vmd.Channel.Metric a metric update came from, given that only the metric handle is easily accessible?
Can we assume metric.ch.vmd.mds or only metric.ch.vmd or neither?
Is maintaining multiple consumers in a single Python app (all sending messages to the same callback) an appropriate approach, or am I looking at this the wrong way?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Question: Identifying the Source of a Metric Update in a Consumer Callback
After initiating a consumer and binding metric updates to a callback function, the callback receives a dictionary like:
Where:
mdib.statecontainers.NumericMetricStateContainer
.mdib.descriptorcontainers.NumericMetricDescriptorContainer
can be obtained.parent_handle
(e.g.,"ch0"
) of typestr
.Observations:
source_mds
attribute on the metric, but in a basic referencemdib.xml
, this isNone
, suggesting it's not a required property.mdib.xml
example embeds all parent handles (mt.ch.vmd.mds) in metric handles, but can we rely on this? What if providers use incomplete metric handles?Mds.Vmd.Channel.Metric
could be:metric.parent_handle.parent_handle.parent_handle
metric.source_mds
observableproperties.bind
could pass not just the metric update dict but also theepr
from the source device.Questions:
Mds.Vmd.Channel.Metric
a metric update came from, given that only the metric handle is easily accessible?metric.ch.vmd.mds
or onlymetric.ch.vmd
or neither?Thanks for your time—no rush! 🙂
Beta Was this translation helpful? Give feedback.
All reactions