Skip to content
This repository was archived by the owner on Jun 1, 2022. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from 4 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
8 changes: 5 additions & 3 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ required = [

[[constraint]]
name = "github.com/percona/pmm"
branch = "PMM-2.0"
# branch = "PMM-2.0"
branch = "PMM-5194-tunnels"

# https://jira.percona.com/browse/PMM-4081
# https://jira.percona.com/browse/PMM-4042
Expand Down
112 changes: 112 additions & 0 deletions commands/inventory/list_tunnels.go
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 {

Copy link
Copy Markdown

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)

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()

Copy link
Copy Markdown

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 🐶
Error return value of w.Flush is not checked (errcheck)

return buf.String()
}

type listTunnelsCommand struct {
filters tunnels.ListTunnelsBody
}

func (cmd *listTunnelsCommand) Run() (commands.Result, error) {
params := &tunnels.ListTunnelsParams{

Copy link
Copy Markdown

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 🐶
HTTPClient is missing in ListTunnelsParams (exhaustivestruct)

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)
}
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ func main() {

inventory.RemoveAgentC.FullCommand(): inventory.RemoveAgent,

inventory.ListTunnelsC.FullCommand(): inventory.ListTunnels,

commands.ListC.FullCommand(): commands.List,
commands.AnnotationC.FullCommand(): commands.Annotation,
commands.StatusC.FullCommand(): commands.Status,
Expand Down

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.

Loading