We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab98185 commit 62a1b59Copy full SHA for 62a1b59
otlp/README.md
@@ -0,0 +1,14 @@
1
+### Running the OTLP example
2
+
3
+Assuming you're on a unix-alike (mac, linux, etc):
4
5
+In a shell:
6
+```shell
7
+cd docker
8
+docker-compose up
9
+```
10
11
+In a separate shell:
12
13
+../gradlew run
14
otlp/build.gradle.kts
@@ -1,5 +1,6 @@
plugins {
id("java")
+ id("application")
}
description = "OpenTelemetry Example for OTLP Exporters"
@@ -11,6 +12,10 @@ java {
15
+application {
16
+ mainClass = "io.opentelemetry.example.otlp.OtlpExporterExample"
17
+}
18
19
dependencies {
20
implementation("io.opentelemetry:opentelemetry-api")
21
implementation("io.opentelemetry:opentelemetry-sdk")
0 commit comments