Skip to content

Example: HTTP relay

Lorenzo Mangani edited this page Aug 27, 2017 · 11 revisions

paStash can be used to spin up a simple HTTP Relay w/ optional filters and path routing

input {
  http {
    host => 127.0.0.1
    port => 8080
  }
}

filter { ... }

output {
  http_post {
    host => 10.0.0.1
    port => 18090
    path => '#{path}'
  }
}
Clone this wiki locally