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
Copy file name to clipboardExpand all lines: src/runtime/metrics/description.go
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -437,6 +437,26 @@ var allDesc = []Description{
437
437
Description: "The current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously.",
438
438
Kind: KindUint64,
439
439
},
440
+
{
441
+
Name: "/sched/goroutines/not-in-go:goroutines",
442
+
Description: "Approximate count of goroutines running or blocked in a system call or cgo call. Not guaranteed to add up to /sched/goroutines:goroutines with other goroutine metrics.",
443
+
Kind: KindUint64,
444
+
},
445
+
{
446
+
Name: "/sched/goroutines/runnable:goroutines",
447
+
Description: "Approximate count of goroutines ready to execute, but not executing. Not guaranteed to add up to /sched/goroutines:goroutines with other goroutine metrics.",
448
+
Kind: KindUint64,
449
+
},
450
+
{
451
+
Name: "/sched/goroutines/running:goroutines",
452
+
Description: "Approximate count of goroutines executing. Always less than or equal to /sched/gomaxprocs:threads. Not guaranteed to add up to /sched/goroutines:goroutines with other goroutine metrics.",
453
+
Kind: KindUint64,
454
+
},
455
+
{
456
+
Name: "/sched/goroutines/waiting:goroutines",
457
+
Description: "Approximate count of goroutines waiting on a resource (I/O or sync primitives). Not guaranteed to add up to /sched/goroutines:goroutines with other goroutine metrics.",
0 commit comments