@isograph/compiler 0.0.0-main-e437aa19 → 0.0.0-main-cf47f561
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/linux-arm64/isograph_cli +0 -0
- package/artifacts/linux-x64/isograph_cli +0 -0
- package/artifacts/macos-arm64/isograph_cli +0 -0
- package/artifacts/macos-x64/isograph_cli +0 -0
- package/artifacts/win-x64/isograph_cli.exe +0 -0
- package/isograph-config-schema.json +38 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -56,6 +56,33 @@
|
|
|
56
56
|
"esmodule"
|
|
57
57
|
]
|
|
58
58
|
},
|
|
59
|
+
"ConfigFileOpenTelemetryOptions": {
|
|
60
|
+
"type": "object",
|
|
61
|
+
"properties": {
|
|
62
|
+
"collector_endpoint": {
|
|
63
|
+
"description": "OTLP collector endpoint (e.g., http://localhost:4317)",
|
|
64
|
+
"default": null,
|
|
65
|
+
"type": [
|
|
66
|
+
"string",
|
|
67
|
+
"null"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
"enable_tracing": {
|
|
71
|
+
"description": "Enable sending traces to a collector",
|
|
72
|
+
"default": false,
|
|
73
|
+
"type": "boolean"
|
|
74
|
+
},
|
|
75
|
+
"service_name": {
|
|
76
|
+
"description": "Service name for traces",
|
|
77
|
+
"default": null,
|
|
78
|
+
"type": [
|
|
79
|
+
"string",
|
|
80
|
+
"null"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"additionalProperties": false
|
|
85
|
+
},
|
|
59
86
|
"ConfigFileOptionalValidationLevel": {
|
|
60
87
|
"oneOf": [
|
|
61
88
|
{
|
|
@@ -118,6 +145,17 @@
|
|
|
118
145
|
}
|
|
119
146
|
]
|
|
120
147
|
},
|
|
148
|
+
"open_telemetry": {
|
|
149
|
+
"description": "OpenTelemetry tracing configuration",
|
|
150
|
+
"anyOf": [
|
|
151
|
+
{
|
|
152
|
+
"$ref": "#/definitions/ConfigFileOpenTelemetryOptions"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"type": "null"
|
|
156
|
+
}
|
|
157
|
+
]
|
|
158
|
+
},
|
|
121
159
|
"persisted_documents": {
|
|
122
160
|
"description": "Persisted documents options",
|
|
123
161
|
"anyOf": [
|
package/package.json
CHANGED