mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-15 04:00:14 -05:00
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/logrusorgru/aurora"
|
|
"github.com/olekukonko/tablewriter"
|
|
)
|
|
|
|
var profiling = false
|
|
|
|
type timeLog struct {
|
|
Time time.Time
|
|
Interval time.Duration
|
|
Cumulative time.Duration
|
|
Operation string
|
|
}
|
|
|
|
var Timing []timeLog
|
|
|
|
func shouldProfile() bool {
|
|
profilingEnv, exists := os.LookupEnv("STEAMPIPE_PROFILE")
|
|
if exists {
|
|
return strings.ToUpper(profilingEnv) == "TRUE"
|
|
}
|
|
return profiling
|
|
}
|
|
func LogTime(operation string) {
|
|
if !shouldProfile() {
|
|
return
|
|
}
|
|
lastTimelogIdx := len(Timing) - 1
|
|
var elapsed time.Duration
|
|
var cumulative time.Duration
|
|
if lastTimelogIdx >= 0 {
|
|
elapsed = time.Since(Timing[lastTimelogIdx].Time)
|
|
cumulative = time.Since(Timing[0].Time)
|
|
|
|
}
|
|
Timing = append(Timing, timeLog{time.Now(), elapsed, cumulative, operation})
|
|
}
|
|
|
|
func DisplayProfileData() {
|
|
if shouldProfile() {
|
|
fmt.Println("Timing")
|
|
|
|
var data [][]string
|
|
for _, logEntry := range Timing {
|
|
var itemData []string
|
|
itemData = append(itemData, logEntry.Operation)
|
|
if logEntry.Interval > 300*time.Millisecond {
|
|
itemData = append(itemData, aurora.Bold(aurora.BrightRed(logEntry.Interval.String())).String())
|
|
} else {
|
|
itemData = append(itemData, logEntry.Interval.String())
|
|
}
|
|
itemData = append(itemData, logEntry.Cumulative.String())
|
|
data = append(data, itemData)
|
|
}
|
|
table := tablewriter.NewWriter(os.Stdout)
|
|
table.SetHeader([]string{"Operation", "Elapsed", "Cumulative"})
|
|
table.SetBorder(true)
|
|
table.SetReflowDuringAutoWrap(false)
|
|
table.SetAutoWrapText(false)
|
|
table.AppendBulk(data)
|
|
table.Render()
|
|
}
|
|
|
|
}
|