Its related to logstash -


following log file: 2016-05-20 16:09:06.948utc debug spray.can.server.httpserverconnection - dispatching request https://example.com/2.0/top.json handler actor[akka://test-server/system/io-tcp/selectors/$a/1070#1248431494]

how filter "https://example.com/2.0/top.json" log file

the grok filter kind of log is

%{timestamp_iso8601:timestamp}%{tz:timezone} %{loglevel:loglevel} %{data:package} - %{data:dispatching} %{word:method} request %{data:url} handler actor\[%{data:foo}\] 

where url field = https://example.com/2.0/top.json.

if want remove field can use this logstash plugin, if want replace field else can use this logstash plugin.