Use section headers for shared types

This commit is contained in:
Josh Mock
2024-11-19 12:23:01 -06:00
parent 6151aab208
commit ab21735b57
469 changed files with 2639 additions and 2850 deletions

View File

@ -45,16 +45,16 @@ This API yields a breakdown of the hot threads on each selected node in the clus
[source,ts]
----
interface NodesHotThreadsRequest extends <<shared-type-request-base, RequestBase>> {
node_id?: <<shared-type-node-ids, NodeIds>>
interface NodesHotThreadsRequest extends <<RequestBase>> {
node_id?: <<NodeIds>>
ignore_idle_threads?: boolean
interval?: <<shared-type-duration, Duration>>
snapshots?: <<shared-type-long, long>>
master_timeout?: <<shared-type-duration, Duration>>
threads?: <<shared-type-long, long>>
timeout?: <<shared-type-duration, Duration>>
type?: <<shared-type-thread-type, ThreadType>>
sort?: <<shared-type-thread-type, ThreadType>>
interval?: <<Duration>>
snapshots?: <<long>>
master_timeout?: <<Duration>>
threads?: <<long>>
timeout?: <<Duration>>
type?: <<ThreadType>>
sort?: <<ThreadType>>
}
----