Skip to content

Logstash Ingest Pipeline - Failure with 'system' Elastic Integration #47

Closed
@roaksoax

Description

@roaksoax

I have a Logstash configured to run Ingest Pipelines, leveraging an Agent/Fleet server with a policy that only includes the 'System' integration failing. The whole error is attached here.

Logstash config is:

input {
    beats {
      id => "elastic-agent-input"
      port => 5044
      ssl => true
      ssl_certificate_authorities => ["/etc/logstash/certs/ca.crt"]
      ssl_certificate => "/etc/logstash/certs/logstash.crt"
      ssl_key => "/etc/logstash/certs/logstash.pkcs8.key"
      ssl_verify_mode => "force_peer"
    }
}
filter {
    elastic_integration {
        cloud_id => "..."
        auth_basic_username => "logstash"
        auth_basic_password => "..."
    }
}
output {
    elasticsearch {
        id => "elasticsearch_output"
        ssl => true
        data_stream => true
        cloud_id => "..."
        api_key => "..."
    }
}
  • The logstash user has the following roles: logstash_admin logstash_system and a custom logstash_ingest_pipeline role with the monitor, read_pipeline, and manage_index_templates permissions.
  • Fleet Agent Policy Integration is the default 'system' one:

Screenshot 2023-04-19 at 5 23 10 PM

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions