Skip to content

Commit

Permalink
Use our fork of bbolt to improve freelist performance (#24010)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncabatoff committed Jan 17, 2024
1 parent dea1c4c commit 97d70e0
Show file tree
Hide file tree
Showing 9 changed files with 74 additions and 8 deletions.
3 changes: 3 additions & 0 deletions changelog/24010.txt
@@ -0,0 +1,3 @@
```release-note:improvement
storage/raft: Upgrade to bbolt 1.3.8, along with an extra patch to reduce time scanning large freelist maps.
```
2 changes: 1 addition & 1 deletion command/agent/cache/cacheboltdb/bolt.go
Expand Up @@ -12,10 +12,10 @@ import (
"time"

"github.com/golang/protobuf/proto"
bolt "github.com/hashicorp-forge/bbolt"
"github.com/hashicorp/go-hclog"
wrapping "github.com/hashicorp/go-kms-wrapping/v2"
"github.com/hashicorp/go-multierror"
bolt "go.etcd.io/bbolt"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion command/agent/cache/cacheboltdb/bolt_test.go
Expand Up @@ -15,11 +15,11 @@ import (
"time"

"github.com/golang/protobuf/proto"
bolt "github.com/hashicorp-forge/bbolt"
"github.com/hashicorp/go-hclog"
"github.com/hashicorp/vault/command/agent/cache/keymanager"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
bolt "go.etcd.io/bbolt"
)

func getTestKeyManager(t *testing.T) keymanager.KeyManager {
Expand Down
1 change: 1 addition & 0 deletions go.mod
Expand Up @@ -62,6 +62,7 @@ require (
github.com/google/go-github v17.0.0+incompatible
github.com/google/go-metrics-stackdriver v0.2.0
github.com/google/tink/go v1.6.1
github.com/hashicorp-forge/bbolt v1.3.8-hc3
github.com/hashicorp/cap v0.2.1-0.20230221194157-7894fed1633d
github.com/hashicorp/consul-template v0.29.5
github.com/hashicorp/consul/api v1.17.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Expand Up @@ -1033,6 +1033,8 @@ github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0=
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed h1:5upAirOpQc1Q53c0bnx2ufif5kANL7bfZWcc6VJWJd8=
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed/go.mod h1:tMWxXQ9wFIaZeTI9F+hmhFiGpFmhOHzyShyFUhRm0H4=
github.com/hashicorp-forge/bbolt v1.3.8-hc3 h1:iTWR3RDPj0TGChAvJ8QjHFcNFWAUVgNQV73IE6gAX4E=
github.com/hashicorp-forge/bbolt v1.3.8-hc3/go.mod h1:sQBu5UIJ+rcUFU4Fo9rpTHNV935jwmGWS3dQ/MV8810=
github.com/hashicorp/cap v0.2.1-0.20230221194157-7894fed1633d h1:29noMC2UssBX3F/BUmk0/j4PRUU4QvPTfyeOn3tmcOA=
github.com/hashicorp/cap v0.2.1-0.20230221194157-7894fed1633d/go.mod h1:dHTmyMIVbzT981XxRoci5G//dfWmd/HhuNiCH6J5+IA=
github.com/hashicorp/consul-template v0.29.5 h1:tzEo93RqODAX2cgOe/ke8xcpdPdxg5rxl6d22wE3f6c=
Expand Down
2 changes: 1 addition & 1 deletion physical/raft/fsm.go
Expand Up @@ -20,6 +20,7 @@ import (

"github.com/armon/go-metrics"
"github.com/golang/protobuf/proto"
bolt "github.com/hashicorp-forge/bbolt"
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/go-multierror"
"github.com/hashicorp/go-raftchunking"
Expand All @@ -28,7 +29,6 @@ import (
"github.com/hashicorp/vault/sdk/helper/jsonutil"
"github.com/hashicorp/vault/sdk/physical"
"github.com/hashicorp/vault/sdk/plugin/pb"
bolt "go.etcd.io/bbolt"
)

const (
Expand Down
66 changes: 63 additions & 3 deletions physical/raft/raft.go
Expand Up @@ -20,6 +20,7 @@ import (

"github.com/armon/go-metrics"
"github.com/golang/protobuf/proto"
bolt "github.com/hashicorp-forge/bbolt"
log "github.com/hashicorp/go-hclog"
wrapping "github.com/hashicorp/go-kms-wrapping/v2"
"github.com/hashicorp/go-raftchunking"
Expand All @@ -38,7 +39,7 @@ import (
"github.com/hashicorp/vault/vault/cluster"
"github.com/hashicorp/vault/vault/seal"
"github.com/hashicorp/vault/version"
bolt "go.etcd.io/bbolt"
etcdbolt "go.etcd.io/bbolt"
)

const (
Expand Down Expand Up @@ -401,7 +402,7 @@ func NewRaftBackend(conf map[string]string, logger log.Logger) (physical.Backend

// Create the backend raft store for logs and stable storage.
dbPath := filepath.Join(path, "raft.db")
opts := boltOptions(dbPath)
opts := etcdboltOptions(dbPath)
raftOptions := raftboltdb.Options{
Path: dbPath,
BoltOptions: opts,
Expand Down Expand Up @@ -632,7 +633,7 @@ func (b *RaftBackend) CollectMetrics(sink *metricsutil.ClusterMetricSink) {
stats = b.raft.Stats()
}
b.l.RUnlock()
b.collectMetricsWithStats(logstoreStats, sink, "logstore")
b.collectEtcdBoltMetricsWithStats(logstoreStats, sink, "logstore")
b.collectMetricsWithStats(fsmStats, sink, "fsm")
labels := []metrics.Label{
{
Expand Down Expand Up @@ -673,6 +674,29 @@ func (b *RaftBackend) collectMetricsWithStats(stats bolt.Stats, sink *metricsuti
sink.AddSampleWithLabels([]string{"raft_storage", "bolt", "write", "time"}, float32(txstats.WriteTime.Milliseconds()), labels)
}

func (b *RaftBackend) collectEtcdBoltMetricsWithStats(stats etcdbolt.Stats, sink *metricsutil.ClusterMetricSink, database string) {
txstats := stats.TxStats
labels := []metricsutil.Label{{"database", database}}
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "freelist", "free_pages"}, float32(stats.FreePageN), labels)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "freelist", "pending_pages"}, float32(stats.PendingPageN), labels)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "freelist", "allocated_bytes"}, float32(stats.FreeAlloc), labels)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "freelist", "used_bytes"}, float32(stats.FreelistInuse), labels)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "transaction", "started_read_transactions"}, float32(stats.TxN), labels)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "transaction", "currently_open_read_transactions"}, float32(stats.OpenTxN), labels)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "page", "count"}, float32(txstats.GetPageCount()), labels)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)

