File: vcs_attributes.h

package info (click to toggle)
opentelemetry-cpp 1.23.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,372 kB
  • sloc: cpp: 96,239; sh: 1,766; makefile: 36; python: 31
file content (351 lines) | stat: -rw-r--r-- 11,957 bytes parent folder | download
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

/*
 * DO NOT EDIT, this is an Auto-generated file from:
 * buildscripts/semantic-convention/templates/registry/semantic_attributes-h.j2
 */

#pragma once

#include "opentelemetry/common/macros.h"
#include "opentelemetry/version.h"

OPENTELEMETRY_BEGIN_NAMESPACE
namespace semconv
{
namespace vcs
{

/**
  The ID of the change (pull request/merge request/changelist) if applicable. This is usually a
  unique (within repository) identifier generated by the VCS system.
 */
static constexpr const char *kVcsChangeId = "vcs.change.id";

/**
  The state of the change (pull request/merge request/changelist).
 */
static constexpr const char *kVcsChangeState = "vcs.change.state";

/**
  The human readable title of the change (pull request/merge request/changelist). This title is
  often a brief summary of the change and may get merged in to a ref as the commit summary.
 */
static constexpr const char *kVcsChangeTitle = "vcs.change.title";

/**
  The type of line change being measured on a branch or change.
 */
static constexpr const char *kVcsLineChangeType = "vcs.line_change.type";

/**
  The group owner within the version control system.
 */
static constexpr const char *kVcsOwnerName = "vcs.owner.name";

/**
  The name of the version control system provider.
 */
static constexpr const char *kVcsProviderName = "vcs.provider.name";

/**
  The name of the <a href="https://git-scm.com/docs/gitglossary#def_ref">reference</a> such as
  <strong>branch</strong> or <strong>tag</strong> in the repository. <p>
  @code base @endcode refers to the starting point of a change. For example, @code main @endcode
  would be the base reference of type branch if you've created a new
  reference of type branch from it and created new commits.
 */
static constexpr const char *kVcsRefBaseName = "vcs.ref.base.name";

/**
  The revision, literally <a href="https://www.merriam-webster.com/dictionary/revision">revised
  version</a>, The revision most often refers to a commit object in Git, or a revision number in
  SVN. <p>
  @code base @endcode refers to the starting point of a change. For example, @code main @endcode
  would be the base reference of type branch if you've created a new
  reference of type branch from it and created new commits. The
  revision can be a full <a href="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf">hash
  value (see glossary)</a>, of the recorded change to a ref within a repository pointing to a commit
  <a href="https://git-scm.com/docs/git-commit">commit</a> object. It does not necessarily have to
  be a hash; it can simply define a <a
  href="https://svnbook.red-bean.com/en/1.7/svn.tour.revs.specifiers.html">revision number</a> which
  is an integer that is monotonically increasing. In cases where it is identical to the @code
  ref.base.name @endcode, it SHOULD still be included. It is up to the implementer to decide which
  value to set as the revision based on the VCS system and situational context.
 */
static constexpr const char *kVcsRefBaseRevision = "vcs.ref.base.revision";

/**
  The type of the <a href="https://git-scm.com/docs/gitglossary#def_ref">reference</a> in the
  repository. <p>
  @code base @endcode refers to the starting point of a change. For example, @code main @endcode
  would be the base reference of type branch if you've created a new
  reference of type branch from it and created new commits.
 */
static constexpr const char *kVcsRefBaseType = "vcs.ref.base.type";

/**
  The name of the <a href="https://git-scm.com/docs/gitglossary#def_ref">reference</a> such as
  <strong>branch</strong> or <strong>tag</strong> in the repository. <p>
  @code head @endcode refers to where you are right now; the current reference at a
  given time.
 */
static constexpr const char *kVcsRefHeadName = "vcs.ref.head.name";

/**
  The revision, literally <a href="https://www.merriam-webster.com/dictionary/revision">revised
  version</a>, The revision most often refers to a commit object in Git, or a revision number in
  SVN. <p>
  @code head @endcode refers to where you are right now; the current reference at a
  given time.The revision can be a full <a
  href="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf">hash value (see glossary)</a>,
  of the recorded change to a ref within a repository pointing to a
  commit <a href="https://git-scm.com/docs/git-commit">commit</a> object. It does
  not necessarily have to be a hash; it can simply define a <a
  href="https://svnbook.red-bean.com/en/1.7/svn.tour.revs.specifiers.html">revision number</a> which
  is an integer that is monotonically increasing. In cases where it is identical to the @code
  ref.head.name @endcode, it SHOULD still be included. It is up to the implementer to decide which
  value to set as the revision based on the VCS system and situational context.
 */
static constexpr const char *kVcsRefHeadRevision = "vcs.ref.head.revision";

/**
  The type of the <a href="https://git-scm.com/docs/gitglossary#def_ref">reference</a> in the
  repository. <p>
  @code head @endcode refers to where you are right now; the current reference at a
  given time.
 */
static constexpr const char *kVcsRefHeadType = "vcs.ref.head.type";

/**
  The type of the <a href="https://git-scm.com/docs/gitglossary#def_ref">reference</a> in the
  repository.
 */
static constexpr const char *kVcsRefType = "vcs.ref.type";

/**
  Deprecated, use @code vcs.change.id @endcode instead.

  @deprecated
  {"note": "Replaced by @code vcs.change.id @endcode.", "reason": "renamed", "renamed_to":
  "vcs.change.id"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kVcsRepositoryChangeId =
    "vcs.repository.change.id";

/**
  Deprecated, use @code vcs.change.title @endcode instead.

  @deprecated
  {"note": "Replaced by @code vcs.change.title @endcode.", "reason": "renamed", "renamed_to":
  "vcs.change.title"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kVcsRepositoryChangeTitle =
    "vcs.repository.change.title";

/**
  The human readable name of the repository. It SHOULD NOT include any additional identifier like
  Group/SubGroup in GitLab or organization in GitHub. <p> Due to it only being the name, it can
  clash with forks of the same repository if collecting telemetry across multiple orgs or groups in
  the same backends.
 */
static constexpr const char *kVcsRepositoryName = "vcs.repository.name";

/**
  Deprecated, use @code vcs.ref.head.name @endcode instead.

  @deprecated
  {"note": "Replaced by @code vcs.ref.head.name @endcode.", "reason": "renamed", "renamed_to":
  "vcs.ref.head.name"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kVcsRepositoryRefName =
    "vcs.repository.ref.name";

/**
  Deprecated, use @code vcs.ref.head.revision @endcode instead.

  @deprecated
  {"note": "Replaced by @code vcs.ref.head.revision @endcode.", "reason": "renamed", "renamed_to":
  "vcs.ref.head.revision"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kVcsRepositoryRefRevision =
    "vcs.repository.ref.revision";

/**
  Deprecated, use @code vcs.ref.head.type @endcode instead.

  @deprecated
  {"note": "Replaced by @code vcs.ref.head.type @endcode.", "reason": "renamed", "renamed_to":
  "vcs.ref.head.type"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kVcsRepositoryRefType =
    "vcs.repository.ref.type";

/**
  The <a
  href="https://support.google.com/webmasters/answer/10347851?hl=en#:~:text=A%20canonical%20URL%20is%20the,Google%20chooses%20one%20as%20canonical.">canonical
  URL</a> of the repository providing the complete HTTP(S) address in order to locate and identify
  the repository through a browser. <p> In Git Version Control Systems, the canonical URL SHOULD NOT
  include the @code .git @endcode extension.
 */
static constexpr const char *kVcsRepositoryUrlFull = "vcs.repository.url.full";

/**
  The type of revision comparison.
 */
static constexpr const char *kVcsRevisionDeltaDirection = "vcs.revision_delta.direction";

namespace VcsChangeStateValues
{
/**
  Open means the change is currently active and under review. It hasn't been merged into the target
  branch yet, and it's still possible to make changes or add comments.
 */
static constexpr const char *kOpen = "open";

/**
  WIP (work-in-progress, draft) means the change is still in progress and not yet ready for a full
  review. It might still undergo significant changes.
 */
static constexpr const char *kWip = "wip";

/**
  Closed means the merge request has been closed without merging. This can happen for various
  reasons, such as the changes being deemed unnecessary, the issue being resolved in another way, or
  the author deciding to withdraw the request.
 */
static constexpr const char *kClosed = "closed";

/**
  Merged indicates that the change has been successfully integrated into the target codebase.
 */
static constexpr const char *kMerged = "merged";

}  // namespace VcsChangeStateValues

namespace VcsLineChangeTypeValues
{
/**
  How many lines were added.
 */
static constexpr const char *kAdded = "added";

/**
  How many lines were removed.
 */
static constexpr const char *kRemoved = "removed";

}  // namespace VcsLineChangeTypeValues

namespace VcsProviderNameValues
{
/**
  <a href="https://github.com">GitHub</a>
 */
static constexpr const char *kGithub = "github";

/**
  <a href="https://gitlab.com">GitLab</a>
 */
static constexpr const char *kGitlab = "gitlab";

/**
  Deprecated, use @code gitea @endcode instead.

  @deprecated
  {"note": "Replaced by @code gitea @endcode.", "reason": "renamed", "renamed_to": "gitea"}
 */
OPENTELEMETRY_DEPRECATED static constexpr const char *kGittea = "gittea";

/**
  <a href="https://gitea.io">Gitea</a>
 */
static constexpr const char *kGitea = "gitea";

/**
  <a href="https://bitbucket.org">Bitbucket</a>
 */
static constexpr const char *kBitbucket = "bitbucket";

}  // namespace VcsProviderNameValues

namespace VcsRefBaseTypeValues
{
/**
  <a
  href="https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefbranchabranch">branch</a>
 */
static constexpr const char *kBranch = "branch";

/**
  <a href="https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddeftagatag">tag</a>
 */
static constexpr const char *kTag = "tag";

}  // namespace VcsRefBaseTypeValues

namespace VcsRefHeadTypeValues
{
/**
  <a
  href="https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefbranchabranch">branch</a>
 */
static constexpr const char *kBranch = "branch";

/**
  <a href="https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddeftagatag">tag</a>
 */
static constexpr const char *kTag = "tag";

}  // namespace VcsRefHeadTypeValues

namespace VcsRefTypeValues
{
/**
  <a
  href="https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefbranchabranch">branch</a>
 */
static constexpr const char *kBranch = "branch";

/**
  <a href="https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddeftagatag">tag</a>
 */
static constexpr const char *kTag = "tag";

}  // namespace VcsRefTypeValues

namespace VcsRepositoryRefTypeValues
{
/**
  <a
  href="https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefbranchabranch">branch</a>
 */
static constexpr const char *kBranch = "branch";

/**
  <a href="https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddeftagatag">tag</a>
 */
static constexpr const char *kTag = "tag";

}  // namespace VcsRepositoryRefTypeValues

namespace VcsRevisionDeltaDirectionValues
{
/**
  How many revisions the change is behind the target ref.
 */
static constexpr const char *kBehind = "behind";

/**
  How many revisions the change is ahead of the target ref.
 */
static constexpr const char *kAhead = "ahead";

}  // namespace VcsRevisionDeltaDirectionValues

}  // namespace vcs
}  // namespace semconv
OPENTELEMETRY_END_NAMESPACE