Skip to content

Commit 332c9bc

Browse files
author
Ignacio Bonafonte
committed
Add experimental information about the specs
1 parent 8da92e7 commit 332c9bc

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

Package.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ let package = Package(
1414
.library(name: "libOpenTelemetryApi", type: .static, targets: ["OpenTelemetryApi"]),
1515
.library(name: "OpenTelemetrySdk", type: .dynamic, targets: ["OpenTelemetrySdk"]),
1616
.library(name: "libOpenTelemetrySdk", type: .static, targets: ["OpenTelemetrySdk"]),
17-
.library(name: "OpenTracingShim", type: .dynamic, targets: ["OpenTracingShim"]),
18-
.library(name: "libOpenTracingShim", type: .static, targets: ["OpenTracingShim"]),
19-
.library(name: "SwiftMetricsShim", type: .dynamic, targets: ["SwiftMetricsShim"]),
20-
.library(name: "libSwiftMetricsShim", type: .static, targets: ["SwiftMetricsShim"]),
17+
.library(name: "OpenTracingShim-experimental", type: .dynamic, targets: ["OpenTracingShim"]),
18+
.library(name: "libOpenTracingShim-experimental", type: .static, targets: ["OpenTracingShim"]),
19+
.library(name: "SwiftMetricsShim-experimental", type: .dynamic, targets: ["SwiftMetricsShim"]),
20+
.library(name: "libSwiftMetricsShim-experimental", type: .static, targets: ["SwiftMetricsShim"]),
2121
.library(name: "JaegerExporter", type: .dynamic, targets: ["JaegerExporter"]),
2222
.library(name: "libJaegerExporter", type: .static, targets: ["JaegerExporter"]),
2323
.library(name: "ZipkinExporter", type: .dynamic, targets: ["ZipkinExporter"]),
2424
.library(name: "libZipkinExporter", type: .static, targets: ["ZipkinExporter"]),
2525
.library(name: "StdoutExporter", type: .dynamic, targets: ["StdoutExporter"]),
2626
.library(name: "libStdoutExporter", type: .static, targets: ["StdoutExporter"]),
27-
.library(name: "PrometheusExporter", type: .dynamic, targets: ["PrometheusExporter"]),
28-
.library(name: "libPrometheusExporter", type: .static, targets: ["PrometheusExporter"]),
27+
.library(name: "PrometheusExporter-experimental", type: .dynamic, targets: ["PrometheusExporter"]),
28+
.library(name: "libPrometheusExporter-experimental", type: .static, targets: ["PrometheusExporter"]),
2929
.library(name: "OpenTelemetryProtocolExporter", type: .dynamic, targets: ["OpenTelemetryProtocolExporter"]),
3030
.library(name: "libOpenTelemetryProtocolExporter", type: .static, targets: ["OpenTelemetryProtocolExporter"]),
3131
.library(name: "InMemoryExporter", type: .dynamic, targets: ["InMemoryExporter"]),

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,14 @@ or
3232
```
3333

3434
## Current status
35-
**Please note** Tracing spec follows version 1.0.1 and should be considered almost stable now. Metrics support is experimental, and the spec is still under development
36-
37-
Currently Tracing, Metrics and Baggage API's and SDK are implemented, also OpenTracing shims, for compatibility with existing Opentracing code.
35+
<!--Please note:
36+
Tracing spec follows version 1.0.1 and should be considered almost stable now.
37+
Metrics support is experimental, and the spec is still under development.
38+
Semantic Conventions AND OpenTracing shim are also experimental.
39+
Libraries only dependant on these experimental status include the experimental postfix
40+
-->
41+
42+
Currently Tracing, Metrics and Baggage API's and SDK are implemented, also OpenTracing shim, for compatibility with existing Opentracing code.
3843

3944
Implemented traces exporters: Stdout, Jaeger, Zipkin, Datadog and OpenTelemetry collector
4045

0 commit comments

Comments
 (0)