From ccee1dc4aee653993f0a22bdeba14340139f096e Mon Sep 17 00:00:00 2001 From: Nabil Dakkoune Date: Fri, 22 May 2026 14:41:27 +0200 Subject: [PATCH] fix(go-forwarder): rename host key to hostname --- aws/logs_monitoring_go/internal/model/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/logs_monitoring_go/internal/model/log.go b/aws/logs_monitoring_go/internal/model/log.go index c26da1ac9..3f669ffd9 100644 --- a/aws/logs_monitoring_go/internal/model/log.go +++ b/aws/logs_monitoring_go/internal/model/log.go @@ -13,7 +13,7 @@ import ( const sourceCategory = "aws" type LogEntry struct { - Host string `json:"hostname,omitempty"` + Host string `json:"host,omitempty"` ID string `json:"id,omitempty"` Timestamp int64 `json:"timestamp,omitempty"` Message string `json:"message,omitempty"`