# F5 log to logstash via Redis

**URL:** https://discuss.elastic.co/t/f5-log-to-logstash-via-redis/26299
**Category:** Logstash
**Created:** [July 26, 2015, 3:50am UTC](https://discuss.elastic.co/t/f5-log-to-logstash-via-redis/26299 "2015-07-26T03:50:36Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![bw57899](https://avatars.discourse-cdn.com/v4/letter/b/b782af/32.png) [@bw57899](https://discuss.elastic.co/u/bw57899)
#### Post date: [July 26, 2015, 3:50am UTC](https://discuss.elastic.co/t/f5-log-to-logstash-via-redis/26299/1 "2015-07-26T03:50:36Z")

</div>

The network F5 team export the log via syslog protocol to logstash. I provide the port with below, and get the logs successfully.

```
input {
  syslog {
    type => syslog
    port => 5514
  }
}

```

But I want to export the F5 log to redis server first then from Redis to logstash, what do I need adjust? I can't install any third party softwares on F5 (virtual F5), such as logstash-forwarder, logstash shipper, etc.

---

<div class="post-metadata">

### Author: ![warkolm](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/warkolm/32/39224_2.png) [@warkolm](https://discuss.elastic.co/u/warkolm)
#### Post date: [July 26, 2015, 4:32am UTC](https://discuss.elastic.co/t/f5-log-to-logstash-via-redis/26299/2 "2015-07-26T04:32:59Z")

</div>

You need to add an output to Redis, then another instance of LS with a redis input and then an ES output.  
Basically you're just splitting things up.

---

<div class="post-metadata">

### Author: ![bw57899](https://avatars.discourse-cdn.com/v4/letter/b/b782af/32.png) [@bw57899](https://discuss.elastic.co/u/bw57899)
#### Post date: [July 27, 2015, 12:07am UTC](https://discuss.elastic.co/t/f5-log-to-logstash-via-redis/26299/3 "2015-07-27T00:07:36Z")

</div>

Thanks, @warkolm, will take a try and back to you later.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 6, 2017, 5:33am UTC](https://discuss.elastic.co/t/f5-log-to-logstash-via-redis/26299/4 "2017-07-06T05:33:47Z")

</div>


