mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-07-06 15:11:03 +00:00
* Remove `tap` directory * Fix the depedencies and build errors * Fix the linter errors * Use `kubeshark/worker` image as tapper * Arrange the pod prefixes and suffixes * Don't install any dependencies in the CI * Remove `devops` directory * Don't generate eBPF object files in the CI * Fix `Makefile` * Update `Dockerfile`
97 lines
1.7 KiB
Go
97 lines
1.7 KiB
Go
package utils
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/kubeshark/kubeshark/logger"
|
|
)
|
|
|
|
var (
|
|
StartTime int64 // global
|
|
)
|
|
|
|
// StartServer starts the server with a graceful shutdown
|
|
func StartServer(app *gin.Engine, port int) {
|
|
signals := make(chan os.Signal, 2)
|
|
signal.Notify(signals,
|
|
os.Interrupt, // this catch ctrl + c
|
|
syscall.SIGTSTP, // this catch ctrl + z
|
|
)
|
|
|
|
srv := &http.Server{
|
|
Addr: ":8080",
|
|
Handler: app,
|
|
}
|
|
|
|
go func() {
|
|
<-signals
|
|
logger.Log.Infof("Shutting down...")
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer cancel()
|
|
err := srv.Shutdown(ctx)
|
|
if err != nil {
|
|
logger.Log.Errorf("%v", err)
|
|
}
|
|
os.Exit(0)
|
|
}()
|
|
|
|
// Run server.
|
|
logger.Log.Infof("Starting the server...")
|
|
if err := app.Run(fmt.Sprintf(":%d", port)); err != nil {
|
|
logger.Log.Errorf("Server is not running! Reason: %v", err)
|
|
}
|
|
}
|
|
|
|
func CheckErr(e error) {
|
|
if e != nil {
|
|
logger.Log.Errorf("%v", e)
|
|
}
|
|
}
|
|
|
|
func ReadJsonFile(filePath string, value interface{}) error {
|
|
if content, err := os.ReadFile(filePath); err != nil {
|
|
return err
|
|
} else {
|
|
if err = json.Unmarshal(content, value); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func SaveJsonFile(filePath string, value interface{}) error {
|
|
if data, err := json.Marshal(value); err != nil {
|
|
return err
|
|
} else {
|
|
if err = os.WriteFile(filePath, data, 0644); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func UniqueStringSlice(s []string) []string {
|
|
uniqueSlice := make([]string, 0)
|
|
uniqueMap := map[string]bool{}
|
|
|
|
for _, val := range s {
|
|
if uniqueMap[val] {
|
|
continue
|
|
}
|
|
uniqueMap[val] = true
|
|
uniqueSlice = append(uniqueSlice, val)
|
|
}
|
|
|
|
return uniqueSlice
|
|
}
|