Skip to content

Commit 35cc3ec

Browse files
Updating config schema.
1 parent e3567ce commit 35cc3ec

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

config_schema.json

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,20 @@
11
{
22
"fields": [
3-
{
4-
"name": "otel-tracing-disabled",
5-
"description": "Disable OpenTelemetry tracing",
6-
"isOps": true,
7-
"boolField": {}
8-
},
9-
{
10-
"name": "instance-url",
11-
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
12-
"stringField": {}
13-
},
143
{
154
"name": "orgs",
165
"description": "Limit syncing to specific organizations.",
176
"stringSliceField": {}
187
},
198
{
20-
"name": "otel-collector-endpoint-tls-cert-path",
21-
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
9+
"name": "otel-tracing-disabled",
10+
"description": "Disable OpenTelemetry tracing",
2211
"isOps": true,
23-
"stringField": {}
12+
"boolField": {}
13+
},
14+
{
15+
"name": "sync-secrets",
16+
"description": "Whether to sync secrets or not",
17+
"boolField": {}
2418
},
2519
{
2620
"name": "otel-logging-disabled",
@@ -29,30 +23,33 @@
2923
"boolField": {}
3024
},
3125
{
32-
"name": "token",
33-
"description": "The GitHub access token used to connect to the GitHub API.",
26+
"name": "app-privatekey-path",
27+
"description": "Path to private key that is used to connect to the GitHub App",
3428
"stringField": {}
3529
},
3630
{
37-
"name": "otel-collector-endpoint-tls-insecure",
38-
"description": "Allow insecure connections to the OpenTelemetry collector",
31+
"name": "otel-collector-endpoint",
32+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
3933
"isOps": true,
40-
"boolField": {}
34+
"stringField": {}
4135
},
4236
{
43-
"name": "sync-secrets",
44-
"description": "Whether to sync secrets or not",
45-
"boolField": {}
37+
"name": "log-level",
38+
"description": "The log level: debug, info, warn, error",
39+
"isOps": true,
40+
"stringField": {
41+
"defaultValue": "info"
42+
}
4643
},
4744
{
48-
"name": "app-privatekey-path",
49-
"description": "Path to private key that is used to connect to the GitHub App",
45+
"name": "otel-collector-endpoint-tls-cert-path",
46+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
47+
"isOps": true,
5048
"stringField": {}
5149
},
5250
{
53-
"name": "otel-collector-endpoint",
54-
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
55-
"isOps": true,
51+
"name": "token",
52+
"description": "The GitHub access token used to connect to the GitHub API.",
5653
"stringField": {}
5754
},
5855
{
@@ -62,17 +59,20 @@
6259
"stringField": {}
6360
},
6461
{
65-
"name": "app-id",
66-
"description": "The GitHub App to connect to.",
62+
"name": "otel-collector-endpoint-tls-insecure",
63+
"description": "Allow insecure connections to the OpenTelemetry collector",
64+
"isOps": true,
65+
"boolField": {}
66+
},
67+
{
68+
"name": "instance-url",
69+
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
6770
"stringField": {}
6871
},
6972
{
70-
"name": "log-level",
71-
"description": "The log level: debug, info, warn, error",
72-
"isOps": true,
73-
"stringField": {
74-
"defaultValue": "info"
75-
}
73+
"name": "app-id",
74+
"description": "The GitHub App to connect to.",
75+
"stringField": {}
7676
}
7777
],
7878
"constraints": [

0 commit comments

Comments
 (0)