BUILD 329 B

12345678910111213141516
  1. # Copyright The OpenTelemetry Authors
  2. # SPDX-License-Identifier: Apache-2.0
  3. cc_binary(
  4. name = "example_simple",
  5. srcs = [
  6. "main.cc",
  7. ],
  8. linkopts = ["-lpthread"],
  9. tags = ["ostream"],
  10. deps = [
  11. "//api",
  12. "//exporters/ostream:ostream_span_exporter",
  13. "//sdk/src/trace",
  14. ],
  15. )