mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
Introduce the first level, comma separated selector for fields. Also corrected an issue where memory refence was also using mem.
Fixes #5630
This commit is contained in:
parent
fcfebb7535
commit
0a59cde937
1 changed files with 15 additions and 33 deletions
|
@ -8,39 +8,6 @@ module LogStash
|
|||
factory.build(:stats)
|
||||
end
|
||||
|
||||
# Global _stats resource where all information is
|
||||
# retrieved and show
|
||||
get "/" do
|
||||
payload = {
|
||||
:events => stats_command.events,
|
||||
:jvm => { :memory => stats_command.memory }
|
||||
}
|
||||
respond_with payload
|
||||
end
|
||||
|
||||
|
||||
# return hot threads information
|
||||
get "/jvm" do
|
||||
jvm_payload = {
|
||||
:timestamp => stats_command.started_at,
|
||||
:uptime_in_millis => stats_command.uptime,
|
||||
:mem => stats_command.memory
|
||||
}
|
||||
respond_with({:jvm => jvm_payload})
|
||||
end
|
||||
|
||||
# Show all events stats information
|
||||
# (for ingested, emitted, dropped)
|
||||
# - #events since startup
|
||||
# - #data (bytes) since startup
|
||||
# - events/s
|
||||
# - bytes/s
|
||||
# - dropped events/s
|
||||
# - events in the pipeline
|
||||
get "/events" do
|
||||
respond_with({ :events => stats_command.events })
|
||||
end
|
||||
|
||||
# return hot threads information
|
||||
get "/jvm/hot_threads" do
|
||||
top_threads_count = params["threads"] || 3
|
||||
|
@ -57,6 +24,21 @@ module LogStash
|
|||
get "/jvm/memory" do
|
||||
respond_with({ :memory => stats_command.memory })
|
||||
end
|
||||
|
||||
get "/?:filter?" do
|
||||
selected_fields = extract_fields(params["filter"].to_s.strip)
|
||||
payload = {
|
||||
:events => stats_command.events,
|
||||
:jvm => {
|
||||
:timestamp => stats_command.started_at,
|
||||
:uptime_in_millis => stats_command.uptime,
|
||||
:memory => stats_command.memory
|
||||
}
|
||||
}
|
||||
payload.select! { |k,v| selected_fields.include?(k) } unless selected_fields.empty?
|
||||
respond_with payload
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue