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
After prototyping entity detection in the collector open-telemetry/opentelemetry-collector-contrib#35538, we found that some detectors currently cannot provide the same set of identifying attributes for the same type. For example, most of the detectors detecting a host entity type can provide host.id while the docker detector currently can only provide host.name.
This particular issue with the docker detector can potentially be mitigated by:
Updating the docker detector to provide host.id. To be investigated.
If 1 isn't possible, the entity type can potentially be called differently.
Even if we have a solution for this particular case, it's possible to run into other cases like this with other entity types. We can keep tracking them in this issue.
Based on the observations, we need to decide if we strictly define a set of identifying attributes for a particular entity type or keep it open while providing a list of recommended attributes.
The text was updated successfully, but these errors were encountered:
After prototyping entity detection in the collector open-telemetry/opentelemetry-collector-contrib#35538, we found that some detectors currently cannot provide the same set of identifying attributes for the same type. For example, most of the detectors detecting a
host
entity type can providehost.id
while the docker detector currently can only providehost.name
.This particular issue with the docker detector can potentially be mitigated by:
host.id
. To be investigated.Even if we have a solution for this particular case, it's possible to run into other cases like this with other entity types. We can keep tracking them in this issue.
Based on the observations, we need to decide if we strictly define a set of identifying attributes for a particular entity type or keep it open while providing a list of recommended attributes.
The text was updated successfully, but these errors were encountered: