Skip to content

Commit

Permalink
[BUILD] Add bazel missing BUILD file (open-telemetry#2720)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdat00 authored Jun 27, 2024
1 parent fd57e7a commit 7701239
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions examples/etw_threads/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0

cc_binary(
name = "example_etw_threads",
srcs = [
"main.cc",
],
tags = [
"etw",
"examples",
],
target_compatible_with = ["@platforms//os:windows"],
deps = [
"//api",
"//exporters/etw:etw_exporter",
],
)

1 comment on commit 7701239

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'OpenTelemetry-cpp api Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 7701239 Previous: fd57e7a Ratio
BM_SpinLockThrashing/2/process_time/real_time 0.6287054843213185 ms/iter 0.19072338051064688 ms/iter 3.30
BM_SpinLockThrashing/4/process_time/real_time 1.991218990749783 ms/iter 0.6859878362235377 ms/iter 2.90
BM_ProcYieldSpinLockThrashing/2/process_time/real_time 0.6623853392687262 ms/iter 0.2508511885254567 ms/iter 2.64
BM_ProcYieldSpinLockThrashing/4/process_time/real_time 1.9870945747862472 ms/iter 0.6776965182760487 ms/iter 2.93
BM_NaiveSpinLockThrashing/1/process_time/real_time 0.3410819179080971 ms/iter 0.1040068502719085 ms/iter 3.28
BM_NaiveSpinLockThrashing/2/process_time/real_time 1.072457608054666 ms/iter 0.19007626470628675 ms/iter 5.64
BM_NaiveSpinLockThrashing/4/process_time/real_time 1.6998736063639324 ms/iter 0.5966791739830604 ms/iter 2.85

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.