Skip to content

Commit 99c0426

Browse files
Updating config schema.
1 parent 3499c13 commit 99c0426

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,15 +1,15 @@
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)",
4+
"name": "otel-collector-endpoint-tls-insecure",
5+
"description": "Allow insecure connections to the OpenTelemetry collector",
66
"isOps": true,
7-
"stringField": {}
7+
"boolField": {}
88
},
99
{
10-
"name": "orgs",
11-
"description": "Limit syncing to specific organizations.",
12-
"stringSliceField": {}
10+
"name": "instance-url",
11+
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
12+
"stringField": {}
1313
},
1414
{
1515
"name": "otel-collector-endpoint-tls-cert",
@@ -18,41 +18,27 @@
1818
"stringField": {}
1919
},
2020
{
21-
"name": "otel-tracing-disabled",
22-
"description": "Disable OpenTelemetry tracing",
21+
"name": "otel-logging-disabled",
22+
"description": "Disable OpenTelemetry logging",
2323
"isOps": true,
2424
"boolField": {}
2525
},
26-
{
27-
"name": "log-level",
28-
"description": "The log level: debug, info, warn, error",
29-
"isOps": true,
30-
"stringField": {
31-
"defaultValue": "info"
32-
}
33-
},
3426
{
3527
"name": "otel-collector-endpoint-tls-cert-path",
3628
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
3729
"isOps": true,
3830
"stringField": {}
3931
},
4032
{
41-
"name": "instance-url",
42-
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
43-
"stringField": {}
33+
"name": "orgs",
34+
"description": "Limit syncing to specific organizations.",
35+
"stringSliceField": {}
4436
},
4537
{
46-
"name": "app-privatekey-path",
47-
"description": "Path to private key that is used to connect to the GitHub App",
38+
"name": "token",
39+
"description": "The GitHub access token used to connect to the GitHub API.",
4840
"stringField": {}
4941
},
50-
{
51-
"name": "otel-logging-disabled",
52-
"description": "Disable OpenTelemetry logging",
53-
"isOps": true,
54-
"boolField": {}
55-
},
5642
{
5743
"name": "sync-secrets",
5844
"description": "Whether to sync secrets or not",
@@ -64,14 +50,28 @@
6450
"stringField": {}
6551
},
6652
{
67-
"name": "otel-collector-endpoint-tls-insecure",
68-
"description": "Allow insecure connections to the OpenTelemetry collector",
53+
"name": "log-level",
54+
"description": "The log level: debug, info, warn, error",
55+
"isOps": true,
56+
"stringField": {
57+
"defaultValue": "info"
58+
}
59+
},
60+
{
61+
"name": "otel-collector-endpoint",
62+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
63+
"isOps": true,
64+
"stringField": {}
65+
},
66+
{
67+
"name": "otel-tracing-disabled",
68+
"description": "Disable OpenTelemetry tracing",
6969
"isOps": true,
7070
"boolField": {}
7171
},
7272
{
73-
"name": "token",
74-
"description": "The GitHub access token used to connect to the GitHub API.",
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)