Skip to content

Commit 6ed3343

Browse files
authored
Trace sempahore acquire (#190)
* elasticapm: create span in semAcquire * otlp: trace semaphore acquire across consumers
1 parent 3fce460 commit 6ed3343

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

input/elasticapm/processor.go

+3
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,9 @@ func (p *Processor) getStreamReader(r io.Reader) *streamReader {
393393
}
394394

395395
func (p *Processor) semAcquire(ctx context.Context, async bool) error {
396+
sp, ctx := apm.StartSpan(ctx, "Semaphore.Acquire", "Reporter")
397+
defer sp.End()
398+
396399
if async {
397400
if ok := p.sem.TryAcquire(1); !ok {
398401
return ErrQueueFull

input/otlp/logs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (c *Consumer) ConsumeLogs(ctx context.Context, logs plog.Logs) error {
6363
// ConsumeLogsWithResult consumes OpenTelemetry log data, converting into
6464
// the Elastic APM log model and sending to the reporter.
6565
func (c *Consumer) ConsumeLogsWithResult(ctx context.Context, logs plog.Logs) (ConsumeLogsResult, error) {
66-
if err := c.sem.Acquire(ctx, 1); err != nil {
66+
if err := semAcquire(ctx, c.sem, 1); err != nil {
6767
return ConsumeLogsResult{}, err
6868
}
6969
defer c.sem.Release(1)

input/otlp/metrics.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func (c *Consumer) ConsumeMetrics(ctx context.Context, metrics pmetric.Metrics)
6666
func (c *Consumer) ConsumeMetricsWithResult(ctx context.Context, metrics pmetric.Metrics) (ConsumeMetricsResult, error) {
6767
totalDataPoints := int64(metrics.DataPointCount())
6868
totalMetrics := int64(metrics.MetricCount())
69-
if err := c.sem.Acquire(ctx, 1); err != nil {
69+
if err := semAcquire(ctx, c.sem, 1); err != nil {
7070
return ConsumeMetricsResult{}, err
7171
}
7272
defer c.sem.Release(1)

input/otlp/trace-semaphore.go

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// Licensed to Elasticsearch B.V. under one or more contributor
2+
// license agreements. See the NOTICE file distributed with
3+
// this work for additional information regarding copyright
4+
// ownership. Elasticsearch B.V. licenses this file to you under
5+
// the Apache License, Version 2.0 (the "License"); you may
6+
// not use this file except in compliance with the License.
7+
// You may obtain a copy of the License at
8+
//
9+
// http://www.apache.org/licenses/LICENSE-2.0
10+
//
11+
// Unless required by applicable law or agreed to in writing,
12+
// software distributed under the License is distributed on an
13+
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
// KIND, either express or implied. See the License for the
15+
// specific language governing permissions and limitations
16+
// under the License.
17+
18+
package otlp
19+
20+
import (
21+
"context"
22+
23+
"go.elastic.co/apm/v2"
24+
25+
"github.com/elastic/apm-data/input"
26+
)
27+
28+
func semAcquire(ctx context.Context, sem input.Semaphore, i int64) error {
29+
sp, ctx := apm.StartSpan(ctx, "Semaphore.Acquire", "Reporter")
30+
defer sp.End()
31+
32+
return sem.Acquire(ctx, i)
33+
}

input/otlp/traces.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func (c *Consumer) ConsumeTraces(ctx context.Context, traces ptrace.Traces) erro
9494
// ConsumeTracesWithResult consumes OpenTelemetry trace data,
9595
// converting into Elastic APM events and reporting to the Elastic APM schema.
9696
func (c *Consumer) ConsumeTracesWithResult(ctx context.Context, traces ptrace.Traces) (ConsumeTracesResult, error) {
97-
if err := c.sem.Acquire(ctx, 1); err != nil {
97+
if err := semAcquire(ctx, c.sem, 1); err != nil {
9898
return ConsumeTracesResult{}, err
9999
}
100100
defer c.sem.Release(1)

0 commit comments

Comments
 (0)