Skip to content

Commit 55a85f5

Browse files
Updating config schema.
1 parent 37e4bda commit 55a85f5

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

config_schema.json

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,77 @@
11
{
22
"fields": [
33
{
4-
"name": "log-level",
5-
"description": "The log level: debug, info, warn, error",
6-
"isOps": true,
7-
"stringField": {
8-
"defaultValue": "info"
9-
}
10-
},
11-
{
12-
"name": "otel-collector-endpoint",
13-
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
4+
"name": "otel-collector-endpoint-tls-cert",
5+
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
146
"isOps": true,
157
"stringField": {}
168
},
179
{
18-
"name": "token",
19-
"description": "The GitHub access token used to connect to the GitHub API.",
20-
"stringField": {}
10+
"name": "otel-collector-endpoint-tls-insecure",
11+
"description": "Allow insecure connections to the OpenTelemetry collector",
12+
"isOps": true,
13+
"boolField": {}
2114
},
2215
{
23-
"name": "sync-secrets",
24-
"description": "Whether to sync secrets or not",
16+
"name": "otel-logging-disabled",
17+
"description": "Disable OpenTelemetry logging",
18+
"isOps": true,
2519
"boolField": {}
2620
},
2721
{
28-
"name": "app-id",
29-
"description": "The GitHub App to connect to.",
22+
"name": "instance-url",
23+
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
3024
"stringField": {}
3125
},
3226
{
33-
"name": "otel-logging-disabled",
34-
"description": "Disable OpenTelemetry logging",
27+
"name": "otel-collector-endpoint-tls-cert-path",
28+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
3529
"isOps": true,
36-
"boolField": {}
30+
"stringField": {}
3731
},
3832
{
39-
"name": "orgs",
40-
"description": "Limit syncing to specific organizations.",
41-
"stringSliceField": {}
33+
"name": "otel-tracing-disabled",
34+
"description": "Disable OpenTelemetry tracing",
35+
"isOps": true,
36+
"boolField": {}
4237
},
4338
{
44-
"name": "otel-collector-endpoint-tls-insecure",
45-
"description": "Allow insecure connections to the OpenTelemetry collector",
39+
"name": "log-level",
40+
"description": "The log level: debug, info, warn, error",
4641
"isOps": true,
47-
"boolField": {}
42+
"stringField": {
43+
"defaultValue": "info"
44+
}
4845
},
4946
{
50-
"name": "instance-url",
51-
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
52-
"stringField": {}
47+
"name": "orgs",
48+
"description": "Limit syncing to specific organizations.",
49+
"stringSliceField": {}
5350
},
5451
{
5552
"name": "app-privatekey-path",
5653
"description": "Path to private key that is used to connect to the GitHub App",
5754
"stringField": {}
5855
},
5956
{
60-
"name": "otel-collector-endpoint-tls-cert",
61-
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
57+
"name": "otel-collector-endpoint",
58+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
6259
"isOps": true,
6360
"stringField": {}
6461
},
6562
{
66-
"name": "otel-tracing-disabled",
67-
"description": "Disable OpenTelemetry tracing",
68-
"isOps": true,
63+
"name": "token",
64+
"description": "The GitHub access token used to connect to the GitHub API.",
65+
"stringField": {}
66+
},
67+
{
68+
"name": "sync-secrets",
69+
"description": "Whether to sync secrets or not",
6970
"boolField": {}
7071
},
7172
{
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",
74-
"isOps": true,
73+
"name": "app-id",
74+
"description": "The GitHub App to connect to.",
7575
"stringField": {}
7676
}
7777
],

0 commit comments

Comments
 (0)