1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
cc_binary(
name = "example_otlp_grpc",
srcs = [
"grpc_main.cc",
],
tags = [
"examples",
"otlp",
"otlp_grpc",
],
deps = [
"//api",
"//examples/common/foo_library:common_foo_library",
"//exporters/otlp:otlp_grpc_exporter",
"//sdk/src/trace",
],
)
cc_binary(
name = "example_otlp_http",
srcs = [
"http_main.cc",
],
tags = [
"examples",
"otlp",
"otlp_http",
],
deps = [
"//api",
"//examples/common/foo_library:common_foo_library",
"//exporters/otlp:otlp_http_exporter",
"//sdk/src/trace",
],
)
cc_binary(
name = "example_otlp_http_log",
srcs = [
"http_log_main.cc",
],
tags = [
"examples",
"otlp",
"otlp_http_log",
],
deps = [
"//api",
"//examples/common/logs_foo_library:common_logs_foo_library",
"//exporters/otlp:otlp_http_exporter",
"//exporters/otlp:otlp_http_log_exporter",
"//sdk/src/trace",
],
)
cc_binary(
name = "example_otlp_grpc_log",
srcs = [
"grpc_log_main.cc",
],
tags = [
"examples",
"otlp",
"otlp_grpc_log",
],
deps = [
"//api",
"//examples/common/logs_foo_library:common_logs_foo_library",
"//exporters/otlp:otlp_grpc_exporter",
"//exporters/otlp:otlp_grpc_log_exporter",
"//sdk/src/trace",
],
)
|