Skip to content

Commit 5beb818

Browse files
felixbarnycarsonip
andauthored
[elasticsearchexporter] Handle EventName (#37012)
closes #37011 --------- Co-authored-by: Carson Ip <[email protected]>
1 parent c645253 commit 5beb818

File tree

4 files changed

+70
-6
lines changed

4 files changed

+70
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: enhancement
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
7+
component: elasticsearchexporter
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Handle `EventName` for log records in OTel mode
11+
12+
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
13+
issues: [37011]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# If your change doesn't affect end users or the exported elements of any package,
21+
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
22+
# Optional: The change log or logs in which this entry should be included.
23+
# e.g. '[user]' or '[user, api]'
24+
# Include 'user' if the change is relevant to end users.
25+
# Include 'api' if there is a change to a library API.
26+
# Default: '[user]'
27+
change_logs: [user]

exporter/elasticsearchexporter/exporter_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ func TestExporterLogs(t *testing.T) {
450450
return vm
451451
}(),
452452
isEvent: true,
453-
wantDocument: []byte(`{"@timestamp":"1970-01-01T00:00:00.000000000Z","attributes":{"attr.foo":"attr.foo.value","event.name":"foo"},"data_stream":{"dataset":"attr.dataset.otel","namespace":"resource.attribute.namespace","type":"logs"},"dropped_attributes_count":0,"observed_timestamp":"1970-01-01T00:00:00.000000000Z","resource":{"attributes":{"resource.attr.foo":"resource.attr.foo.value"},"dropped_attributes_count":0},"scope":{"dropped_attributes_count":0},"severity_number":0,"body":{"structured":{"true":true,"false":false,"inner":{"foo":"bar"}}}}`),
453+
wantDocument: []byte(`{"@timestamp":"1970-01-01T00:00:00.000000000Z","attributes":{"attr.foo":"attr.foo.value","event.name":"foo"},"event_name":"foo","data_stream":{"dataset":"attr.dataset.otel","namespace":"resource.attribute.namespace","type":"logs"},"dropped_attributes_count":0,"observed_timestamp":"1970-01-01T00:00:00.000000000Z","resource":{"attributes":{"resource.attr.foo":"resource.attr.foo.value"},"dropped_attributes_count":0},"scope":{"dropped_attributes_count":0},"severity_number":0,"body":{"structured":{"true":true,"false":false,"inner":{"foo":"bar"}}}}`),
454454
},
455455
{
456456
body: func() pcommon.Value {
@@ -473,7 +473,7 @@ func TestExporterLogs(t *testing.T) {
473473
return vs
474474
}(),
475475
isEvent: true,
476-
wantDocument: []byte(`{"@timestamp":"1970-01-01T00:00:00.000000000Z","attributes":{"attr.foo":"attr.foo.value","event.name":"foo"},"data_stream":{"dataset":"attr.dataset.otel","namespace":"resource.attribute.namespace","type":"logs"},"dropped_attributes_count":0,"observed_timestamp":"1970-01-01T00:00:00.000000000Z","resource":{"attributes":{"resource.attr.foo":"resource.attr.foo.value"},"dropped_attributes_count":0},"scope":{"dropped_attributes_count":0},"severity_number":0,"body":{"structured":{"value":["foo",false,{"foo":"bar"}]}}}`),
476+
wantDocument: []byte(`{"@timestamp":"1970-01-01T00:00:00.000000000Z","attributes":{"attr.foo":"attr.foo.value","event.name":"foo"},"event_name":"foo","data_stream":{"dataset":"attr.dataset.otel","namespace":"resource.attribute.namespace","type":"logs"},"dropped_attributes_count":0,"observed_timestamp":"1970-01-01T00:00:00.000000000Z","resource":{"attributes":{"resource.attr.foo":"resource.attr.foo.value"},"dropped_attributes_count":0},"scope":{"dropped_attributes_count":0},"severity_number":0,"body":{"structured":{"value":["foo",false,{"foo":"bar"}]}}}`),
477477
},
478478
} {
479479
rec := newBulkRecorder()
@@ -1629,7 +1629,7 @@ func TestExporterTraces(t *testing.T) {
16291629
},
16301630
{
16311631
Action: []byte(`{"create":{"_index":"logs-generic.otel-default"}}`),
1632-
Document: []byte(`{"@timestamp":"1970-01-01T00:00:00.000000000Z","attributes":{"event.attr.foo":"event.attr.bar","event.name":"exception"},"data_stream":{"dataset":"generic.otel","namespace":"default","type":"logs"},"dropped_attributes_count":1,"resource":{"attributes":{"resource.foo":"resource.bar"},"dropped_attributes_count":0},"scope":{"dropped_attributes_count":0}}`),
1632+
Document: []byte(`{"@timestamp":"1970-01-01T00:00:00.000000000Z","attributes":{"event.attr.foo":"event.attr.bar","event.name":"exception"},"event_name":"exception","data_stream":{"dataset":"generic.otel","namespace":"default","type":"logs"},"dropped_attributes_count":1,"resource":{"attributes":{"resource.foo":"resource.bar"},"dropped_attributes_count":0},"scope":{"dropped_attributes_count":0}}`),
16331633
},
16341634
}
16351635

