Skip to content

Commit

Permalink
test: synchronizing json specs
Browse files Browse the repository at this point in the history
  • Loading branch information
apmmachine authored and mikker committed Sep 7, 2021
1 parent 7aafbf1 commit dd79f45
Showing 1 changed file with 41 additions and 6 deletions.
47 changes: 41 additions & 6 deletions spec/fixtures/span_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"<type>.subtypes.<subtype>.__used_by": "list of agents that use <subtype> to help document alignment (optional)"
},
"app": {
"__description": "Spans within application (usually not calling an external system)",
"allow_null_subtype": true,
"subtypes": {
"inferred": {
Expand Down Expand Up @@ -90,6 +91,12 @@
"ruby"
]
},
"graphql": {
"__description": "GraphQL",
"__used_by": [
"nodejs"
]
},
"h2": {
"__description": "H2",
"__used_by": [
Expand All @@ -112,13 +119,25 @@
"ruby"
]
},
"memcached": {
"__description": "Memcached",
"__used_by": [
"nodejs"
]
},
"mongodb": {
"__description": "MongoDB",
"__used_by": [
"java",
"ruby"
]
},
"mssql": {
"__description": "Microsoft SQL Server",
"__used_by": [
"nodejs"
]
},
"mysql": {
"__description": "MySQL",
"__used_by": [
Expand Down Expand Up @@ -173,20 +192,26 @@
}
},
"external": {
"__description": "Request to external service, usually in request/response pattern",
"subtypes": {
"dubbo": {
"__description": "Apache Dubbo"
"__description": "Apache Dubbo",
"__used_by": [
"java"
]
},
"grpc": {
"__description": "gRPC",
"__used_by": [
"ruby"
"ruby",
"java"
]
},
"http": {
"__description": "HTTP client",
"__used_by": [
"ruby"
"ruby",
"java"
]
}
}
Expand Down Expand Up @@ -254,12 +279,12 @@
},
"storage": {
"subtypes": {
"azureblob": {
"__description": "Azure Blob Storage"
},
"azurefile": {
"__description": "Azure Files"
},
"azuresblob": {
"__description": "Azure Blob Storage"
},
"azuretable": {
"__description": "Azure Storage Table",
"__used_by": [
Expand All @@ -281,5 +306,15 @@
"ruby"
],
"allow_unlisted_subtype": true
},
"websocket": {
"__description": "Websockets",
"subtypes": {
"send": {
"__used_by": [
"nodejs"
]
}
}
}
}

0 comments on commit dd79f45

Please sign in to comment.