Skip to content

Add CtrlId and GetDestinationType for inspect support. Fixes #742 #743

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Issues Fixed and Dependency Updates

* github.com/openziti/sdk-golang: [v1.1.1 -> v1.1.2](https://github.com/openziti/sdk-golang/compare/v1.1.1...v1.1.2)
* [Issue #742](https://github.com/openziti/sdk-golang/issues/742) - Additional CtrlId and GetDestinationType for inspect support
* [Issue #739](https://github.com/openziti/sdk-golang/issues/739) - go-jose v2.6.3 CVE-2025-27144 resolution

* github.com/zitadel/oidc/v3: v2.12.2 -> v3.39.0
Expand Down
1 change: 1 addition & 0 deletions xgress/circuit_inspections.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,5 @@ type CircuitDetail struct {
Address string `json:"address"`
Originator string `json:"originator"`
IsXgress bool `json:"isXgress"`
CtrlId string `json:"ctrlId"`
}
4 changes: 4 additions & 0 deletions xgress/xgress.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ type Xgress struct {
tags map[string]string
}

func (self *Xgress) GetDestinationType() string {
return "xgress"
}

func (self *Xgress) GetIntervalId() string {
return self.circuitId
}
Expand Down
Loading