Skip to content

Commit

Permalink
renterd: move tracing out of internal
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Apr 27, 2023
1 parent f53e8be commit ae9cb34
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion autopilot/accounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"go.opentelemetry.io/otel/codes"
"go.sia.tech/core/types"
"go.sia.tech/renterd/api"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/tracing"
"go.uber.org/zap"
)

Expand Down
2 changes: 1 addition & 1 deletion autopilot/autopilot.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"go.sia.tech/jape"
"go.sia.tech/renterd/api"
"go.sia.tech/renterd/hostdb"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/object"
"go.sia.tech/renterd/tracing"
"go.sia.tech/renterd/wallet"
"go.uber.org/zap"
"lukechampine.com/frand"
Expand Down
2 changes: 1 addition & 1 deletion autopilot/contractor.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"go.sia.tech/core/types"
"go.sia.tech/renterd/api"
"go.sia.tech/renterd/hostdb"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/tracing"
"go.sia.tech/renterd/wallet"
"go.sia.tech/renterd/worker"
"go.uber.org/zap"
Expand Down
2 changes: 1 addition & 1 deletion autopilot/migrator.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sync"

"go.sia.tech/renterd/api"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/tracing"
"go.uber.org/zap"
)

Expand Down
2 changes: 1 addition & 1 deletion bus/bus.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"go.sia.tech/jape"
"go.sia.tech/renterd/api"
"go.sia.tech/renterd/hostdb"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/object"
"go.sia.tech/renterd/tracing"
"go.sia.tech/renterd/wallet"
"go.uber.org/zap"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/renterd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"go.sia.tech/renterd/build"
"go.sia.tech/renterd/bus"
"go.sia.tech/renterd/internal/node"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/stores"
"go.sia.tech/renterd/tracing"
"go.sia.tech/renterd/wallet"
"go.sia.tech/renterd/worker"
"golang.org/x/term"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion worker/sessionpool.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

rhpv2 "go.sia.tech/core/rhp/v2"
"go.sia.tech/core/types"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/tracing"
)

func (s *Session) appendSector(ctx context.Context, sector *[rhpv2.SectorSize]byte, currentHeight uint64) (types.Hash256, error) {
Expand Down
2 changes: 1 addition & 1 deletion worker/spending.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"go.sia.tech/core/types"
"go.sia.tech/renterd/api"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/tracing"
"go.uber.org/zap"
)

Expand Down
2 changes: 1 addition & 1 deletion worker/transfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
rhpv2 "go.sia.tech/core/rhp/v2"
"go.sia.tech/core/types"
"go.sia.tech/renterd/api"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/object"
"go.sia.tech/renterd/tracing"
"go.uber.org/zap"
"lukechampine.com/frand"
)
Expand Down
2 changes: 1 addition & 1 deletion worker/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ import (
"go.sia.tech/jape"
"go.sia.tech/renterd/api"
"go.sia.tech/renterd/hostdb"
"go.sia.tech/renterd/internal/tracing"
"go.sia.tech/renterd/metrics"
"go.sia.tech/renterd/object"
"go.sia.tech/renterd/tracing"
"go.sia.tech/siad/modules"
"go.uber.org/zap"
"golang.org/x/crypto/blake2b"
Expand Down

0 comments on commit ae9cb34

Please sign in to comment.