Ax1an commented on a change in pull request #7243:
URL: https://github.com/apache/skywalking/pull/7243#discussion_r664303608
##########
File path: docs/en/concepts-and-designs/scope-definitions.md
##########
@@ -104,9 +104,25 @@ This calculates the metrics data if the service instance
is a JVM and collects t
|---|---|---|---|
| name | The name of the service instance, such as `ip:port@Service Name`.
**Note**: Currently, the native agent uses `uuid@ipv4` as the instance name,
which does not assist in setting up a filter in aggregation. | | string|
| serviceName | The name of the service. | | string |
-| liveCount | The current number of live threads. | | int |
-| daemonCount | The current number of daemon threads. | | int |
-| peakCount | The current number of peak threads. | | int |
+| liveCount | The current number of live threads. | | long |
+| daemonCount | The current number of daemon threads. | | long |
+| peakCount | The current number of peak threads. | | long |
+| newStateThreadCount | The current number of threads in new state. | | long |
+| runnableStateThreadCount | The current number of threads in runnable state.
| | long |
+| blockedStateThreadCount | The current number of threads in blocked state. |
| long |
+| waitingStateThreadCount | The current number of threads in waiting state. |
| long |
+| timedWaitingStateThreadCount | The current number of threads in time-waiting
state. | | long |
+| terminatedStateThreadCount | The current number of threads in terminated
state. | | long |
Review comment:
```suggestion
| runnableStateThreadCount | The current number of threads in runnable
state. | | long |
| blockedStateThreadCount | The current number of threads in blocked state.
| | long |
| waitingStateThreadCount | The current number of threads in waiting state.
| | long |
| timedWaitingStateThreadCount | The current number of threads in
time-waiting state. | | long |
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]