Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Diagnoses Consul Direct Access Check #11505

Merged
merged 32 commits into from
May 2, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ac1cb11
Create helpers which integrate with OpenTelemetry for diagnose collec…
sgmiller Apr 23, 2021
9ecc19a
Go mod vendor
sgmiller Apr 23, 2021
b0bdaca
consul tls checks
Apr 26, 2021
2d65d6c
fix merge conflicts
Apr 26, 2021
5f32206
draft for storage end to end check
Apr 26, 2021
11224d9
Comments
sgmiller Apr 26, 2021
5a3570e
Update vault/diagnose/helpers.go
sgmiller Apr 26, 2021
112f217
Add unit test/example
sgmiller Apr 26, 2021
e0c3a86
Merge branch 'diagnose-otel-integration' of github.com:/hashicorp/vau…
sgmiller Apr 26, 2021
29be762
tweak output
sgmiller Apr 26, 2021
8d5122d
More comments
sgmiller Apr 26, 2021
b2c1f7f
add spot check concept
sgmiller Apr 26, 2021
76dc535
Get unit tests working on Result structs
sgmiller Apr 28, 2021
bc10247
Fix unit test
sgmiller Apr 28, 2021
f1fea38
Merge remote-tracking branch 'origin/master' into diagnose-otel-integ…
sgmiller Apr 28, 2021
4a6bc9e
Get unit tests working, and make diagnose sessions local rather than …
sgmiller Apr 28, 2021
0682a4f
Comments
sgmiller Apr 28, 2021
14abc7f
Last comments
sgmiller Apr 28, 2021
3286135
No need for init
sgmiller Apr 28, 2021
4d26609
:|
sgmiller Apr 28, 2021
5063844
Fix helpers_test
sgmiller Apr 28, 2021
e6f7c6c
merge master
Apr 29, 2021
7d5e722
merge with otel integration branch
Apr 29, 2021
412a01c
cleaned up chan logic. Tests next.
Apr 29, 2021
f68f7dd
fix tests
Apr 29, 2021
357b192
merge master
Apr 29, 2021
45201c4
remove a comment
Apr 29, 2021
70835e6
tests
Apr 30, 2021
dd15e1e
remove a comment
Apr 30, 2021
ec94304
run direct access checks in diagnose command
Apr 30, 2021
6562cf4
merge master
May 2, 2021
4c0c565
review comments
May 2, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merge master
  • Loading branch information
HridoyRoy committed Apr 29, 2021
commit e6f7c6cf62c402b131eab950c35169c075f3f401
1 change: 1 addition & 0 deletions command/operator_diagnose.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/vault/internalshared/listenerutil"
"github.com/hashicorp/vault/internalshared/reloadutil"
physconsul "github.com/hashicorp/vault/physical/consul"
"github.com/hashicorp/vault/sdk/physical"
"github.com/hashicorp/vault/sdk/version"
srconsul "github.com/hashicorp/vault/serviceregistration/consul"
Expand Down
2 changes: 1 addition & 1 deletion command/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ func (c *ServerCommand) Run(args []string) int {
}

// Prevent server startup if migration is active
// TODO: Use logs with OpenTelemetry to Integrate this into Diagnose
// TODO: Use OpenTelemetry to integrate this into Diagnose
if c.storageMigrationActive(backend) {
return 1
}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.