exporter/elasticsearchexporter/model.go

+13-3
Original file line numberDiff line numberDiff line change
@@ -178,21 +178,29 @@ func (m *encodeModel) encodeLogOTelMode(resource pcommon.Resource, resourceSchem
178178
document.AddInt("severity_number", int64(record.SeverityNumber()))
179179
document.AddInt("dropped_attributes_count", int64(record.DroppedAttributesCount()))
180180

181+
if record.EventName() != "" {
182+
document.AddString("event_name", record.EventName())
183+
} else if eventNameAttr, ok := record.Attributes().Get("event.name"); ok && eventNameAttr.Str() != "" {
184+
document.AddString("event_name", eventNameAttr.Str())
185+
}
186+
181187
m.encodeAttributesOTelMode(&document, record.Attributes())
182188
m.encodeResourceOTelMode(&document, resource, resourceSchemaURL)
183189
m.encodeScopeOTelMode(&document, scope, scopeSchemaURL)
184190

185191
// Body
186-
setOTelLogBody(&document, record.Body(), record.Attributes())
192+
setOTelLogBody(&document, record)
187193

188194
return document
189195
}
190196

191-
func setOTelLogBody(doc *objmodel.Document, body pcommon.Value, attributes pcommon.Map) {
197+
func setOTelLogBody(doc *objmodel.Document, record plog.LogRecord) {
192198
// Determine if this log record is an event, as they are mapped differently
193199
// https://github.com/open-telemetry/semantic-conventions/blob/main/docs/general/events.md
194-
_, isEvent := attributes.Get("event.name")
200+
_, isEvent := record.Attributes().Get("event.name")
201+
isEvent = isEvent || record.EventName() != ""
195202

203+
body := record.Body()
196204
switch body.Type() {
197205
case pcommon.ValueTypeMap:
198206
if isEvent {
@@ -734,6 +742,8 @@ func (m *encodeModel) encodeSpanEvent(resource pcommon.Resource, resourceSchemaU
734742
}
735743
var document objmodel.Document
736744
document.AddTimestamp("@timestamp", spanEvent.Timestamp())
745+
document.AddString("event_name", spanEvent.Name())
746+
// todo remove before GA, make sure Kibana uses event_name
737747
document.AddString("attributes.event.name", spanEvent.Name())
738748
document.AddSpanID("span_id", span.SpanID())
739749
document.AddTraceID("trace_id", span.TraceID())

exporter/elasticsearchexporter/model_test.go

+27
Original file line numberDiff line numberDiff line change
@@ -908,6 +908,7 @@ type OTelRecord struct {
908908
ObservedTimestamp time.Time `json:"observed_timestamp"`
909909
SeverityNumber int32 `json:"severity_number"`
910910
SeverityText string `json:"severity_text"`
911+
EventName string `json:"event_name"`
911912
Attributes map[string]any `json:"attributes"`
912913
DroppedAttributesCount uint32 `json:"dropped_attributes_count"`
913914
Scope OTelScope `json:"scope"`
@@ -1076,6 +1077,30 @@ func TestEncodeLogOtelMode(t *testing.T) {
10761077
return assignDatastreamData(or, "", ds, ns)
10771078
},
10781079
},
1080+
{
1081+
name: "event_name from attributes.event.name",
1082+
rec: buildOTelRecordTestData(t, func(or OTelRecord) OTelRecord {
1083+
or.Attributes["event.name"] = "foo"
1084+
or.EventName = ""
1085+
return or
1086+
}),
1087+
wantFn: func(or OTelRecord) OTelRecord {
1088+
or.EventName = "foo"
1089+
return assignDatastreamData(or)
1090+
},
1091+
},
1092+
{
1093+
name: "event_name takes precedent over attributes.event.name",
1094+
rec: buildOTelRecordTestData(t, func(or OTelRecord) OTelRecord {
1095+
or.Attributes["event.name"] = "foo"
1096+
or.EventName = "bar"
1097+
return or
1098+
}),
1099+
wantFn: func(or OTelRecord) OTelRecord {
1100+
or.EventName = "bar"
1101+
return assignDatastreamData(or)
1102+
},
1103+
},
10791104
}
10801105

10811106
m := encodeModel{
@@ -1117,6 +1142,7 @@ func createTestOTelLogRecord(t *testing.T, rec OTelRecord) (plog.LogRecord, pcom
11171142
record.SetSeverityNumber(plog.SeverityNumber(rec.SeverityNumber))
11181143
record.SetSeverityText(rec.SeverityText)
11191144
record.SetDroppedAttributesCount(rec.DroppedAttributesCount)
1145+
record.SetEventName(rec.EventName)
11201146

11211147
err := record.Attributes().FromRaw(rec.Attributes)
11221148
require.NoError(t, err)
@@ -1143,6 +1169,7 @@ func buildOTelRecordTestData(t *testing.T, fn func(OTelRecord) OTelRecord) OTelR
11431169
"event.name": "user-password-change",
11441170
"foo.some": "bar"
11451171
},
1172+
"event_name": "user-password-change",
11461173
"dropped_attributes_count": 1,
11471174
"observed_timestamp": "2024-03-12T20:00:41.123456789Z",
11481175
"resource": {

0 commit comments

Comments
 (0)