Skip to content

Commit 0eb55a7

Browse files
authored
Add tags field (apache#46)
1 parent 494a86d commit 0eb55a7

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

common.graphqls

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ type Mutation {
2828
version: String
2929
}
3030

31+
# String key, String value pair.
32+
type KeyValue {
33+
key: String!
34+
value: String
35+
}
36+
3137
# The Duration defines the start and end time for each query operation.
3238
# Fields: `start` and `end`
3339
# represents the time span. And each of them matches the step.

log.graphqls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ type Log {
3434
statusCode: String
3535
contentType: ContentType!
3636
content: String
37+
tags: [KeyValue!]
3738
}
3839

3940
# Represent the conditions used for query logs

trace.graphqls

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,6 @@ enum RefType {
112112
CROSS_THREAD
113113
}
114114

115-
type KeyValue {
116-
key: String!
117-
value: String
118-
}
119-
120115
type LogEntity {
121116
time: Long!
122117
data: [KeyValue!]

0 commit comments

Comments
 (0)