-
Notifications
You must be signed in to change notification settings - Fork 179
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
Merge geo.location.lon and geo.location.lat #1638
base: main
Are you sure you want to change the base?
Conversation
This seems like a blocker for such PRs :( Is this maybe just an unwanted side-effect of this policy?
|
An option that doesn't require a new type in OTLP (which would introduce compatibility issues) is that we add an optional type hint for attributes in Example:
Type hints could be useful for other types as well, for example, IP addresses that are currently represented in string-typed attributes. Type hints make attributes more self-describing, while still preserving compatibility with backends that don't have native support for these more specialized types. |
This was discussed in today's SIG - there was agreement that something like this is acceptable. The idea to completely drop the policy came up as well, that may not happen, but there was no push back to allow this situation when the collision only happens between new and deprecated fields. |
@gregkalapos this policy have been relaxed for deprecated attributes with #1642, which has already been merged, so updating this PR from main should allow to unblock it. |
This PR is effectively the reason/rationale I want to see a new "type" concept in Semantic conventions (see discussion around embed here: #1264). Specifically, there can be different Geo location coordinate reference systems. If we limit to lat/lon AND erase the names, I think this is just a foot-gun. particular the discussion around whether it's I think we should hold off on this PR and think about how we, generically, want to handle the issue of "grouped" attributes. While we could do something quick for lat/lon, we're not in a hurry here, and I think we could preserve cc @open-telemetry/specs-semconv-maintainers @trisch-me |
There are similar problems with other types/namespaces (e.g. user/identity, address+port) and we can't solve them all with arrays. I'm really curious about
and would like to understand more - what was inconvenient? In which scenarios? Inconvenient for the end users or backend implementation? How is it different from |
The difference between user/identity, address+port compared to geo is that backends may have a dedicated type for geo.
This is the specific PR in the exporter: open-telemetry/opentelemetry-collector-contrib#36594 So we could not just take the 2 fields and store them as is, but needed to check if both are present (and e.g. not only one) and then turned those two into a format that is accepted by the backend as the dedicated geo type. That's basically all scenarios for geo fields.
Prior to that PR it was inconvenient for users because geo fields were not stored with the native geopoint type. One feature is e.g. that users can visualize these on a map - things like that were not possible. With the PR we fixed that, but with that, we start treating these 2 fields differently than other fields.
Ultimately, in my view, the difference is that we have a dedicated type for geo, but not for the other examples. Of course not all backends will have a dedicated geo type, but in this example we do have, and I'd not be surprised if there would be more such backends. Now, having said all that, I think the solution in PR open-telemetry/opentelemetry-collector-contrib#36594 is not that bad - it's far from unacceptable and it does the job. So we kind of went with that and accepted this inconvenience already. And I also share the other concerns regarding Yet, I still think this situation is different compared to the other examples here and the connection between these 2 fields is much stronger, given the fact that backends may store them together is a dedicated type. |
thanks for the context @gregkalapos, should we close this one? We can continue the discussion in #1669 which should address this concern. |
Changes
#1116 added geo fields. We started implementing support for this, and we noticed that for backends that have a dedicated geo point data type, having 2 distinct attributes (
geo.location.lon
andgeo.location.lat
) is very inconvenient. These two fields clearly belong together.Backends that have a specialized geo point type could still merge those with some tricks, but that does not feel right. On the other hand, if a backend does not have specific support for such a field, still can store it as
double[]
.Therefore, this PR proposes to merge those 2 attributes into a
double[]
.cc @felixbarny @carsonip
Alternatives
Merge requirement checklist
[chore]