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

Update otel configs #79

Merged
merged 1 commit into from
Feb 22, 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
17 changes: 8 additions & 9 deletions src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ quarkus:
read-timeout: 30m
limits:
max-body-size: 1024M
package:
type: uber-jar
oidc:
enabled: true
auth-server-url: "https://localhost:8543/realms/indyreposervice"
Expand All @@ -20,14 +18,15 @@ quarkus:
security:
auth:
enabled-in-dev-mode: false
opentelemetry:
otel:
enabled: true
tracer:
traces:
enabled: true
sampler:
~: ratio
ratio: 0.05
"resource-attributes":
~: traceidratio
arg: 0.05
resource:
attributes":
- "service.name=pathmap-storage-service"
- "sample.rate=0.05"
- "deployment.environment=localhost"
Expand Down Expand Up @@ -70,8 +69,6 @@ storage:

"%dev":
quarkus:
kubernetes-config:
enabled: false
log:
level: INFO
category:
Expand All @@ -86,6 +83,8 @@ storage:
rotation:
max-backup-index: 5
max-file-size: 10M
oidc:
enabled: false

cassandra:
host: localhost
Expand Down
3 changes: 0 additions & 3 deletions src/test/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ quarkus:
read-timeout: 30m
limits:
max-body-size: 1024M

package:
uber-jar: true
oidc:
enabled: false

Expand Down
Loading