Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
00e0f2c
wip
wim07101993 Jun 8, 2026
5ee1785
added logging
wim07101993 Jun 8, 2026
58e8f7e
logging parameters
wim07101993 Jun 9, 2026
96ffc95
Merge branch 'main' into feat/metrics
wim07101993 Jun 9, 2026
efc6d89
cleanup
wim07101993 Jun 9, 2026
7f425eb
fixes
wim07101993 Jun 9, 2026
e451342
fixes
wim07101993 Jun 9, 2026
608d0c1
fixes
wim07101993 Jun 9, 2026
39b9ca3
Merge branch 'main' into feat/metrics
wim07101993 Jun 9, 2026
550c93e
fixes
wim07101993 Jun 9, 2026
4439567
fixes
wim07101993 Jun 9, 2026
e30f1d4
fixes
wim07101993 Jun 9, 2026
af8d733
Merge branch 'main' into feat/metrics
wim07101993 Jun 9, 2026
e48d1e9
generate code
wim07101993 Jun 9, 2026
b7a7217
extractors
wim07101993 Jun 10, 2026
8c96ad5
Merge branch 'main' into feat/metrics
wim07101993 Jun 10, 2026
9b6f13e
Change log message for server readiness check
wim07101993 Jun 10, 2026
1dd1381
Merge branch 'main' into feat/metrics
wim07101993 Jun 10, 2026
d9eca48
Merge branch 'main' into feat/metrics
wim07101993 Jun 10, 2026
42cf6b3
added otel
wim07101993 Jun 11, 2026
1185e44
cleanup
wim07101993 Jun 11, 2026
63e482f
fix trace fraction
wim07101993 Jun 11, 2026
a87d8ad
Merge branch 'feat/tracing' into feat/metrics
wim07101993 Jun 11, 2026
77b3e2b
Merge branch 'main' into feat/metrics
wim07101993 Jun 11, 2026
d4f50c1
cleanup
wim07101993 Jun 11, 2026
44b421d
Merge remote-tracking branch 'origin/feat/metrics' into feat/metrics
wim07101993 Jun 11, 2026
a87ba34
Merge branch 'main' into feat/metrics
wim07101993 Jun 12, 2026
731c0de
Merge branch 'main' into feat/metrics
mridang Jun 15, 2026
2835e95
Merge branch 'main' into feat/metrics
wim07101993 Jun 15, 2026
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
14 changes: 9 additions & 5 deletions cmd/server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,20 @@ import (
"time"

"github.com/zitadel/nextgen/internal/crypto"
"github.com/zitadel/nextgen/internal/instrumentation"
"github.com/zitadel/nextgen/internal/service"
"github.com/zitadel/nextgen/internal/storage/database"
)

const Name = "zitadel/backend/v3/instrumentation/tracing"

type Config struct {
Server ServerConfig `mapstructure:"server"`
Database database.Config `mapstructure:"database"`
PasswordHasher crypto.HashConfig `mapstructure:"password_hasher"`
Schema SchemaConfig `mapstructure:"schema"`
Session service.SessionConfig `mapstructure:"session"`
Server ServerConfig `mapstructure:"server"`
Database database.Config `mapstructure:"database"`
PasswordHasher crypto.HashConfig `mapstructure:"password_hasher"`
Schema SchemaConfig `mapstructure:"schema"`
Session service.SessionConfig `mapstructure:"session"`
Instrumentation instrumentation.Config `mapstructure:"instrumentation"`
}

func (c Config) Validate() error {
Expand Down
Loading
Loading