Skip to content

Commit ad1520b

Browse files
Updating config schema.
1 parent 9b33148 commit ad1520b

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

config_schema.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,12 @@
11
{
22
"fields": [
33
{
4-
"name": "otel-collector-endpoint",
5-
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
6-
"isOps": true,
7-
"stringField": {}
8-
},
9-
{
10-
"name": "otel-collector-endpoint-tls-cert",
11-
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
12-
"isOps": true,
13-
"stringField": {}
14-
},
15-
{
16-
"name": "otel-logging-disabled",
17-
"description": "Disable OpenTelemetry logging",
4+
"name": "log-level",
5+
"description": "The log level: debug, info, warn, error",
186
"isOps": true,
19-
"boolField": {}
7+
"stringField": {
8+
"defaultValue": "info"
9+
}
2010
},
2111
{
2212
"name": "otel-tracing-disabled",
@@ -30,45 +20,55 @@
3020
"stringField": {}
3121
},
3222
{
33-
"name": "log-level",
34-
"description": "The log level: debug, info, warn, error",
35-
"isOps": true,
36-
"stringField": {
37-
"defaultValue": "info"
38-
}
23+
"name": "token",
24+
"description": "The GitHub access token used to connect to the GitHub API.",
25+
"stringField": {}
3926
},
4027
{
41-
"name": "instance-url",
42-
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
28+
"name": "otel-collector-endpoint-tls-cert",
29+
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
30+
"isOps": true,
4331
"stringField": {}
4432
},
4533
{
46-
"name": "orgs",
47-
"description": "Limit syncing to specific organizations.",
48-
"stringSliceField": {}
34+
"name": "otel-collector-endpoint",
35+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
36+
"isOps": true,
37+
"stringField": {}
4938
},
5039
{
5140
"name": "sync-secrets",
5241
"description": "Whether to sync secrets or not",
5342
"boolField": {}
5443
},
5544
{
56-
"name": "token",
57-
"description": "The GitHub access token used to connect to the GitHub API.",
58-
"stringField": {}
45+
"name": "orgs",
46+
"description": "Limit syncing to specific organizations.",
47+
"stringSliceField": {}
5948
},
6049
{
6150
"name": "otel-collector-endpoint-tls-cert-path",
6251
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
6352
"isOps": true,
6453
"stringField": {}
6554
},
55+
{
56+
"name": "instance-url",
57+
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
58+
"stringField": {}
59+
},
6660
{
6761
"name": "otel-collector-endpoint-tls-insecure",
6862
"description": "Allow insecure connections to the OpenTelemetry collector",
6963
"isOps": true,
7064
"boolField": {}
7165
},
66+
{
67+
"name": "otel-logging-disabled",
68+
"description": "Disable OpenTelemetry logging",
69+
"isOps": true,
70+
"boolField": {}
71+
},
7272
{
7373
"name": "app-id",
7474
"description": "The GitHub App to connect to.",

0 commit comments

Comments
 (0)