Check failure on line 686 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetPageCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageCount)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "page", "bytes_allocated"}, float32(txstats.GetPageAlloc()), labels)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)

Check failure on line 687 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetPageAlloc undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetPageAlloc)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "cursor", "count"}, float32(txstats.GetCursorCount()), labels)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)

Check failure on line 688 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetCursorCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetCursorCount)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "node", "count"}, float32(txstats.GetNodeCount()), labels)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)

Check failure on line 689 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetNodeCount undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeCount)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "node", "dereferences"}, float32(txstats.GetNodeDeref()), labels)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)

Check failure on line 690 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetNodeDeref undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetNodeDeref)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "rebalance", "count"}, float32(txstats.GetRebalance()), labels)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)

Check failure on line 691 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetRebalance undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalance)
sink.AddSampleWithLabels([]string{"raft_storage", "bolt", "rebalance", "time"}, float32(txstats.GetRebalanceTime().Milliseconds()), labels)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)

Check failure on line 692 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetRebalanceTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetRebalanceTime)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "split", "count"}, float32(txstats.GetSplit()), labels)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)

Check failure on line 693 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetSplit undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSplit)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "spill", "count"}, float32(txstats.GetSpill()), labels)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)

Check failure on line 694 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetSpill undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpill)
sink.AddSampleWithLabels([]string{"raft_storage", "bolt", "spill", "time"}, float32(txstats.GetSpillTime().Milliseconds()), labels)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (1)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (4)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (4)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests tagged with testonly / test-go (0)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (9)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (9)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (12)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (11)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (7)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (11)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (10)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (12)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (14)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (13)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (2)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (5)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (7)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (15)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (2)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (14)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (13)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (15)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (1)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (10)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (1)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (3)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (5)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (3)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, arm) / Vault freebsd arm v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, arm) / Vault netbsd arm v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (8)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, 386) / Vault netbsd 386 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (netbsd, amd64) / Vault netbsd amd64 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, 386) / Vault freebsd 386 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, 386) / Vault openbsd 386 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (freebsd, amd64) / Vault freebsd amd64 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, amd64) / Vault windows amd64 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (windows, 386) / Vault windows 386 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, arm) / Vault openbsd arm v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm) / Vault linux arm v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (solaris, amd64) / Vault solaris amd64 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Other (openbsd, amd64) / Vault openbsd amd64 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, arm64) / Vault darwin arm64 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Darwin (darwin, amd64) / Vault darwin amd64 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, 386) / Vault linux 386 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, arm64) / Vault linux arm64 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Linux (linux, amd64) / Vault linux amd64 v1.13.13

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (8)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (0)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (0)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests with data race detection / test-go (6)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)

