You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
label:=fmt.Sprintf("🐢 This query is running for %s second(s) in `%s` database:\n\n%s\n\n", cyan(query.Time), cyan(query.DB), cyan(query.Info.String))
127
+
cyan:=color.FgCyan.Render
128
+
green:=color.FgGreen.Render
136
129
130
+
iflen(longQueries) ==1 {
137
131
fmt.Println()
138
132
fmt.Println()
133
+
fmt.Printf("❄️ Found %s long running query!\n", cyan("1"))
134
+
query:=longQueries[0]
135
+
label:=fmt.Sprintf("🐢 This query is running for %s second(s) in the `%s` database:\n\n%s\n\n", cyan(query.Time), cyan(query.DB), cyan(query.TruncatedQuery))
0 commit comments