Skip to content

Commit 780b76b

Browse files
Updating config schema.
1 parent abaa4e2 commit 780b76b

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,11 +1,16 @@
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-cert",
5+
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
66
"isOps": true,
77
"stringField": {}
88
},
9+
{
10+
"name": "orgs",
11+
"description": "Limit syncing to specific organizations.",
12+
"stringSliceField": {}
13+
},
914
{
1015
"name": "instance-url",
1116
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
@@ -17,37 +22,30 @@
1722
"boolField": {}
1823
},
1924
{
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",
22-
"isOps": true,
25+
"name": "app-privatekey-path",
26+
"description": "Path to private key that is used to connect to the GitHub App",
2327
"stringField": {}
2428
},
2529
{
26-
"name": "otel-logging-disabled",
27-
"description": "Disable OpenTelemetry logging",
28-
"isOps": true,
29-
"boolField": {}
30-
},
31-
{
32-
"name": "otel-tracing-disabled",
33-
"description": "Disable OpenTelemetry tracing",
34-
"isOps": true,
35-
"boolField": {}
30+
"name": "token",
31+
"description": "The GitHub access token used to connect to the GitHub API.",
32+
"stringField": {}
3633
},
3734
{
38-
"name": "otel-collector-endpoint-tls-cert",
39-
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
35+
"name": "otel-collector-endpoint",
36+
"description": "The endpoint of the OpenTelemetry collector to send observability data to (used for both tracing and logging if specific endpoints are not provided)",
4037
"isOps": true,
4138
"stringField": {}
4239
},
4340
{
44-
"name": "token",
45-
"description": "The GitHub access token used to connect to the GitHub API.",
41+
"name": "otel-collector-endpoint-tls-cert-path",
42+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
43+
"isOps": true,
4644
"stringField": {}
4745
},
4846
{
49-
"name": "app-privatekey-path",
50-
"description": "Path to private key that is used to connect to the GitHub App",
47+
"name": "app-id",
48+
"description": "The GitHub App to connect to.",
5149
"stringField": {}
5250
},
5351
{
@@ -58,21 +56,23 @@
5856
"defaultValue": "info"
5957
}
6058
},
61-
{
62-
"name": "app-id",
63-
"description": "The GitHub App to connect to.",
64-
"stringField": {}
65-
},
6659
{
6760
"name": "otel-collector-endpoint-tls-insecure",
6861
"description": "Allow insecure connections to the OpenTelemetry collector",
6962
"isOps": true,
7063
"boolField": {}
7164
},
7265
{
73-
"name": "orgs",
74-
"description": "Limit syncing to specific organizations.",
75-
"stringSliceField": {}
66+
"name": "otel-tracing-disabled",
67+
"description": "Disable OpenTelemetry tracing",
68+
"isOps": true,
69+
"boolField": {}
70+
},
71+
{
72+
"name": "otel-logging-disabled",
73+
"description": "Disable OpenTelemetry logging",
74+
"isOps": true,
75+
"boolField": {}
7676
}
7777
],
7878
"constraints": [

0 commit comments

Comments
 (0)