# After upgrade to 9.3.4 problem with system and windows integration

**URL:** https://discuss.elastic.co/t/after-upgrade-to-9-3-4-problem-with-system-and-windows-integration/386156
**Category:** Elasticsearch
**Tags:** ingest-pipeline
**Created:** [May 4, 2026, 7:22pm UTC](https://discuss.elastic.co/t/after-upgrade-to-9-3-4-problem-with-system-and-windows-integration/386156 "2026-05-04T19:22:03Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Mario\_22](https://avatars.discourse-cdn.com/v4/letter/m/4491bb/32.png) [@Mario\_22](https://discuss.elastic.co/u/Mario_22)
#### Post date: [May 4, 2026, 7:22pm UTC](https://discuss.elastic.co/t/after-upgrade-to-9-3-4-problem-with-system-and-windows-integration/386156/1 "2026-05-04T19:22:03Z")

</div>

Windows Event Logs stop indexing after upgrade to Elastic Agent 9.3.4 — system.application, system.system, Sysmon, PowerShell, and Custom Windows logs dropped with HTTP 400 Malformed content / dataset mapping conflict; possible Beats-based serialization regression in 9.3.4

**Environment**

Elastic Stack: 9.3.4  
Elasticsearch / Kibana: 9.3.4  
Fleet Server: 9.3.4  
Elastic Agent: 9.3.4 on Windows endpoints  
System integration: 2.17.0  
Windows integration: 3.8.3  
Custom Windows Event Log integration: enabled on selected policies  
Operating systems: Windows Server 2019 / Windows Server 2022, mixed locales: PL / DE / EN  
Deployment model: Fleet-managed Elastic Agents, agents output directly to Elasticsearch over HTTPS. No persistent connectivity issues observed.

According to Elastic documentation, the System integration is responsible for Windows Application, System, and Security event logs, while the Windows integration collects Windows-specific logs such as Sysmon and PowerShell. This matches our configuration.

**Summary**

After upgrading the Elastic Stack, Fleet Server, Elastic Agents, and integrations to 9.3.4, multiple Windows Event Log datasets stopped indexing.

Affected datasets include:

`system.application`  
`system.system`  
`windows.sysmon_operational`  
`windows.powershell / powershell operational`  
`winlog.winlog / Custom Windows Event Log datasets`

The notable exception is:

`system.security`

system.security continues to ingest successfully.  
Elastic Agent / Filebeat logs, events from the affected streams are being rejected by Elasticsearch and dropped:

`Failed to index N events in last 10s: events were dropped!`  
`Cannot index event ... status=400 ... dropping event!`

**Symptoms**

1. HTTP 400 illegal\_argument\_exception — malformed bulk document content

For multiple Windows Event Log datasets, Filebeat logs show errors like:

`Cannot index event ... (status=400):`  
`{`  
`"type": "illegal_argument_exception",`  
`"reason": "Malformed content, found extra data after parsing: END_OBJECT"`  
`}`

Example event payload contains:

`"event": {`  
`"created": {},`  
`"code": "4098",`  
`"kind": "event",`  
`"provider": "Group Policy Files",`  
`"dataset": "system.application"`  
`}`

\*\*This appears related to the official Elastic Agent 9.3.4 known issue where Beats-based integrations incorrectly serialize timestamp fields in the event body as empty {} JSON objects. Elastic documentation specifically mentions event.created: {} and states that this applies to Elastic Agent 9.3.4, with a fix expected in 9.3.5; 9.4.0 is not affected.

Temporary workaround under consideration\*\*

We are considering adding custom ingest pipelines to remove empty timestamp objects, for example:

> PUT \_ingest/pipeline/fix\_agent\_934\_empty\_timestamp\_objects  
> {  
> "description": "Workaround for Elastic Agent 9.3.4 empty timestamp object bug",  
> "processors": [  
> {  
> "remove": {  
> "if": "ctx.event != null && ctx.event.created instanceof Map",  
> "field": "event.created",  
> "ignore\_missing": true  
> }  
> },  
> {  
> "remove": {  
> "if": "ctx.event != null && ctx.event.ingested instanceof Map",  
> "field": "event.ingested",  
> "ignore\_missing": true  
> }  
> }  
> ]  
> }

and then attaching this to affected custom pipelines

---

<div class="post-metadata">

### Author: ![leandrojmp](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/leandrojmp/32/107231_2.png) [@leandrojmp](https://discuss.elastic.co/u/leandrojmp)
#### Post date: [May 4, 2026, 9:31pm UTC](https://discuss.elastic.co/t/after-upgrade-to-9-3-4-problem-with-system-and-windows-integration/386156/2 "2026-05-04T21:31:35Z")

</div>

> [@Mario\_22](#):
>
> We are considering adding custom ingest pipelines to remove empty timestamp objects

I would say that this is basically one of the few ways to solve this until the fix is released.

Another way would be to rollback the agents on version 9.3.4 (remove it and install a previous version).

Also, I don't think you need to include `event.ingested` as this is created on Elasticsearch side.

---

<div class="post-metadata">

### Author: ![Mario\_22](https://avatars.discourse-cdn.com/v4/letter/m/4491bb/32.png) [@Mario\_22](https://discuss.elastic.co/u/Mario_22)
#### Post date: [May 5, 2026, 5:49am UTC](https://discuss.elastic.co/t/after-upgrade-to-9-3-4-problem-with-system-and-windows-integration/386156/3 "2026-05-05T05:49:04Z")

</div>

Actually, event.created is enough.  
Theoretically, rolling back the Elastic Agent to a lower version would also solve the problem. In my case, a rollback wasn't possible. Only a reinstall was possible.
