You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-31 09:24:31 +03:00
Also disable otlp exporter by default
This commit is contained in:
@ -16,7 +16,7 @@ See the [Documentation](https://matrix-org.github.io/matrix-authentication-servi
|
|||||||
cd frontend
|
cd frontend
|
||||||
npm ci
|
npm ci
|
||||||
npm run build
|
npm run build
|
||||||
cd ../..
|
cd ..
|
||||||
```
|
```
|
||||||
- Build the Open Policy Agent policies
|
- Build the Open Policy Agent policies
|
||||||
```sh
|
```sh
|
||||||
@ -24,7 +24,7 @@ See the [Documentation](https://matrix-org.github.io/matrix-authentication-servi
|
|||||||
make
|
make
|
||||||
# OR, if you don't have `opa` installed and want to build through the OPA docker image
|
# OR, if you don't have `opa` installed and want to build through the OPA docker image
|
||||||
make DOCKER=1
|
make DOCKER=1
|
||||||
cd ../../..
|
cd ..
|
||||||
```
|
```
|
||||||
- Generate the sample config via `cargo run -- config generate > config.yaml`
|
- Generate the sample config via `cargo run -- config generate > config.yaml`
|
||||||
- Run the database migrations via `cargo run -- database migrate`
|
- Run the database migrations via `cargo run -- database migrate`
|
||||||
|
@ -57,7 +57,7 @@ mas-templates = { path = "../templates" }
|
|||||||
indoc = "1.0.7"
|
indoc = "1.0.7"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["otlp", "jaeger", "zipkin", "prometheus", "webpki-roots", "policy-cache"]
|
default = ["jaeger", "zipkin", "prometheus", "webpki-roots", "policy-cache"]
|
||||||
|
|
||||||
# Features used in the Docker image
|
# Features used in the Docker image
|
||||||
docker = ["otlp", "jaeger", "zipkin", "prometheus", "native-roots", "mas-config/docker"]
|
docker = ["otlp", "jaeger", "zipkin", "prometheus", "native-roots", "mas-config/docker"]
|
||||||
@ -70,7 +70,7 @@ native-roots = ["mas-http/native-roots", "mas-handlers/native-roots"]
|
|||||||
# Use the webpki root certificates
|
# Use the webpki root certificates
|
||||||
webpki-roots = ["mas-http/webpki-roots", "mas-handlers/webpki-roots"]
|
webpki-roots = ["mas-http/webpki-roots", "mas-handlers/webpki-roots"]
|
||||||
|
|
||||||
# Enable OpenTelemetry OTLP exporter.
|
# Enable OpenTelemetry OTLP exporter. Requires protoc.
|
||||||
otlp = ["dep:opentelemetry-otlp"]
|
otlp = ["dep:opentelemetry-otlp"]
|
||||||
# Enable OpenTelemetry Jaeger exporter and propagator.
|
# Enable OpenTelemetry Jaeger exporter and propagator.
|
||||||
jaeger = ["dep:opentelemetry-jaeger", "dep:opentelemetry-http"]
|
jaeger = ["dep:opentelemetry-jaeger", "dep:opentelemetry-http"]
|
||||||
|
Reference in New Issue
Block a user