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
// InstrumentationScope is a message representing the instrumentation scope information// such as the fully qualified name and version.
message InstrumentationScope {
// An empty instrumentation scope name means the name is unknown.
string name = 1;
string version = 2;
repeated KeyValue attributes = 3;
uint32 dropped_attributes_count = 4;
}
The text was updated successfully, but these errors were encountered:
lalitb
changed the title
[Logs SDK] OTLP Log Exporter - Populate Instrumentation Scope attributes and URL
[Logs SDK] OTLP Log Exporter - Populate Instrumentation Scope attributes
Feb 28, 2023
Dependent on #1690
OTLP Exporter should populate InstrumentationScope
attributes
from OtlpRecordable to the proto buffer. Currently it populatesname
andversion
.Reference:
opentelemetry-cpp/exporters/otlp/src/otlp_recordable_utils.cc
Lines 120 to 121 in 7c0826e
https://github.com/open-telemetry/opentelemetry-proto/blob/main/opentelemetry/proto/common/v1/common.proto#LL71-L77
The text was updated successfully, but these errors were encountered: