Skip to content

Commit 3d72cd5

Browse files
Updating config schema.
1 parent 6bf2cd5 commit 3d72cd5

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

config_schema.json

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
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-
},
113
{
124
"name": "otel-collector-endpoint-tls-cert",
135
"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": "app-id",
19-
"description": "The GitHub App to connect to.",
10+
"name": "otel-collector-endpoint",
11+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
12+
"isOps": true,
2013
"stringField": {}
2114
},
2215
{
23-
"name": "orgs",
24-
"description": "Limit syncing to specific organizations.",
25-
"stringSliceField": {}
16+
"name": "otel-collector-endpoint-tls-insecure",
17+
"description": "Allow insecure connections to the OpenTelemetry collector",
18+
"isOps": true,
19+
"boolField": {}
20+
},
21+
{
22+
"name": "token",
23+
"description": "The GitHub access token used to connect to the GitHub API.",
24+
"stringField": {}
2625
},
2726
{
2827
"name": "otel-logging-disabled",
@@ -31,13 +30,14 @@
3130
"boolField": {}
3231
},
3332
{
34-
"name": "instance-url",
35-
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
33+
"name": "app-privatekey-path",
34+
"description": "Path to private key that is used to connect to the GitHub App",
3635
"stringField": {}
3736
},
3837
{
39-
"name": "sync-secrets",
40-
"description": "Whether to sync secrets or not",
38+
"name": "otel-tracing-disabled",
39+
"description": "Disable OpenTelemetry tracing",
40+
"isOps": true,
4141
"boolField": {}
4242
},
4343
{
@@ -47,32 +47,32 @@
4747
"stringField": {}
4848
},
4949
{
50-
"name": "otel-collector-endpoint",
51-
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
52-
"isOps": true,
53-
"stringField": {}
50+
"name": "orgs",
51+
"description": "Limit syncing to specific organizations.",
52+
"stringSliceField": {}
5453
},
5554
{
56-
"name": "otel-collector-endpoint-tls-insecure",
57-
"description": "Allow insecure connections to the OpenTelemetry collector",
55+
"name": "log-level",
56+
"description": "The log level: debug, info, warn, error",
5857
"isOps": true,
59-
"boolField": {}
58+
"stringField": {
59+
"defaultValue": "info"
60+
}
6061
},
6162
{
62-
"name": "token",
63-
"description": "The GitHub access token used to connect to the GitHub API.",
64-
"stringField": {}
63+
"name": "sync-secrets",
64+
"description": "Whether to sync secrets or not",
65+
"boolField": {}
6566
},
6667
{
67-
"name": "app-privatekey-path",
68-
"description": "Path to private key that is used to connect to the GitHub App",
68+
"name": "app-id",
69+
"description": "The GitHub App to connect to.",
6970
"stringField": {}
7071
},
7172
{
72-
"name": "otel-tracing-disabled",
73-
"description": "Disable OpenTelemetry tracing",
74-
"isOps": true,
75-
"boolField": {}
73+
"name": "instance-url",
74+
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
75+
"stringField": {}
7676
}
7777
],
7878
"constraints": [

0 commit comments

Comments
 (0)