Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .package-version
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
<<<<<<< HEAD
"version": "9.0.8-SNAPSHOT",
"build_id": "9.0.8-2b9f4fc8",
"manifest_url": "https://snapshots.elastic.co/9.0.8-2b9f4fc8/manifest-9.0.8-SNAPSHOT.json",
"summary_url": "https://snapshots.elastic.co/9.0.8-2b9f4fc8/summary-9.0.8-SNAPSHOT.html",
"build_id": "9.0.8-ae254220",
"manifest_url": "https://snapshots.elastic.co/9.0.8-ae254220/manifest-9.0.8-SNAPSHOT.json",
"summary_url": "https://snapshots.elastic.co/9.0.8-ae254220/summary-9.0.8-SNAPSHOT.html",
"core_version": "9.0.8",
"stack_build_id": "9.0.8-2b9f4fc8-SNAPSHOT"
"stack_build_id": "9.0.8-ae254220-SNAPSHOT"
}
23 changes: 23 additions & 0 deletions testing/integration/k8s/testdata/journald-input.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
outputs:
default:
type: elasticsearch
hosts:
- ${ES_HOST}
username: ${ELASTICSEARCH_USERNAME}
password: ${ELASTICSEARCH_PASSWORD}

agent:
monitoring:
enabled: false

inputs:
- id: journald
log_level: debug
type: journald
data_stream:
namespace: "${EA_POLICY_NAMESPACE}"
streams:
- id: journald-input-id
paths:
- "/opt/journald/"
merge: true
36 changes: 36 additions & 0 deletions testing/integration/k8s/testdata/journald-otel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
receivers:
filebeatreceiver:
filebeat:
inputs:
- type: journald
id: journald-input
paths:
- /opt/journal/
merge: true

output:
otelconsumer:
logging:
level: debug
selectors:
- '*'

processors:
resource:
attributes:
- key: data_stream.namespace
action: insert
value: "${EA_POLICY_NAMESPACE}"

exporters:
elasticsearch:
endpoint: "${ES_HOST}"
api_key: "${ES_API_KEY_ENCODED}"

service:
pipelines:
logs:
receivers: [filebeatreceiver]
processors: [resource]
exporters:
- elasticsearch
Loading