I'm storing this data on Logstash and trying to find a way to create a visualize it with Kibana.
{
"@timestamp" => "2016-07-13T21:34:02.123Z",
"type" => "vc_server",
"hostname" => "agslx-hpclavc05",
"/pw/sid" => 12,
"/static/CLAClarinV3/images/logo-st_png" => 3,
"/destacados/externos/dx_zonales_2_html" => 3,
"/static/DESGigyaConnect/images/mail_share_png" => 3,
"/static/DESGigyaConnect/images/twitter_share_png" => 3
}
{
"@timestamp" => "2016-07-13T21:35:02.128Z",
"type" => "vc_server",
"hostname" => "agslx-hpclavc05",
"/pw/sid" => 13,
"/destacados/externos/dx_zonales_2_html" => 7,
"/static/CLAClarinV3/js/hScroll_js?hash=15f6112d2b9a0f1d1ca3d5c09c9bdf8b" => 3,
"/" => 2,
"/static/DESClima/images/v3/chicas/6_png" => 2
}
The thing is that those field names are most of the times different since it's the most amount of requests done to a backend on our varnish servers.
Is there a way to tell Kibana to graph only the top 3 fields based on the value of the fields?
For example, graph if value > 3 then only "/pw/sid" and "/destacados/externos/dx_zonales_2_html" would be graphed.