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: resource/process.go
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -47,15 +47,19 @@ type ProcessStats struct {
47
47
}
48
48
49
49
typeProcessStatstruct {
50
-
Typestring`json:"type"`// Process type; a unique identifier for processes belonging to an app
51
-
Indexint`json:"index"`// The zero-based index of running instances
52
-
Statestring`json:"state"`// The state of the instance; valid values are RUNNING, CRASHED, STARTING, DOWN
50
+
Typestring`json:"type"`// Process type; a unique identifier for processes belonging to an app
51
+
Indexint`json:"index"`// The zero-based index of running instances
52
+
InstanceGuidstring`json:"instance_guid"`// The unique identifier of the instance
53
+
Statestring`json:"state"`// The state of the instance; valid values are RUNNING, CRASHED, STARTING, DOWN
54
+
Routablebool`json:"routable"`// Whether the instance is routable (determined by the readiness check of the app). If app readiness checks and routability are unsupported by Diego, this will return as null.
53
55
UsageUsage`json:"usage"`
54
56
Hoststring`json:"host"`
57
+
InstanceInternalIpstring`json:"instance_internal_ip"`// The internal IP address of the instance
LogRateLimitint`json:"log_rate_limit"`// The current maximum log rate allocated for the instance; the value -1 is unlimited, the value is null when the log_rate_limit is unavailable
59
63
FileDescriptorQuotaint`json:"fds_quota"`
60
64
61
65
// The current isolation segment that the instance is running on; the value is null when the
0 commit comments