spec/api/opentelemetry_spec.rb (27 lines of code) (raw):

# Licensed to Elasticsearch B.V. under one or more contributor # license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright # ownership. Elasticsearch B.V. licenses this file to you under # the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. if ENV['TEST_WITH_OTEL'] == 'true' require 'spec_helper' context 'OpenTelemetry' do let(:exporter) { EXPORTER } before { exporter.reset } after { exporter.reset } let(:span) { exporter.finished_spans[0] } let(:index) { 'otel_test' } let(:client) do CLIENT end after do client.indices.delete(index: index, ignore: 404) end context 'when a request is instrumented' do it 'sets the span name to the endpoint id' do client.search(body: { query: { match: { a: 1 } } }) expect(span.name).to eq 'search' end it 'sets the path parts' do client.index(index: index, id: 1, body: { title: 'Test' }) expect(span.attributes['db.elasticsearch.path_parts.index']).to eq index expect(span.attributes['db.elasticsearch.path_parts.id']).to eq 1 end end end end