| 12345678910111213141516 |
- # Copyright The OpenTelemetry Authors
- # SPDX-License-Identifier: Apache-2.0
- cc_binary(
- name = "example_simple",
- srcs = [
- "main.cc",
- ],
- linkopts = ["-lpthread"],
- tags = ["ostream"],
- deps = [
- "//api",
- "//exporters/ostream:ostream_span_exporter",
- "//sdk/src/trace",
- ],
- )
|