-
Notifications
You must be signed in to change notification settings - Fork 11
PMM-5194 Tunnels #141
base: main
Are you sure you want to change the base?
PMM-5194 Tunnels #141
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,112 @@ | ||
| // pmm-admin | ||
| // Copyright 2019 Percona LLC | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| package inventory | ||
|
|
||
| import ( | ||
| "bytes" | ||
| "fmt" | ||
| "strconv" | ||
| "strings" | ||
| "text/tabwriter" | ||
|
|
||
| "github.com/percona/pmm/api/inventorypb/json/client" | ||
| "github.com/percona/pmm/api/inventorypb/json/client/tunnels" | ||
|
|
||
| "github.com/percona/pmm-admin/commands" | ||
| ) | ||
|
|
||
| type listResultTunnel struct { | ||
| TunnelID string `json:"tunnel_id"` | ||
| ListenAgentID string `json:"listen_agent_id"` | ||
| ListenPort uint16 `json:"listen_port"` | ||
| ConnectAgentID string `json:"connect_agent_id"` | ||
| ConnectPort uint16 `json:"connect_port"` | ||
| } | ||
|
|
||
| type listTunnelsResult struct { | ||
| Tunnels []listResultTunnel `json:"tunnels"` | ||
| } | ||
|
|
||
| func (res *listTunnelsResult) Result() {} | ||
|
|
||
| func (res *listTunnelsResult) String() string { | ||
| if len(res.Tunnels) == 0 { | ||
| return "No tunnels." | ||
| } | ||
|
|
||
| var buf bytes.Buffer | ||
| w := tabwriter.NewWriter(&buf, 0, 0, 3, ' ', 0) | ||
| header := strings.Join([]string{ | ||
| "ID", | ||
| "Listen Agent ID", | ||
| "Listen port", | ||
| "Connect Agent ID", | ||
| "Connect port", | ||
| }, "\t") | ||
| fmt.Fprintln(w, header) | ||
| for _, t := range res.Tunnels { | ||
| line := strings.Join([]string{ | ||
| t.TunnelID, | ||
| t.ListenAgentID, | ||
| strconv.Itoa(int(t.ListenPort)), | ||
| t.ConnectAgentID, | ||
| strconv.Itoa(int(t.ConnectPort)), | ||
| }, "\t") | ||
| fmt.Fprintln(w, line) | ||
| } | ||
| w.Flush() | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚫 [golangci-lint] reported by reviewdog 🐶 |
||
| return buf.String() | ||
| } | ||
|
|
||
| type listTunnelsCommand struct { | ||
| filters tunnels.ListTunnelsBody | ||
| } | ||
|
|
||
| func (cmd *listTunnelsCommand) Run() (commands.Result, error) { | ||
| params := &tunnels.ListTunnelsParams{ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚫 [golangci-lint] reported by reviewdog 🐶 |
||
| Body: cmd.filters, | ||
| Context: commands.Ctx, | ||
| } | ||
| tunnelsRes, err := client.Default.Tunnels.ListTunnels(params) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
|
|
||
| tunnelsList := make([]listResultTunnel, len(tunnelsRes.Payload.Tunnel)) | ||
| for i, t := range tunnelsRes.Payload.Tunnel { | ||
| tunnelsList[i] = listResultTunnel{ | ||
| TunnelID: t.TunnelID, | ||
| ListenAgentID: t.ListenAgentID, | ||
| ListenPort: uint16(t.ListenPort), | ||
| ConnectAgentID: t.ConnectAgentID, | ||
| ConnectPort: uint16(t.ConnectPort), | ||
| } | ||
| } | ||
|
|
||
| return &listTunnelsResult{ | ||
| Tunnels: tunnelsList, | ||
| }, nil | ||
| } | ||
|
|
||
| // register command | ||
| var ( | ||
| ListTunnels = new(listTunnelsCommand) | ||
| ListTunnelsC = inventoryListC.Command("tunnels", "Show tunnels in inventory").Hide(hide) | ||
| ) | ||
|
|
||
| func init() { | ||
| ListTunnelsC.Flag("pmm-agent-id", "Filter by pmm-agent identifier").StringVar(&ListTunnels.filters.AgentID) | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [golangci-lint] reported by reviewdog 🐶
struct of size 64 bytes could be of size 56 bytes (maligned)