# Lumberjack output contains no data

**URL:** https://discuss.elastic.co/t/lumberjack-output-contains-no-data/103818
**Category:** Logstash
**Created:** [October 13, 2017, 4:17am UTC](https://discuss.elastic.co/t/lumberjack-output-contains-no-data/103818 "2017-10-13T04:17:08Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Sjaak01](https://avatars.discourse-cdn.com/v4/letter/s/73ab20/32.png) [@Sjaak01](https://discuss.elastic.co/u/Sjaak01)
#### Post date: [October 13, 2017, 4:17am UTC](https://discuss.elastic.co/t/lumberjack-output-contains-no-data/103818/1 "2017-10-13T04:17:08Z")

</div>

Hi,

I want to ship data from Logstash A (client) to Logstash B (server).

Logtash A will need to decode netflow traffic, add and remove some fields and then send it to Logstash B for further processing and finally send data to Elastic.

I've got a lumberjack output and input working, I'm receiving data but it doesn't appear lumberjack is outputting any data.

Received data:

```auto
{
  "_index": "test2017.10.13",
  "_type": "logs",
  "_id": "AV8T7SDgV08ceArt086i",
  "_version": 1,
  "_score": null,
  "_source": {
    "@timestamp": "2017-10-13T04:10:28.433Z",
    "input_name": "input_location_a",
    "@version": "1",
    "message": "2017-10-13T04:08:25.000Z 10.0.0.246 %{message}"
  },
  "fields": {
    "@timestamp": [
      1507867828433
    ]
  },
  "sort": [
    1507867828433
  ]
}
```

This doesn't contain any of the netflow data.

Client config

```auto
input {
   udp {
     port => 9995
	codec => netflow {
	versions => [9]
	}
       }
}

filter {
 mutate {
    add_field => { "output_location_name" => "output_location_a" }
}
}

output {
  lumberjack {
          id => "fortinetflowtest"
          hosts => "ipofserver"
          port => 9998
	  ssl_certificate => "/etc/pki/tls/certs/logstash-forwarder.crt"
      }
}
```

Server config

```auto
input {
  lumberjack {
    id => "fortinetflowtest"
    port => 9998
    ssl_certificate => "/etc/pki/tls/certs/logstash-forwarder.crt"
    ssl_key => "/etc/pki/tls/private/logstash-forwarder.key"
  }
}

filter {
 mutate {
    add_field => { "input_name" => "input_location_a" }
}
}

output {
elasticsearch {
hosts => localhost
index => "test%{+YYYY.MM.dd}"
  }
}
```

---

<div class="post-metadata">

### Author: ![Sjaak01](https://avatars.discourse-cdn.com/v4/letter/s/73ab20/32.png) [@Sjaak01](https://discuss.elastic.co/u/Sjaak01)
#### Post date: [October 13, 2017, 11:47pm UTC](https://discuss.elastic.co/t/lumberjack-output-contains-no-data/103818/2 "2017-10-13T23:47:09Z")

</div>

Nobody?

---

<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: [November 10, 2017, 11:47pm UTC](https://discuss.elastic.co/t/lumberjack-output-contains-no-data/103818/3 "2017-11-10T23:47:29Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
