forked from open-telemetry/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaturity-matrix.yaml
181 lines (165 loc) · 6.43 KB
/
maturity-matrix.yaml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# OpenTelemetry is a complex project with many moving parts. Thankfully, we
# strive to keep those parts loosely coupled where we can (this has been a goal
# since the very announcement of OpenTelemetry, per this blog post:
# https://medium.com/opentracing/merging-opentracing-and-opencensus-f0fe9c7ca6f0)
#
# This file describes the structure of the project and its sub-components,
# definitions of API and stability maturity levels, and finally records the
# current maturity of each component. We maintain this file as YAML in order to
# make it easier to automate scripts (e.g., for the website) that present the
# data to OpenTelemetry end-users.
###############################################################################
# MATURITY LEVELS
#
# OpenTelemetry components advertise their own maturity along two axes:
# - PRODUCTION MATURITY: How reliable is this component from a
# production-readiness standpoint?
# - API MATURITY: How stable is the component's API from a backwards- and
# forwards-compatibility standpoint)?
#
# In some cases, for instance, OpenTelemetry components may be immature from an
# API maturity standpoint, yet be nearly 100% safe from a production standpoint
# – and vice versa. Similarly, end-users may have more tolerance for lost
# development time or software stability depending on their situation, so we
# strive to separate self-reported maturity along these two axes.
#
# Needless to say, representations here are best-effort, and there is no
# substitute for a mature release process. I.e., don't blindly deploy "mature"
# OpenTelemetry components (or any software, for that matter!).
productionMaturityLevels:
# "unknown" maturity is just what it purports to be. It's reasonable to
# assume "unstable", but we separate "unknown" and "unstable" to distinguish
# between a lack of evidence about production maturity and actual evidence of
# immaturity.
- unknown
# "unstable" components are not recommended for production workloads. They
# may crash the process, introduce performance artifacts, or have known
# security issues.
- unstable
# "beta" components have been used successfully in production workloads at
# scale: that is, the component is used in support of well-known product
# functionality at publicly-held companies. Nevertheless, either due to
# the uncertainty introduced by active development or a small number of
# production environments, they should still be used cautiously in new
# deployments. They do not have known security issues.
- beta
# "stable" components are, to the best of the author's knowledge, safe for
# typical production use cases.
- stable
# All OpenTelemetry APIs follow semver conventions (i.e., after v1.x,
# backwards-incompatible changes should bump the major version number).
apiMaturityLevels:
# "unimplemented" APIs do not exist yet for the component/language.
- unimplemented
# "notApplicable" APIs do not and will never exist for the component/language
# because they are, well, not applicable. For instance, a
# zero-code-modification auto-instrumentation agent would be notApplicable
# for C99.
- notApplicable
# "alpha" maturity APIs can change in incompatible ways at any time.
- alpha
# "beta" maturity APIs should not introduce backwards-incompatible changes
# more than once every three months; and when those changes are introduced, the
# authors will make a best effort to provide compatibility bridges.
#
# Also, for an API to be considered "beta", it must be supported by at least
# two complete implementations, and at least one of those must be for a
# well-known OSS project (e.g., Jaeger or Prometheus).
- beta
# "stable" maturity APIs should not introduce backwards-incompatible changes
# more than once every twelve months, and will make every effort to provide
# compatibility bridges if at all possible.
- stable
###############################################################################
# OPENTELEMETRY COMPONENTS
#
# Some OpenTelemetry components run within end-user applications and thus have
# a footprint across many languages. Naturally, the production and API maturity
# of these components varies from language to language. Other components run as
# infrastructure in their own containers or VMs and thus have a single maturity
# level regardless of the end-user's programming language.
#
# The maturity – or even the existence – of the "perLanguageComponents" varies
# from language to language. These are components that integrate into the
# actual end-user application runtime in production. See "languages" for the
# actual maturity levels.
perLanguageComponents:
- traceAPI
- metricsAPI
- contextAPI
- traceSDK
- metricsSDK
- contextSDK
# The maturity of the "standaloneComponents" is independent of any particular
# end-user programming language.
standaloneComponents:
collector:
api: alpha
production: beta
operator:
api: alpha
production: beta
# For each language, we either specify the perLanguageComponents maturity
# inline, or we specify a single "url" that points to another YAML file with a
# top-level perLanguageComponents key (presumably in the OpenTelemetry language
# repository). E.g., something like this:
#
# languages:
# pascal:
# repoUrl: "https://github.com/open-telemetry/opentelemetry-pascal"
# maturityUrl: "https://raw.githubusercontent.com/open-telemetry/opentelemetry-pascal/master/maturity.yaml"
languages:
java:
repoUrl: "https://github.com/open-telemetry/opentelemetry-java"
traceAPI:
api: alpha
production: beta
metricsAPI:
api: alpha
production: beta
contextAPI:
api: alpha
production: beta
traceSDK:
api: alpha
production: unstable
metricsSDK:
api: alpha
production: unstable
contextSDK:
api: alpha
production: unstable
# TODO once we've converged on the schema for all of this
js: ""
dotnet: ""
ruby: ""
erlang: ""
python: ""
golang:
repoUrl: "https://github.com/open-telemetry/opentelemetry-go"
traceAPI:
api: beta
production: beta
metricsAPI:
api: alpha
production: beta
contextAPI:
api: unimplemented
production: unknown
traceSDK:
api: beta
production: beta
metricsSDK:
api: alpha
production: unstable
contextSDK:
api: unimplemented
production: unknown
php: ""
cpp: ""
rust: ""
otlp:
traces: stable
metrics: beta
logs: alpha
common: stable