-
Notifications
You must be signed in to change notification settings - Fork 4
/
semconv.go
41 lines (36 loc) · 1.17 KB
/
semconv.go
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
package main
const (
Junit2otlp = "junit2otlp"
// git keys
GitAdditions = "scm.git.additions"
GitCloneDepth = "scm.git.clone.depth"
GitCloneShallow = "scm.git.clone.shallow"
GitDeletions = "scm.git.deletions"
GitModifiedFiles = "scm.git.files.modified"
// scm keys
ScmAuthors = "scm.authors"
ScmBaseRef = "scm.baseRef"
ScmBranch = "scm.branch"
ScmCommitters = "scm.committers"
ScmProvider = "scm.provider"
ScmRepository = "scm.repository"
ScmType = "scm.type"
// suite keys
FailedTestsCount = "tests.suite.failed"
ErrorTestsCount = "tests.suite.error"
PassedTestsCount = "tests.suite.passed"
SkippedTestsCount = "tests.suite.skipped"
TestsDuration = "tests.suite.duration"
TestsSuiteName = "tests.suite.suitename"
TestsSystemErr = "tests.suite.systemerr"
TestsSystemOut = "tests.suite.systemout"
TotalTestsCount = "tests.suite.total"
// test keys
TestClassName = "tests.case.classname"
TestDuration = "tests.case.duration"
TestError = "tests.case.error"
TestMessage = "tests.case.message"
TestStatus = "tests.case.status"
TestSystemErr = "tests.case.systemerr"
TestSystemOut = "tests.case.systemout"
)