Skip to content

Commit

Permalink
Filebeat GCP input remove erroneous error log (#36296)
Browse files Browse the repository at this point in the history
Removing an erroneous error log that slipped in with the addition of input metrics to the gcp input
  • Loading branch information
kgeller authored Aug 14, 2023
1 parent 6151ae8 commit 6b76cfe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- Filter out duplicate paths resolved from matching globs. {issue}36253[36253] {pull}36256[36256]
- Fix handling of TCP/UDP address resolution during metric initialization. {issue}35064[35064] {pull}36287[36287]
- Fix handling of Juniper SRX structured data when there is no leading junos element. {issue}36270[36270] {pull}36308[36308]
- Remove erroneous error log in GCPPubSub input. {pull}36296[36296]

*Heartbeat*

Expand Down
1 change: 0 additions & 1 deletion x-pack/filebeat/input/gcppubsub/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ func NewInput(cfg *conf.C, connector channel.Connector, inputContext input.Conte
in.metrics.ackedMessageCount.Inc()
in.metrics.bytesProcessedTotal.Add(uint64(len(msg.Data)))
in.metrics.processingTime.Update(time.Since(msg.PublishTime).Nanoseconds())
in.log.Error("ACKing pub/sub event")
} else {
in.metrics.failedAckedMessageCount.Inc()
in.log.Error("Failed ACKing pub/sub event")
Expand Down

0 comments on commit 6b76cfe

Please sign in to comment.