# Winlogbeat 7.5.2 duplicate events

**URL:** https://discuss.elastic.co/t/winlogbeat-7-5-2-duplicate-events/220371
**Category:** Beats
**Tags:** winlogbeat
**Created:** [February 21, 2020, 1:17pm UTC](https://discuss.elastic.co/t/winlogbeat-7-5-2-duplicate-events/220371 "2020-02-21T13:17:29Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![knrdv](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/knrdv/32/49030_2.png) [@knrdv](https://discuss.elastic.co/u/knrdv)
#### Post date: [February 21, 2020, 1:17pm UTC](https://discuss.elastic.co/t/winlogbeat-7-5-2-duplicate-events/220371/1 "2020-02-21T13:17:30Z")

</div>

**Issue** : One event from one Windows host shows like multiple identical events in Kibana. Events shown in Kibana differentiate only by the "\_id" field with everything else being identical. What could be the problem?  
**Verisons** : Running Winlogbeat, Logstash, Elasticsearch and Kibana on version 7.5.2.

---

<div class="post-metadata">

### Author: ![kvch](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/kvch/32/72058_2.png) [@kvch](https://discuss.elastic.co/u/kvch)
#### Post date: [February 21, 2020, 3:26pm UTC](https://discuss.elastic.co/t/winlogbeat-7-5-2-duplicate-events/220371/2 "2020-02-21T15:26:03Z")

</div>

Could you please share Winlogbeat and Logstash configuration and format it using `</>`?

---

<div class="post-metadata">

### Author: ![knrdv](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/knrdv/32/49030_2.png) [@knrdv](https://discuss.elastic.co/u/knrdv)
#### Post date: [February 24, 2020, 8:51am UTC](https://discuss.elastic.co/t/winlogbeat-7-5-2-duplicate-events/220371/4 "2020-02-24T08:51:00Z")

</div>

Hi, yes, here is the **Winlogbeat.yml** config:

```
#======================= Winlogbeat specific options ==========================

# event_logs specifies a list of event logs to monitor as well as any
# accompanying options. The YAML data type of event_logs is a list of
# dictionaries.
#
# The supported keys are name (required), tags, fields, fields_under_root,
# forwarded, ignore_older, level, event_id, provider, and include_xml. Please
# visit the documentation for the complete details of each option.
# https://go.es.io/WinlogbeatConfig
winlogbeat.event_logs:
  - name: Application
    ignore_older: 72h
  - name: Security
  - name: System

#==================== Elasticsearch template setting ==========================

setup.template.settings:
  index.number_of_shards: 3
  #index.codec: best_compression
  #_source.enabled: false

#----------------------------- Logstash output --------------------------------
output.logstash:
  # The Logstash hosts
  hosts: ["<hostname_redacted>:5045"]
  ssl.enabled: true

```

Logstash configuration is configured using **pipelines.yml** file which looks like this:

```
- pipeline.id: filebeat
  path.config: "/etc/logstash/conf.d/filebeat/*.conf"

- pipeline.id: winlogbeat
  path.config: "/etc/logstash/conf.d/winlogbeat/*.conf"

```

pipelines.yml pulls winlogbeat configuration from two .conf files, the first winlogbeat .conf file defines inputs and it's called **01-input.conf** and it looks like this:

```
input {
  beats {
    port => 5045
    ssl => true
    ssl_key => '/usr/share/logstash/config/server.key'
    ssl_certificate => '/usr/share/logstash/config/server.crt'
    ssl_verify_mode => 'none'
  }
}

```

The second file represents logstash output configuration for winlogbeat pipeline and it's called **03-output.conf** :

```
output {
  elasticsearch {
    hosts => ["https://<hostname_redacted>:443"]
    user => "<username_redacted>"
    password => "<password_redacted>"
    manage_template => false
    ssl_certificate_verification => false
    ssl => true
    cacert => "/usr/share/logstash/config/<certificate_name_redacted>.pem"
    index => "%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}"
  }
}

```

Hope this helps.

---

<div class="post-metadata">

### Author: ![knrdv](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/knrdv/32/49030_2.png) [@knrdv](https://discuss.elastic.co/u/knrdv)
#### Post date: [March 19, 2020, 3:35pm UTC](https://discuss.elastic.co/t/winlogbeat-7-5-2-duplicate-events/220371/5 "2020-03-19T15:35:42Z")

</div>

Hi, we still haven't found a solution to this problem. We could provide more info about the configuration if that might help?

---

<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: [April 16, 2020, 3:35pm UTC](https://discuss.elastic.co/t/winlogbeat-7-5-2-duplicate-events/220371/6 "2020-04-16T15:35:44Z")

</div>

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