Check failure on line 695 in physical/raft/raft.go

View workflow job for this annotation

GitHub Actions / Run Go tests / test-go (6)

txstats.GetSpillTime undefined (type "go.etcd.io/bbolt".TxStats has no field or method GetSpillTime)
sink.SetGaugeWithLabels([]string{"raft_storage", "bolt", "write", "count"}, float32(txstats.GetWrite()), labels)
sink.IncrCounterWithLabels([]string{"raft_storage", "bolt", "write", "time"}, float32(txstats.GetWriteTime().Milliseconds()), labels)
}

// RaftServer has information about a server in the Raft configuration
type RaftServer struct {
// NodeID is the name of the server
Expand Down Expand Up @@ -1967,3 +1991,39 @@ func boltOptions(path string) *bolt.Options {

return o
}

func etcdboltOptions(path string) *etcdbolt.Options {
o := &etcdbolt.Options{
Timeout: 1 * time.Second,
FreelistType: etcdbolt.FreelistMapType,
NoFreelistSync: true,
MmapFlags: getMmapFlags(path),
}

if os.Getenv("VAULT_RAFT_FREELIST_TYPE") == "array" {
o.FreelistType = etcdbolt.FreelistArrayType
}

if os.Getenv("VAULT_RAFT_FREELIST_SYNC") != "" {
o.NoFreelistSync = false
}

// By default, we want to set InitialMmapSize to 100GB, but only on 64bit platforms.
// Otherwise, we set it to whatever the value of VAULT_RAFT_INITIAL_MMAP_SIZE
// is, assuming it can be parsed as an int. Bolt itself sets this to 0 by default,
// so if users are wanting to turn this off, they can also set it to 0. Setting it
// to a negative value is the same as not setting it at all.
if os.Getenv("VAULT_RAFT_INITIAL_MMAP_SIZE") == "" {
o.InitialMmapSize = initialMmapSize
} else {
imms, err := strconv.Atoi(os.Getenv("VAULT_RAFT_INITIAL_MMAP_SIZE"))

// If there's an error here, it means they passed something that's not convertible to
// a number. Rather than fail startup, just ignore it.
if err == nil && imms > 0 {
o.InitialMmapSize = imms
}
}

return o
}
2 changes: 1 addition & 1 deletion physical/raft/raft_test.go
Expand Up @@ -21,13 +21,13 @@ import (

"github.com/go-test/deep"
"github.com/golang/protobuf/proto"
bolt "github.com/hashicorp-forge/bbolt"
"github.com/hashicorp/go-hclog"
"github.com/hashicorp/go-secure-stdlib/base62"
"github.com/hashicorp/go-uuid"
"github.com/hashicorp/raft"
"github.com/hashicorp/vault/sdk/helper/jsonutil"
"github.com/hashicorp/vault/sdk/physical"
bolt "go.etcd.io/bbolt"
)

func connectPeers(nodes ...*RaftBackend) {
Expand Down
2 changes: 1 addition & 1 deletion physical/raft/snapshot.go
Expand Up @@ -18,10 +18,10 @@ import (
"time"

"github.com/golang/protobuf/proto"
bolt "github.com/hashicorp-forge/bbolt"
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/vault/sdk/plugin/pb"
"github.com/rboyer/safeio"
bolt "go.etcd.io/bbolt"
"go.uber.org/atomic"

"github.com/hashicorp/raft"
Expand Down

0 comments on commit 97d70e0

Please sign in to comment.