From 0b53e15e55be746d4669d891791df5e79d2e5c0c Mon Sep 17 00:00:00 2001 From: Florian Lehner Date: Thu, 29 Aug 2024 07:41:54 +0200 Subject: [PATCH] profiles: drop Location.type_index With https://github.com/open-telemetry/semantic-conventions/pull/1188 the semantic convention for Profiles that introduces frame types and well known values is about to be merged. Therefore, `Location.type_index` is no longer needed. FYI: @open-telemetry/profiling-maintainers --- .../proto/profiles/v1experimental/pprofextended.proto | 3 --- 1 file changed, 3 deletions(-) diff --git a/opentelemetry/proto/profiles/v1experimental/pprofextended.proto b/opentelemetry/proto/profiles/v1experimental/pprofextended.proto index 42c0a9df6..b33e2d55b 100644 --- a/opentelemetry/proto/profiles/v1experimental/pprofextended.proto +++ b/opentelemetry/proto/profiles/v1experimental/pprofextended.proto @@ -354,9 +354,6 @@ message Location { // profile changes. bool is_folded = 5; - // Type of frame (e.g. kernel, native, python, hotspot, php). Index into string table. - int64 type_index = 6; - // References to attributes in Profile.attribute_table. [optional] repeated uint64 attributes = 7; }