Logging Controller

Log Search IP Mode

Path: /log/search

Method: GET

Example Http Request

GET /log/search?mode=IP&targets=127.0.0.1%2C127.0.0.2&query=Spring HTTP/1.1
Host: localhost:8080

Example Http Response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 97

{"127.0.0.2":"Spring Server 2 search results...","127.0.0.1":"Spring Server 1 search results..."}

Example Curl Request

$ curl 'http://localhost:8080/log/search?mode=IP&targets=127.0.0.1%2C127.0.0.2&query=Spring' -i -X GET

Logging Controller