Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

478 exclude signoz endpoints #479

Merged
merged 3 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions resources/chart/vars/local/values.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,3 @@ baseDomain: 'host.minikube.test'
helmIncubatorRepo: 'https://slateci.io/slate-catalog-incubator/'
# helmStableRepo is the base URL to the SLATE stable Helm repository
helmStableRepo: 'https://slateci.io/slate-catalog-stable/'

# openTelemetryEndpoint is the slate opentel collector
openTelemetryEndpoint: 'XXXX'
2 changes: 1 addition & 1 deletion resources/chart/vars/values.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ harbor:
mailgunEndpoint: 'api.mailgun.net'

# openTelemetryEndpoint is the slate opentel collector
openTelemetryEndpoint: 'https://otel-collector.telemetry.slateci.io:443/v1/traces'
openTelemetryEndpoint: ''

# opsEmail is the destination for email notifications
opsEmail: '[email protected]'
60 changes: 30 additions & 30 deletions resources/docs/config_file.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,34 @@
The parameters for the configuration file that the server
binary accepts is given below

| Parameter | Type | Notes | Default Value |
|-----------------------|---------|---------------------------------------------------------|-----------------------------------------------------------|
| awsAccessKey | String | Access key to AWS DynamoDB account being used by server | |
| awsSecretKey | String | Secret key to AWS DynamoDB account being used by server | |
| awsRegion | String | AWS region hosting DynamoDB used by server | us-east-1 |
| awsURLScheme | String | should be http or https | http |
| awsEndpoint | String | url to AWS endpoint | localhost:8000 |
| baseDomain | String | base domain for generated dns subdomains | slateci.net |
| helmStableRepo | String | url to helm repo for stable charts | https://jenkins.slateci.io/catalog/stable/ |
| helmIncubatorRepo | String | url to helm repo for incubator charts | https://jenkins.slateci.io/catalog/incubator/ |
| openTelemetryEndpoint | String | url to opentelemetry collector | https://otel-collector.telemetry.slateci.io:443/v1/traces |
| disableTelemetry | Boolean | enable opentelemetry? | false |
| disableSampling | Boolean | only sample 50% of traces? | false |
| serverInstance | String | name for server instance | SlateAPIServer-1 |
| serverEnvironment | String | name for server environment (e.g. development) | dev |
| geocodeEndpoint | String | url for geocoding service | https://geocode.xyz |
| geocodeToken | String | Token for geocode service | |
| port | String | Port that server will use | 18080 |
| sslCertificate | String | Path to ssl certificate file | |
| sslKey | String | Path to ssl key file | |
| bootstrapUserFile | String | Path to file with user to bootstrap slate | slate_portal_user |
| encryptionKeyFile | String | Path to file with encryption key that server will use | encryptionKey |
| appLoggingServerName | String | Name to use when logging | |
| appLoggingServerPort | Integer | Port to use for app logging | 9200 |
| allowAdHocApps | Boolean | Allow ad-hoc applications to be installed? | false |
| mailgunEndpoint | String | domain for mailgun endpoint | api.mailgun.net |
| mailgunKey | String | Key used to authenticate to mailgun | |
| emailDomain | String | domain to use for outgoing emails | slateci.io |
| opsEmail | String | email address to use for outgoing emails | [email protected] |
| threads | Integer | number of threads to run | 0 |
| Parameter | Type | Notes | Default Value |
|-----------------------|---------|---------------------------------------------------------|---------------------------------------------|
| awsAccessKey | String | Access key to AWS DynamoDB account being used by server | |
| awsSecretKey | String | Secret key to AWS DynamoDB account being used by server | |
| awsRegion | String | AWS region hosting DynamoDB used by server | us-east-1 |
| awsURLScheme | String | should be http or https | http |
| awsEndpoint | String | url to AWS endpoint | localhost:8000 |
| baseDomain | String | base domain for generated dns subdomains | slateci.net |
| helmStableRepo | String | url to helm repo for stable charts | https://slateci.io/slate-catalog-stable/ |
| helmIncubatorRepo | String | url to helm repo for incubator charts | https://slateci.io/slate-catalog-incubator/ |
| openTelemetryEndpoint | String | url to opentelemetry collector | '' |
| disableTelemetry | Boolean | enable opentelemetry? | false |
| disableSampling | Boolean | only sample 50% of traces? | false |
| serverInstance | String | name for server instance | SlateAPIServer-1 |
| serverEnvironment | String | name for server environment (e.g. development) | dev |
| geocodeEndpoint | String | url for geocoding service | https://geocode.xyz |
| geocodeToken | String | Token for geocode service | |
| port | String | Port that server will use | 18080 |
| sslCertificate | String | Path to ssl certificate file | |
| sslKey | String | Path to ssl key file | |
| bootstrapUserFile | String | Path to file with user to bootstrap slate | slate_portal_user |
| encryptionKeyFile | String | Path to file with encryption key that server will use | encryptionKey |
| appLoggingServerName | String | Name to use when logging | |
| appLoggingServerPort | Integer | Port to use for app logging | 9200 |
| allowAdHocApps | Boolean | Allow ad-hoc applications to be installed? | false |
| mailgunEndpoint | String | domain for mailgun endpoint | api.mailgun.net |
| mailgunKey | String | Key used to authenticate to mailgun | |
| emailDomain | String | domain to use for outgoing emails | slateci.io |
| opsEmail | String | email address to use for outgoing emails | [email protected] |
| threads | Integer | number of threads to run | 0 |

6 changes: 3 additions & 3 deletions src/slate_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ struct Configuration{
mailgunEndpoint("api.mailgun.net"),
emailDomain("slateci.io"),
opsEmail("[email protected]"),
helmStableRepo("https://jenkins.slateci.io/catalog/stable/"),
helmIncubatorRepo("https://jenkins.slateci.io/catalog/incubator/"),
openTelemetryEndpoint("https://otel-collector.telemetry.slateci.io:443/v1/traces"),
helmStableRepo("https://slateci.io/slate-catalog-stable/"),
helmIncubatorRepo("https://slateci.io/slate-catalog-incubator/"),
openTelemetryEndpoint(""),
disableTelemetry(false),
disableTelemetrySampling(false),
serverInstance("SlateAPIServer-1"),
Expand Down
Loading