mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
Removed /_node/stats/mem and insted nested them under /_node/stats/jvm along with the ‘thread’ stats
Fixes #5623
This commit is contained in:
parent
e35addbbb5
commit
97d679f933
2 changed files with 2 additions and 6 deletions
|
@ -11,7 +11,8 @@ module LogStash
|
|||
[:jvm, :threads],
|
||||
:count,
|
||||
:peak_count
|
||||
)
|
||||
),
|
||||
:mem => memory
|
||||
}
|
||||
end
|
||||
|
||||
|
|
|
@ -20,7 +20,6 @@ module LogStash
|
|||
:events => events_payload,
|
||||
:jvm => jvm_payload,
|
||||
:process => process_payload,
|
||||
:mem => mem_payload,
|
||||
:pipeline => pipeline_payload
|
||||
}
|
||||
|
||||
|
@ -47,10 +46,6 @@ module LogStash
|
|||
respond_with :process => process_payload
|
||||
end
|
||||
|
||||
get "/mem" do
|
||||
respond_with :mem => mem_payload
|
||||
end
|
||||
|
||||
get "/pipeline" do
|
||||
respond_with :pipeline => pipeline_payload
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue