Skip to content

Commit 37e4bda

Browse files
Updating config schema.
1 parent 0c34e27 commit 37e4bda

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

config_schema.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,38 @@
11
{
22
"fields": [
3+
{
4+
"name": "log-level",
5+
"description": "The log level: debug, info, warn, error",
6+
"isOps": true,
7+
"stringField": {
8+
"defaultValue": "info"
9+
}
10+
},
311
{
412
"name": "otel-collector-endpoint",
513
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
614
"isOps": true,
715
"stringField": {}
816
},
917
{
10-
"name": "otel-tracing-disabled",
11-
"description": "Disable OpenTelemetry tracing",
12-
"isOps": true,
18+
"name": "token",
19+
"description": "The GitHub access token used to connect to the GitHub API.",
20+
"stringField": {}
21+
},
22+
{
23+
"name": "sync-secrets",
24+
"description": "Whether to sync secrets or not",
1325
"boolField": {}
1426
},
1527
{
16-
"name": "instance-url",
17-
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
28+
"name": "app-id",
29+
"description": "The GitHub App to connect to.",
1830
"stringField": {}
1931
},
2032
{
21-
"name": "sync-secrets",
22-
"description": "Whether to sync secrets or not",
33+
"name": "otel-logging-disabled",
34+
"description": "Disable OpenTelemetry logging",
35+
"isOps": true,
2336
"boolField": {}
2437
},
2538
{
@@ -28,27 +41,19 @@
2841
"stringSliceField": {}
2942
},
3043
{
31-
"name": "log-level",
32-
"description": "The log level: debug, info, warn, error",
44+
"name": "otel-collector-endpoint-tls-insecure",
45+
"description": "Allow insecure connections to the OpenTelemetry collector",
3346
"isOps": true,
34-
"stringField": {
35-
"defaultValue": "info"
36-
}
37-
},
38-
{
39-
"name": "token",
40-
"description": "The GitHub access token used to connect to the GitHub API.",
41-
"stringField": {}
47+
"boolField": {}
4248
},
4349
{
44-
"name": "otel-collector-endpoint-tls-cert-path",
45-
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
46-
"isOps": true,
50+
"name": "instance-url",
51+
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
4752
"stringField": {}
4853
},
4954
{
50-
"name": "app-id",
51-
"description": "The GitHub App to connect to.",
55+
"name": "app-privatekey-path",
56+
"description": "Path to private key that is used to connect to the GitHub App",
5257
"stringField": {}
5358
},
5459
{
@@ -58,20 +63,15 @@
5863
"stringField": {}
5964
},
6065
{
61-
"name": "otel-collector-endpoint-tls-insecure",
62-
"description": "Allow insecure connections to the OpenTelemetry collector",
66+
"name": "otel-tracing-disabled",
67+
"description": "Disable OpenTelemetry tracing",
6368
"isOps": true,
6469
"boolField": {}
6570
},
6671
{
67-
"name": "otel-logging-disabled",
68-
"description": "Disable OpenTelemetry logging",
72+
"name": "otel-collector-endpoint-tls-cert-path",
73+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
6974
"isOps": true,
70-
"boolField": {}
71-
},
72-
{
73-
"name": "app-privatekey-path",
74-
"description": "Path to private key that is used to connect to the GitHub App",
7575
"stringField": {}
7676
}
7777
],

0 commit comments

Comments
 (0)