forked from knative/pkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonitoring.go
84 lines (71 loc) · 2.56 KB
/
monitoring.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
Copyright 2019 The Knative Authors
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 monitoring
import (
"context"
"fmt"
"net"
"os"
"os/exec"
"time"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"knative.dev/pkg/test/logging"
)
// CheckPortAvailability checks to see if the port is available on the machine.
func CheckPortAvailability(port int) error {
server, err := net.Listen("tcp", fmt.Sprint(":", port))
if err != nil {
// Port is likely taken
return err
}
return server.Close()
}
// GetPods retrieves the current existing podlist for the app in monitoring namespace
// This uses app=<app> as labelselector for selecting pods
func GetPods(ctx context.Context, kubeClientset kubernetes.Interface, app, namespace string) (*v1.PodList, error) {
pods, err := kubeClientset.CoreV1().Pods(namespace).List(ctx, metav1.ListOptions{LabelSelector: "app=" + app})
if err == nil && len(pods.Items) == 0 {
err = fmt.Errorf("pod %s not found on the cluster. Ensure monitoring is switched on for your Knative Setup", app)
}
return pods, err
}
// Cleanup will clean the background process used for port forwarding
func Cleanup(pid int) error {
ps := os.Process{Pid: pid}
if err := ps.Kill(); err != nil {
return err
}
errCh := make(chan error)
go func() {
_, err := ps.Wait()
errCh <- err
}()
select {
case err := <-errCh:
return err
case <-time.After(30 * time.Second):
return fmt.Errorf("timed out waiting for process %d to exit", pid)
}
}
// PortForward sets up local port forward to the pod specified by the "app" label in the given namespace
func PortForward(logf logging.FormatLogger, podList *v1.PodList, localPort, remotePort int, namespace string) (int, error) {
podName := podList.Items[0].Name
cmd := exec.Command("kubectl", "port-forward", podName, fmt.Sprintf("%d:%d", localPort, remotePort), "-n", namespace)
if err := cmd.Start(); err != nil {
return 0, fmt.Errorf("failed to port forward: %w", err)
}
logf("Running %s port-forward in background, pid = %d", podName, cmd.Process.Pid)
return cmd.Process.Pid, nil
}