-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathevent_logging_test.go
437 lines (378 loc) · 11.7 KB
/
event_logging_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License 2.0;
// you may not use this file except in compliance with the Elastic License 2.0.
//go:build integration
package integration
import (
"bufio"
"bytes"
"context"
"encoding/json"
"fmt"
"net/http"
"net/http/httputil"
"os"
"path"
"path/filepath"
"strings"
"testing"
"time"
"github.com/gofrs/uuid/v5"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
atesting "github.com/elastic/elastic-agent/pkg/testing"
"github.com/elastic/elastic-agent/pkg/testing/define"
"github.com/elastic/elastic-agent/pkg/testing/tools/fleettools"
"github.com/elastic/elastic-agent/pkg/testing/tools/testcontext"
)
var eventLogConfig = `
outputs:
default:
type: elasticsearch
hosts:
- %s
protocol: http
preset: latency
inputs:
- type: filestream
id: your-input-id
log_level: debug
streams:
- id: your-filestream-stream-id
data_stream:
dataset: generic
paths:
- %s
# Disable monitoring so there are less Beats running and less logs being generated.
agent.monitoring:
enabled: false
logs: false
metrics: false
pprof.enabled: false
use_output: default
# Needed if you already have an Elastic-Agent running on your machine
# That's very helpful for running the tests locally
agent.monitoring:
http:
enabled: false
port: 7002
agent.grpc:
address: localhost
port: 7001
`
func TestEventLogFile(t *testing.T) {
_ = define.Require(t, define.Requirements{
Group: Default,
Stack: &define.Stack{},
Local: true,
Sudo: false,
})
ctx, cancel := testcontext.WithDeadline(
t,
context.Background(),
time.Now().Add(10*time.Minute))
defer cancel()
agentFixture, err := define.NewFixtureFromLocalBuild(t, define.Version())
require.NoError(t, err)
esURL := startMockES(t, 0, 0, 0, 0)
logFilepath := path.Join(t.TempDir(), t.Name())
generateLogFile(t, logFilepath, time.Millisecond*100, 20)
cfg := fmt.Sprintf(eventLogConfig, esURL, logFilepath)
if err := agentFixture.Prepare(ctx); err != nil {
t.Fatalf("cannot prepare Elastic-Agent fixture: %s", err)
}
if err := agentFixture.Configure(ctx, []byte(cfg)); err != nil {
t.Fatalf("cannot configure Elastic-Agent fixture: %s", err)
}
cmd, err := agentFixture.PrepareAgentCommand(ctx, nil)
if err != nil {
t.Fatalf("cannot prepare Elastic-Agent command: %s", err)
}
output := strings.Builder{}
cmd.Stderr = &output
cmd.Stdout = &output
if err := cmd.Start(); err != nil {
t.Fatalf("could not start Elastic-Agent: %s", err)
}
// Make sure the Elastic-Agent process is not running before
// exiting the test
t.Cleanup(func() {
// Ignore the error because we cancelled the context,
// and that always returns an error
_ = cmd.Wait()
if t.Failed() {
t.Log("Elastic-Agent output:")
t.Log(output.String())
}
})
// Now the Elastic-Agent is running, so validate the Event log file.
requireEventLogFileExistsWithData(t, agentFixture)
requireNoCopyProcessorError(t, agentFixture)
// The diagnostics command is already tested by another test,
// here we just want to validate the events log behaviour
// extract the zip file into a temp folder
expectedLogFiles, expectedEventLogFiles := getLogFilenames(
t,
filepath.Join(agentFixture.WorkDir(),
"data",
"elastic-agent-*",
"logs"))
collectDiagnosticsAndVeriflyLogs(
t,
ctx,
agentFixture,
[]string{"diagnostics", "collect"},
append(expectedLogFiles, expectedEventLogFiles...))
collectDiagnosticsAndVeriflyLogs(
t,
ctx,
agentFixture,
[]string{"diagnostics", "collect", "--exclude-events"},
expectedLogFiles)
}
func TestEventLogOutputConfiguredViaFleet(t *testing.T) {
info := define.Require(t, define.Requirements{
Stack: &define.Stack{},
Local: false,
Sudo: true,
OS: []define.OS{
{Type: define.Linux},
},
Group: "container",
})
t.Skip("Flaky test: https://github.com/elastic/elastic-agent/issues/5159")
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute)
defer cancel()
agentFixture, err := define.NewFixtureFromLocalBuild(t, define.Version())
require.NoError(t, err)
_, outputID := createMockESOutput(t, info, 0, 0, 100, 0)
policyName := fmt.Sprintf("%s-%s", t.Name(), uuid.Must(uuid.NewV4()).String())
policyID, enrollmentAPIKey := createPolicy(
t,
ctx,
agentFixture,
info,
policyName,
outputID)
fleetURL, err := fleettools.DefaultURL(ctx, info.KibanaClient)
if err != nil {
t.Fatalf("could not get Fleet URL: %s", err)
}
enrollArgs := []string{
"enroll",
"--force",
"--skip-daemon-reload",
"--url",
fleetURL,
"--enrollment-token",
enrollmentAPIKey,
}
addLogIntegration(t, info, policyID, "/tmp/flog.log")
generateLogFile(t, "/tmp/flog.log", time.Second/2, 100)
enrollCmd, err := agentFixture.PrepareAgentCommand(ctx, enrollArgs)
if err != nil {
t.Fatalf("could not prepare enroll command: %s", err)
}
if out, err := enrollCmd.CombinedOutput(); err != nil {
t.Fatalf("error enrolling Elastic-Agent: %s\nOutput:\n%s", err, string(out))
}
runAgentCMD, agentOutput := prepareAgentCMD(t, ctx, agentFixture, nil, nil)
if err := runAgentCMD.Start(); err != nil {
t.Fatalf("could not start Elastic-Agent: %s", err)
}
assert.Eventuallyf(t, func() bool {
// This will return errors until it connects to the agent,
// they're mostly noise because until the agent starts running
// we will get connection errors. If the test fails
// the agent logs will be present in the error message
// which should help to explain why the agent was not
// healthy.
err := agentFixture.IsHealthy(ctx)
return err == nil
},
2*time.Minute, time.Second,
"Elastic-Agent did not report healthy. Agent status error: \"%v\", Agent logs\n%s",
err, agentOutput,
)
// The default behaviour is to log events to the events log file
// so ensure this is happening
requireEventLogFileExistsWithData(t, agentFixture)
// Add a policy overwrite to change the events output to stderr
addOverwriteToPolicy(t, info, policyName, policyID)
// Ensure Elastic-Agent is healthy after the policy change
assert.Eventuallyf(t, func() bool {
// This will return errors until it connects to the agent,
// they're mostly noise because until the agent starts running
// we will get connection errors. If the test fails
// the agent logs will be present in the error message
// which should help to explain why the agent was not
// healthy.
err := agentFixture.IsHealthy(ctx)
return err == nil
},
2*time.Minute, time.Second,
"Elastic-Agent did not report healthy after policy change. Agent status error: \"%v\", Agent logs\n%s",
err, agentOutput,
)
// Ensure the events logs are going to stderr
assert.Eventually(t, func() bool {
agentOutputStr := agentOutput.String()
scanner := bufio.NewScanner(strings.NewReader(agentOutputStr))
for scanner.Scan() {
if strings.Contains(scanner.Text(), "Cannot index event") {
return true
}
}
return false
}, 3*time.Minute, 10*time.Second, "cannot find events on stderr")
}
func addOverwriteToPolicy(t *testing.T, info *define.Info, policyName, policyID string) {
addLoggingOverwriteBody := fmt.Sprintf(`
{
"name": "%s",
"namespace": "default",
"overrides": {
"agent": {
"logging": {
"event_data": {
"to_stderr": true,
"to_files": false
}
}
}
}
}
`, policyName)
resp, err := info.KibanaClient.Send(
http.MethodPut,
fmt.Sprintf("/api/fleet/agent_policies/%s", policyID),
nil,
nil,
bytes.NewBufferString(addLoggingOverwriteBody),
)
if err != nil {
t.Fatalf("could not execute request to Kibana/Fleet: %s", err)
}
if resp.StatusCode != http.StatusOK {
// On error dump the whole request response so we can easily spot
// what went wrong.
t.Errorf("received a non 200-OK when adding overwrite to policy. "+
"Status code: %d", resp.StatusCode)
respDump, err := httputil.DumpResponse(resp, true)
if err != nil {
t.Fatalf("could not dump error response from Kibana: %s", err)
}
// Make debugging as easy as possible
t.Log("================================================================================")
t.Log("Kibana error response:")
t.Log(string(respDump))
t.FailNow()
}
}
func readEventLogFile(t *testing.T, agentFixture *atesting.Fixture) string {
// Now the Elastic-Agent is running, so validate the Event log file.
// Because the path changes based on the Elastic-Agent version, we
// use glob to find the file
var logFileName string
require.Eventually(t, func() bool {
// We ignore this error because the folder might not be there.
// Once the folder and file are there, then this call should succeed
// and we can read the file.
glob := filepath.Join(
agentFixture.WorkDir(),
"data", "elastic-agent-*", "logs", "events", "*")
files, err := filepath.Glob(glob)
if err != nil {
t.Fatalf("could not scan for the events log file: %s", err)
}
if len(files) == 1 {
logFileName = files[0]
return true
}
return false
}, time.Minute, time.Second, "could not find event log file")
logEntryBytes, err := os.ReadFile(logFileName)
if err != nil {
t.Fatalf("cannot read file '%s': %s", logFileName, err)
}
return string(logEntryBytes)
}
func requireNoCopyProcessorError(t *testing.T, agentFixture *atesting.Fixture) {
data := readEventLogFile(t, agentFixture)
for _, line := range strings.Split(data, "\n") {
logEntry := struct {
LogLogger string `json:"log.logger"`
Message string `json:"message"`
}{}
if len(line) == 0 {
continue
}
if err := json.Unmarshal([]byte(line), &logEntry); err != nil {
t.Fatalf("could not parse log entry: %q", line)
}
if logEntry.LogLogger == "copy_fields" {
if strings.Contains(logEntry.Message, "Failed to copy fields") {
if strings.Contains(logEntry.Message, "already exists, drop or rename this field first") {
t.Fatal("copy_fields processor must not fail")
}
}
}
}
}
func requireEventLogFileExistsWithData(t *testing.T, agentFixture *atesting.Fixture) {
logEntry := readEventLogFile(t, agentFixture)
// That's part of the generated event that is logged by the 'processor'
// logger at level debug
expectedStr := "TestEventLogFile"
if !strings.Contains(logEntry, expectedStr) {
t.Errorf(
"did not find the expected log entry ('%s') in the events log file",
expectedStr)
t.Log("Event log file contents:")
t.Log(logEntry)
}
}
func collectDiagnosticsAndVeriflyLogs(
t *testing.T,
ctx context.Context,
agentFixture *atesting.Fixture,
cmd,
expectedFiles []string) {
diagPath, err := agentFixture.ExecDiagnostics(ctx, cmd...)
if err != nil {
t.Fatalf("could not execute diagnostics excluding events log: %s", err)
}
extractionDir := t.TempDir()
extractZipArchive(t, diagPath, extractionDir)
diagLogFiles, diagEventLogFiles := getLogFilenames(
t,
filepath.Join(extractionDir, "logs", "elastic-agent*"))
allLogs := append(diagLogFiles, diagEventLogFiles...)
require.ElementsMatch(
t,
expectedFiles,
allLogs,
"expected: 'listA', got: 'listB'")
}
func getLogFilenames(
t *testing.T,
basepath string,
) (logFiles, eventLogFiles []string) {
logFilesGlob := filepath.Join(basepath, "*.ndjson")
logFilesPath, err := filepath.Glob(logFilesGlob)
if err != nil {
t.Fatalf("could not get log file names:%s", err)
}
for _, f := range logFilesPath {
logFiles = append(logFiles, filepath.Base(f))
}
eventLogFilesGlob := filepath.Join(basepath, "events", "*.ndjson")
eventLogFilesPath, err := filepath.Glob(eventLogFilesGlob)
if err != nil {
t.Fatalf("could not get log file names:%s", err)
}
for _, f := range eventLogFilesPath {
eventLogFiles = append(eventLogFiles, filepath.Base(f))
}
return logFiles, eventLogFiles
}