Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: synchronizing json spec #1158

Merged
merged 1 commit into from
Sep 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
]
}
}
}
}