From 37c6229e3e90baaeec91ba4276d821b7a66c107c Mon Sep 17 00:00:00 2001 From: Tiago Queiroz Date: Mon, 29 Nov 2021 11:31:12 +0100 Subject: [PATCH 01/12] Fix `decode_json_fields` processor to always add error key (#29107) When the `decode_json_fields` processor encountered an error while decoding the JSON it was not always respecting the `add_error_key` configuration. This commit fixes it. --- CHANGELOG.next.asciidoc | 1 + .../processors/actions/decode_json_fields.go | 5 +++++ .../actions/decode_json_fields_test.go | 21 +++++++++++++++++++ 3 files changed, 27 insertions(+) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index a4f34cb48ba..51e6623bb60 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -145,6 +145,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Fix `fingerprint` processor to give it access to the `@timestamp` field. {issue}28683[28683] - Fix the wrong beat name on monitoring and state endpoint {issue}27755[27755] - Skip configuration checks in autodiscover for configurations that are already running {pull}29048[29048] +- Fix `decode_json_processor` to always respect `add_error_key` {pull}29107[29107] *Auditbeat* diff --git a/libbeat/processors/actions/decode_json_fields.go b/libbeat/processors/actions/decode_json_fields.go index 611b5b8d8e3..be852a47133 100644 --- a/libbeat/processors/actions/decode_json_fields.go +++ b/libbeat/processors/actions/decode_json_fields.go @@ -122,6 +122,11 @@ func (f *decodeJSONFields) Run(event *beat.Event) (*beat.Event, error) { if err != nil { f.logger.Debugf("Error trying to unmarshal %s", text) errs = append(errs, err.Error()) + event.SetErrorWithOption(common.MapStr{ + "message": "parsing input as JSON: " + err.Error(), + "data": text, + "field": field, + }, f.addErrorKey) continue } diff --git a/libbeat/processors/actions/decode_json_fields_test.go b/libbeat/processors/actions/decode_json_fields_test.go index 73d4f3a5fcc..f58efd29b46 100644 --- a/libbeat/processors/actions/decode_json_fields_test.go +++ b/libbeat/processors/actions/decode_json_fields_test.go @@ -491,6 +491,27 @@ func TestOverwriteMetadata(t *testing.T) { assert.Equal(t, expected, actual) } +func TestAddErrorToEventOnUnmarshalError(t *testing.T) { + testConfig := common.MustNewConfigFrom(map[string]interface{}{ + "fields": "message", + "add_error_key": true, + }) + + input := common.MapStr{ + "message": "Broken JSON [[", + } + + actual := getActualValue(t, testConfig, input) + + errObj, ok := actual["error"].(common.MapStr) + require.True(t, ok, "'error' field not present or of invalid type") + require.NotNil(t, actual["error"]) + + assert.Equal(t, "message", errObj["field"]) + assert.NotNil(t, errObj["data"]) + assert.NotNil(t, errObj["message"]) +} + func getActualValue(t *testing.T, config *common.Config, input common.MapStr) common.MapStr { log := logp.NewLogger("decode_json_fields_test") From 7ad680025fbe8730ed3aa89f1082684e90222bc1 Mon Sep 17 00:00:00 2001 From: Henadzi Siardziukou <92367828+nxei@users.noreply.github.com> Date: Mon, 29 Nov 2021 15:56:30 +0300 Subject: [PATCH 02/12] Workflow for macos (#29174) * removed GO111MODULE=off environment variable --- .github/workflows/macos-build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/macos-build.yml b/.github/workflows/macos-build.yml index 1b45fecd271..6f392dff9e4 100644 --- a/.github/workflows/macos-build.yml +++ b/.github/workflows/macos-build.yml @@ -1,7 +1,6 @@ name: macos-build env: GOPATH: /home/runner/work/beats/beats - GO111MODULE: off REPO_PATH: src/beats MACOS_GOPATH: /Users/runner/work/beats/beats GITHUB_TOKEN: ${{ github.token }} From 24d6bbd19e8b154806c4e7fedd17d8472ed3810d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9mi=20V=C3=A1nyi?= Date: Mon, 29 Nov 2021 16:51:13 +0100 Subject: [PATCH 03/12] Use the generic helper for opening file to read in filestream (#29180) Closes #29113 --- CHANGELOG.next.asciidoc | 1 + filebeat/input/filestream/input.go | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 51e6623bb60..80fead3fb4c 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -192,6 +192,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Revert usageDetails api version to 2019-01-01. {pull}28995[28995] - Fix in `aws-s3` input regarding provider discovery through endpoint {pull}28963[28963] - Fix `threatintel.misp` filters configuration. {issue}27970[27970] +- Fix opening files on Windows in filestream so open files can be deleted. {issue}29113[29113] {pull}29180[29180] *Heartbeat* diff --git a/filebeat/input/filestream/input.go b/filebeat/input/filestream/input.go index c1ba829d65f..654938869af 100644 --- a/filebeat/input/filestream/input.go +++ b/filebeat/input/filestream/input.go @@ -29,6 +29,7 @@ import ( input "github.com/elastic/beats/v7/filebeat/input/v2" "github.com/elastic/beats/v7/libbeat/common" "github.com/elastic/beats/v7/libbeat/common/cleanup" + "github.com/elastic/beats/v7/libbeat/common/file" "github.com/elastic/beats/v7/libbeat/common/match" "github.com/elastic/beats/v7/libbeat/feature" "github.com/elastic/beats/v7/libbeat/logp" @@ -244,7 +245,7 @@ func (inp *filestream) openFile(log *logp.Logger, path string, offset int64) (*o } ok := false - f, err := os.OpenFile(path, os.O_RDONLY, os.FileMode(0)) + f, err := file.ReadOpen(path) if err != nil { return nil, fmt.Errorf("failed opening %s: %s", path, err) } From 74bc6cdd40fb377e08a1f8be48b2db339727da65 Mon Sep 17 00:00:00 2001 From: Dan Kortschak <90160302+efd6@users.noreply.github.com> Date: Tue, 30 Nov 2021 11:37:24 +1030 Subject: [PATCH 04/12] packetbeat: preparation for npcap addition (#29017) * packetbeat: run gofmt -s * packetbeat/protos/tls: prep for gofumpt * packetbeat: run gofumpt * packetbeat: clean up lint Address the following output from staticcheck. Checked lines are fixed here. - [ ] beater/processor.go:143:15: error strings should not be capitalized (ST1005) - [ ] decoder/decoder.go:142:15: error strings should not be capitalized (ST1005) - [ ] flows/flowid_test.go:57:6: func addUDP is unused (U1000) - [x] flows/flows_test.go:58:2: this value of err is never used (SA4006) - [x] flows/flows_test.go:59:2: this value of err is never used (SA4006) - [x] flows/flows_test.go:60:2: this value of err is never used (SA4006) - [x] flows/flows_test.go:61:2: this value of err is never used (SA4006) - [x] flows/flows_test.go:62:2: this value of err is never used (SA4006) - [x] flows/worker.go:110:17: should use time.Until instead of t.Sub(time.Now()) (S1024) - [ ] pb/event.go:435:13: error strings should not be capitalized (ST1005) - [x] procs/procs.go:216:55: should use time.Since instead of time.Now().Sub (S1012) - [x] protos/amqp/amqp.go:90:5: should omit comparison to bool constant, can be simplified to !amqp.hideConnectionInformation (S1002) - [ ] protos/amqp/amqp_fields.go:48:4: this value of fields is never used (SA4006) **BUG** - [ ] protos/amqp/amqp_fields.go:73:4: this value of fields is never used (SA4006) **BUG** - [x] protos/amqp/amqp_parser.go:77:22: func (*amqpStream).prepareForNewMessage is unused (U1000) - [x] protos/amqp/amqp_parser.go:162:5: should omit comparison to bool constant, can be simplified to amqp.parseHeaders (S1002) - [x] protos/amqp/amqp_parser.go:345:12: should omit comparison to bool constant, can be simplified to m.isRequest (S1002) - [x] protos/amqp/amqp_parser.go:347:12: should omit comparison to bool constant, can be simplified to !m.isRequest (S1002) - [x] protos/amqp/amqp_parser.go:353:9: should omit comparison to bool constant, can be simplified to amqp.hideConnectionInformation (S1002) - [x] protos/amqp/amqp_test.go:672:2: this value of private is never used (SA4006) - [x] protos/amqp/amqp_test.go:739:2: this value of private is never used (SA4006) - [x] protos/cassandra/cassandra.go:203:25: func (*connection).dropStreams is unused (U1000) - [ ] protos/cassandra/internal/gocql/array_decoder.go:29:6: func readInt is unused (U1000) - [ ] protos/cassandra/internal/gocql/marshal.go:279:6: func getApacheCassandraType is unused (U1000) - [x] protos/cassandra/internal/gocql/marshal.go:352:7: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (ST1006) - [ ] protos/cassandra/internal/gocql/marshal.go:569:2: const flagValues is unused (U1000) - [ ] protos/cassandra/internal/gocql/marshal.go:570:2: const flagSkipMetaData is unused (U1000) - [ ] protos/cassandra/internal/gocql/marshal.go:571:2: const flagPageSize is unused (U1000) - [ ] protos/cassandra/internal/gocql/marshal.go:572:2: const flagWithPagingState is unused (U1000) - [ ] protos/cassandra/internal/gocql/marshal.go:573:2: const flagWithSerialConsistency is unused (U1000) - [ ] protos/cassandra/internal/gocql/marshal.go:574:2: const flagDefaultTimestamp is unused (U1000) - [ ] protos/cassandra/internal/gocql/marshal.go:575:2: const flagWithNameValues is unused (U1000) - [x] protos/cassandra/parser.go:72:2: field transactionTimeout is unused (U1000) - [ ] protos/cassandra/parser.go:79:22: error strings should not be capitalized (ST1005) - [x] protos/cassandra/pub.go:36:2: field ignoredOps is unused (U1000) - [ ] protos/dhcpv4/option_ip_addresses.go:42:15: error strings should not be capitalized (ST1005) - [x] protos/dns/dns.go:68:2: const query is unused (U1000) - [x] protos/dns/dns.go:69:2: const response is unused (U1000) - [x] protos/dns/dns.go:206:2: field responseTime is unused (U1000) - [x] protos/http/http.go:929:24: func (*messageList).last is unused (U1000) - [ ] protos/http/http_parser.go:264:18: error strings should not be capitalized (ST1005) - [ ] protos/http/http_parser.go:271:16: error strings should not be capitalized (ST1005) - [x] protos/http/http_test.go:59:22: func (*eventStore).empty is unused (U1000) - [x] protos/http/http_test.go:541:2: this value of msg is never used (SA4006) - [x] protos/http/http_test.go:647:2: this value of complete is never used (SA4006) - [x] protos/http/http_test.go:647:2: this value of ok is never used (SA4006) - [x] protos/http/http_test.go:653:2: this value of complete is never used (SA4006) - [x] protos/http/http_test.go:653:2: this value of ok is never used (SA4006) - [x] protos/http/http_test.go:658:2: this value of complete is never used (SA4006) - [x] protos/http/http_test.go:658:2: this value of ok is never used (SA4006) - [x] protos/http/http_test.go:673:2: this value of complete is never used (SA4006) - [x] protos/http/http_test.go:673:2: this value of ok is never used (SA4006) - [x] protos/icmp/icmp.go:260:25: func (*icmpPlugin).getTransaction is unused (U1000) - [ ] protos/icmp/message.go:93:2: logp.WTF is deprecated: Use logp.NewLogger and its Panic or DPanic methods. (SA1019) - [ ] protos/icmp/message.go:104:2: logp.WTF is deprecated: Use logp.NewLogger and its Panic or DPanic methods. (SA1019) - [ ] protos/icmp/message.go:115:2: logp.WTF is deprecated: Use logp.NewLogger and its Panic or DPanic methods. (SA1019) - [ ] protos/icmp/message.go:136:2: logp.WTF is deprecated: Use logp.NewLogger and its Panic or DPanic methods. (SA1019) - [ ] protos/icmp/message.go:147:2: logp.WTF is deprecated: Use logp.NewLogger and its Panic or DPanic methods. (SA1019) - [x] protos/memcache/binary.go:31:6: type memcacheMagic is unused (U1000) - [x] protos/memcache/binary.go:60:2: var extraValue is unused (U1000) - [ ] protos/memcache/errors.go:26:5: var errNotImplemented is unused (U1000) - [ ] protos/memcache/errors.go:33:2: var errExpectedNumber is unused (U1000) - [ ] protos/memcache/errors.go:35:2: var errExpectedCRLF is unused (U1000) - [ ] protos/memcache/errors.go:54:2: var errResponseUnknownTransaction is unused (U1000) - [x] protos/memcache/parse.go:29:2: const codeSpace is unused (U1000) - [x] protos/memcache/parse.go:29:2: only the first constant in this group has an explicit type (SA9004) - [x] protos/memcache/parse.go:30:2: const codeTab is unused (U1000) - [x] protos/memcache/plugin_tcp.go:63:7: const defaultTCPTransDuration is unused (U1000) - [ ] protos/memcache/plugin_tcp.go:377:4: logp.WTF is deprecated: Use logp.NewLogger and its Panic or DPanic methods. (SA1019) - [x] protos/memcache/text.go:410:6: func makeValue2Arg is unused (U1000) - [x] protos/mongodb/mongodb_parser.go:118:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:119:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:120:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:165:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:166:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:167:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:169:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:181:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:232:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:233:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:236:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:237:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:277:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:278:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:279:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:290:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:291:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:292:2: this value of err is never used (SA4006) - [ ] protos/mongodb/mongodb_parser.go:401:13: error strings should not be capitalized (ST1005) - [x] protos/mongodb/mongodb_parser.go:436:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_parser.go:461:2: this value of err is never used (SA4006) - [ ] protos/mongodb/mongodb_parser.go:470:24: error strings should not be capitalized (ST1005) - [x] protos/mongodb/mongodb_test.go:163:2: this value of err is never used (SA4006) - [x] protos/mongodb/mongodb_test.go:174:2: this value of err is never used (SA4006) - [x] protos/mysql/mysql.go:65:2: field fields is unused (U1000) - [x] protos/mysql/mysql.go:66:2: field rows is unused (U1000) - [x] protos/mysql/mysql.go:86:2: field params is unused (U1000) - [x] protos/mysql/mysql.go:944:4: empty branch (SA9003) - [x] protos/mysql/mysql_test.go:52:22: func (*eventStore).empty is unused (U1000) - [x] protos/mysql/mysql_test.go:679:3: this value of private is never used (SA4006) - [x] protos/nfs/xdr.go:43:15: func (*xdr).getInt is unused (U1000) - [x] protos/nfs/xdr.go:55:15: func (*xdr).getHyper is unused (U1000) - [x] protos/pgsql/pgsql.go:432:5: should omit nil check; len() for nil slices is defined as zero (S1009) - [x] protos/pgsql/pgsql_test.go:49:22: func (*eventStore).empty is unused (U1000) - [x] protos/protos_test.go:74:2: redundant return statement (S1023) - [x] protos/protos_test.go:103:2: redundant return statement (S1023) - [ ] protos/sip/parser.go:254:18: error strings should not be capitalized (ST1005) - [ ] protos/sip/parser.go:261:16: error strings should not be capitalized (ST1005) - [x] protos/tcp/tcp.go:291:6: func tcpSeqBefore is unused (U1000) - [ ] protos/tcp/tcp.go:309:17: error strings should not be capitalized (ST1005) - [x] protos/tcp/tcp_test.go:200:76: redundant return statement (S1023) - [ ] protos/thrift/thrift.go:272:10: error strings should not be capitalized (ST1005) - [ ] protos/thrift/thrift.go:279:10: error strings should not be capitalized (ST1005) - [x] protos/thrift/thrift_idl.go:52:28: should use make([]*string, max + 1) instead (S1019) - [ ] protos/thrift/thrift_idl.go:94:19: error strings should not be capitalized (ST1005) - [x] protos/thrift/thrift_test.go:125:2: this value of m is never used (SA4006) - [x] protos/thrift/thrift_test.go:133:2: this value of m is never used (SA4006) - [x] protos/thrift/thrift_test.go:153:2: this value of m is never used (SA4006) - [ ] protos/tls/alerts.go:72:15: error strings should not be capitalized (ST1005) - [ ] protos/tls/parse.go:21:2: package crypto/dsa is deprecated: DSA is a legacy algorithm, and modern alternatives such as Ed25519 (implemented by package crypto/ed25519) should be used instead. Keys with 1024-bit moduli (L1024N160 parameters) are cryptographically weak, while bigger keys are not widely supported. Note that FIPS 186-5 no longer approves DSA for signature generation. (SA1019) - [x] protos/tls/parse.go:56:2: only the first constant in this group has an explicit type (SA9004) - [x] protos/tls/parse.go:65:2: only the first constant in this group has an explicit type (SA9004) - [x] protos/tls/parse_test.go:128:6: func mapInt is unused (U1000) - [x] protos/tls/parse_test.go:175:2: this value of err is never used (SA4006) - [x] protos/tls/tls.go:175:5: don't use Yoda conditions (ST1017) - [x] protos/tls/tls_test.go:327:2: this value of err is never used (SA4006) - [x] protos/tls/tls_test.go:390:2: this value of err is never used (SA4006) - [x] protos/tls/tls_test.go:402:2: this value of err is never used (SA4006) - [x] protos/tls/tls_test.go:434:2: this value of err is never used (SA4006) - [x] protos/tls/tls_test.go:441:2: this value of err is never used (SA4006) - [ ] protos/udp/udp.go:93:17: error strings should not be capitalized (ST1005) - [x] protos/udp/udp_test.go:81:2: redundant return statement (S1023) - [ ] scripts/mage/config.go:28:2: const configTemplateGlob is unused (U1000) - [ ] scripts/mage/package.go:69:4: the surrounding loop is unconditionally terminated (SA4004) - [ ] sniffer/afpacket.go:40:19: error strings should not be capitalized (ST1005) - [ ] sniffer/afpacket_nonlinux.go:36:14: error strings should not be capitalized (ST1005) - [ ] sniffer/afpacket_nonlinux.go:40:19: error strings should not be capitalized (ST1005) - [ ] sniffer/afpacket_nonlinux.go:44:9: error strings should not be capitalized (ST1005) - [x] sniffer/device.go:65:13: the argument is already a string, there's no need to use fmt.Sprintf (S1025) - [ ] sniffer/device.go:84:15: error strings should not be capitalized (ST1005) - [ ] sniffer/device.go:89:15: error strings should not be capitalized (ST1005) - [ ] sniffer/device.go:100:14: error strings should not be capitalized (ST1005) - [ ] sniffer/file.go:82:20: error strings should not be capitalized (ST1005) - [x] sniffer/sniffer.go:42:2: field dumper is unused (U1000) - [ ] sniffer/sniffer.go:150:10: error strings should not be capitalized (ST1005) - [ ] sniffer/sniffer.go:195:11: error strings should not be capitalized (ST1005) - [ ] sniffer/sniffer.go:226:15: error strings should not be capitalized (ST1005) - [ ] sniffer/sniffer.go:250:10: error strings should not be capitalized (ST1005) - [x] sniffer/sniffer_test.go:55:2: this value of blockSize is never used (SA4006) - [x] sniffer/sniffer_test.go:55:2: this value of frameSize is never used (SA4006) - [x] sniffer/sniffer_test.go:55:2: this value of numBlocks is never used (SA4006) - [x] sniffer/sniffer_test.go:61:2: this value of err is never used (SA4006) * packetbeat/protos/amqp: clean up conditions * packetbeat/protos/cassandra: simplify ignored operations check * packetbeat/protos/icmp: simplify selector expression * packetbeat/sniffer: improve device name formatting logic * packetbeat/protos/amqp: clarify expectation for common.MapStr destination The previous code would drop data rather than fill the fields common.MapStr. This change clarifies that it is the caller's responsibility to provide a valid destination. * packetbeat: apply condition simplification staticcheck quickfix suggestions - [ ] flows/table.go:88:21: could remove embedded field "rawFlowID" from selector (QF1008) - [x] pb/event.go:240:2: could use tagged switch on f.Network.Transport (QF1002) - [x] protos/cassandra/config.go:48:5: could apply De Morgan's law (QF1001) - [x] protos/cassandra/internal/gocql/array_decoder.go:166:5: could apply De Morgan's law (QF1001) - [x] protos/cassandra/internal/gocql/stream_decoder.go:152:5: could apply De Morgan's law (QF1001) - [ ] protos/dhcpv4/dhcpv4.go:80:11: could remove embedded field "dhcpv4Config" from selector (QF1008) - [ ] protos/memcache/memcache.go:183:5: could remove embedded field "tcpConfig" from selector (QF1008) - [x] protos/memcache/memcache.go:257:3: could use tagged switch on prev.command.code (QF1003) - [ ] protos/memcache/memcache.go:377:4: could remove embedded field "Transaction" from selector (QF1008) - [ ] protos/memcache/plugin_tcp.go:115:4: could remove embedded field "Stream" from selector (QF1008) - [ ] protos/memcache/plugin_tcp.go:443:9: could remove embedded field "Stream" from selector (QF1008) - [x] protos/mongodb/mongodb.go:345:4: could use tagged switch on t.method (QF1003) - [x] protos/mysql/mysql.go:688:4: could use tagged switch on msg.typ (QF1003) - [x] protos/mysql/mysql.go:698:3: could use tagged switch on msg.typ (QF1003) - [ ] protos/redis/redis.go:120:4: could remove embedded field "Stream" from selector (QF1008) - [ ] protos/redis/redis.go:237:4: could remove embedded field "Stream" from selector (QF1008) - [ ] protos/redis/redis_test.go:215:5: could remove embedded field "Stream" from selector (QF1008) - [ ] protos/redis/redis_test.go:255:6: could remove embedded field "Stream" from selector (QF1008) - [x] protos/sip/parser.go:272:5: could apply De Morgan's law (QF1001) - [ ] protos/tls/parse.go:552:18: could remove embedded field "Parameters" from selector (QF1008) - [ ] protos/tls/tls.go:226:4: could remove embedded field "Stream" from selector (QF1008) Embedded field selector simplification are not applied because in many cases these probably should not be embedded fields or they clarify the intention. --- CHANGELOG.next.asciidoc | 2 + packetbeat/cmd/root.go | 2 +- packetbeat/config/agent.go | 4 +- packetbeat/decoder/decoder.go | 3 +- packetbeat/flows/flows_test.go | 6 +- packetbeat/flows/worker.go | 2 +- packetbeat/flows/worker_test.go | 8 +- packetbeat/pb/event.go | 10 +- .../add_kubernetes_metadata/indexers.go | 4 +- packetbeat/procs/procs.go | 2 +- packetbeat/procs/procs_linux_test.go | 4 +- packetbeat/procs/procs_windows.go | 16 ++- packetbeat/procs/procs_windows_test.go | 38 +++-- packetbeat/procs/zsyscall_windows.go | 4 +- packetbeat/protos/amqp/amqp.go | 54 +++---- packetbeat/protos/amqp/amqp_fields.go | 38 +++-- packetbeat/protos/amqp/amqp_methods.go | 30 ++-- packetbeat/protos/amqp/amqp_parser.go | 44 +++--- packetbeat/protos/amqp/amqp_structs.go | 16 +-- packetbeat/protos/amqp/amqp_test.go | 46 +++--- packetbeat/protos/amqp/config.go | 20 ++- packetbeat/protos/cassandra/cassandra.go | 9 +- packetbeat/protos/cassandra/config.go | 22 ++- .../cassandra/internal/gocql/array_decoder.go | 6 +- .../cassandra/internal/gocql/compressor.go | 4 +- .../cassandra/internal/gocql/decoder.go | 15 -- .../protos/cassandra/internal/gocql/frame.go | 33 ++--- .../cassandra/internal/gocql/marshal.go | 6 +- .../internal/gocql/stream_decoder.go | 2 +- packetbeat/protos/cassandra/parser.go | 20 +-- packetbeat/protos/cassandra/pub.go | 5 +- packetbeat/protos/cassandra/trans.go | 3 +- packetbeat/protos/dhcpv4/config.go | 12 +- packetbeat/protos/dns/config.go | 12 +- packetbeat/protos/dns/dns.go | 23 +-- packetbeat/protos/dns/dns_tcp.go | 6 +- packetbeat/protos/dns/dns_test.go | 6 +- packetbeat/protos/dns/dns_udp_test.go | 6 +- packetbeat/protos/http/config.go | 16 +-- packetbeat/protos/http/http.go | 24 ++-- packetbeat/protos/http/http_parser.go | 6 +- packetbeat/protos/http/http_test.go | 31 ++-- packetbeat/protos/icmp/config.go | 8 +- packetbeat/protos/icmp/icmp.go | 14 +- packetbeat/protos/icmp/tuple_test.go | 3 +- packetbeat/protos/memcache/binary.go | 11 +- packetbeat/protos/memcache/config.go | 14 +- packetbeat/protos/memcache/errors.go | 4 +- packetbeat/protos/memcache/parse.go | 5 - packetbeat/protos/memcache/parse_test.go | 6 +- packetbeat/protos/memcache/plugin_tcp.go | 2 - packetbeat/protos/memcache/text.go | 29 ++-- packetbeat/protos/mongodb/config.go | 16 +-- packetbeat/protos/mongodb/mongodb.go | 12 +- packetbeat/protos/mongodb/mongodb_parser.go | 105 ++++++++++++-- packetbeat/protos/mongodb/mongodb_test.go | 2 + packetbeat/protos/mysql/config.go | 18 ++- packetbeat/protos/mysql/mysql.go | 52 ++++--- packetbeat/protos/mysql/mysql_test.go | 54 +++---- packetbeat/protos/nfs/config.go | 12 +- packetbeat/protos/nfs/request_handler.go | 4 +- packetbeat/protos/nfs/rpc.go | 10 +- packetbeat/protos/nfs/xdr.go | 12 -- packetbeat/protos/pgsql/config.go | 16 +-- packetbeat/protos/pgsql/parse.go | 24 ++-- packetbeat/protos/pgsql/pgsql.go | 26 ++-- packetbeat/protos/pgsql/pgsql_test.go | 10 +- packetbeat/protos/protos.go | 1 - packetbeat/protos/protos_test.go | 8 +- packetbeat/protos/redis/config.go | 20 ++- packetbeat/protos/redis/redis.go | 10 +- packetbeat/protos/sip/config.go | 18 ++- packetbeat/protos/sip/parser.go | 3 +- packetbeat/protos/tcp/tcp.go | 13 +- packetbeat/protos/tcp/tcp_test.go | 27 ++-- packetbeat/protos/thrift/config.go | 24 ++-- packetbeat/protos/thrift/thrift.go | 25 ++-- packetbeat/protos/thrift/thrift_idl.go | 2 +- packetbeat/protos/thrift/thrift_test.go | 3 - packetbeat/protos/tls/alerts.go | 10 +- packetbeat/protos/tls/algos.go | 22 +-- packetbeat/protos/tls/config.go | 18 ++- packetbeat/protos/tls/extensions.go | 15 +- packetbeat/protos/tls/extensions_test.go | 2 - packetbeat/protos/tls/fingerprint.go | 6 +- packetbeat/protos/tls/ja3.go | 1 - packetbeat/protos/tls/parse.go | 13 +- packetbeat/protos/tls/parse_test.go | 8 +- packetbeat/protos/tls/tls.go | 7 +- packetbeat/protos/tls/tls_test.go | 5 + packetbeat/protos/udp/udp.go | 2 +- packetbeat/protos/udp/udp_test.go | 4 +- packetbeat/publish/publish.go | 1 - packetbeat/publish/publish_test.go | 4 +- packetbeat/scripts/mage/package.go | 4 +- packetbeat/sniffer/afpacket.go | 4 +- packetbeat/sniffer/afpacket_linux.go | 4 +- packetbeat/sniffer/afpacket_nonlinux.go | 7 +- packetbeat/sniffer/device.go | 42 +++--- packetbeat/sniffer/device_test.go | 136 ++++++++++++++++++ packetbeat/sniffer/sniffer.go | 2 - packetbeat/sniffer/sniffer_test.go | 5 +- 102 files changed, 835 insertions(+), 730 deletions(-) create mode 100644 packetbeat/sniffer/device_test.go diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 80fead3fb4c..00383fb51cf 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -243,6 +243,8 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d *Packetbeat* +- Prevent incorrect use of AMQP protocol parsing from causing silent failure. {pull}29017[29017] +- Fix error handling in MongoDB protocol parsing. {pull}29017[29017] *Winlogbeat* diff --git a/packetbeat/cmd/root.go b/packetbeat/cmd/root.go index 808de836fb3..6032089c9fc 100644 --- a/packetbeat/cmd/root.go +++ b/packetbeat/cmd/root.go @@ -50,7 +50,7 @@ var RootCmd *cmd.BeatsRootCmd // PacketbeatSettings contains the default settings for packetbeat func PacketbeatSettings() instance.Settings { - var runFlags = pflag.NewFlagSet(Name, pflag.ExitOnError) + runFlags := pflag.NewFlagSet(Name, pflag.ExitOnError) runFlags.AddGoFlag(flag.CommandLine.Lookup("I")) runFlags.AddGoFlag(flag.CommandLine.Lookup("t")) runFlags.AddGoFlag(flag.CommandLine.Lookup("O")) diff --git a/packetbeat/config/agent.go b/packetbeat/config/agent.go index 36e3c977b44..34df1721597 100644 --- a/packetbeat/config/agent.go +++ b/packetbeat/config/agent.go @@ -66,7 +66,7 @@ func (i agentInput) addProcessorsAndIndex(cfg *common.Config) (*common.Config, e mergeConfig, err := common.NewConfigFrom(common.MapStr{ "index": datastreamConfig.Datastream.Type + "-" + datastreamConfig.Datastream.Dataset + "-" + namespace, "processors": append([]common.MapStr{ - common.MapStr{ + { "add_fields": common.MapStr{ "target": "data_stream", "fields": common.MapStr{ @@ -76,7 +76,7 @@ func (i agentInput) addProcessorsAndIndex(cfg *common.Config) (*common.Config, e }, }, }, - common.MapStr{ + { "add_fields": common.MapStr{ "target": "event", "fields": common.MapStr{ diff --git a/packetbeat/decoder/decoder.go b/packetbeat/decoder/decoder.go index 50e8f595481..ae8eeb9d84b 100644 --- a/packetbeat/decoder/decoder.go +++ b/packetbeat/decoder/decoder.go @@ -87,7 +87,8 @@ func New( d := Decoder{ flows: f, decoders: make(map[gopacket.LayerType]gopacket.DecodingLayer), - icmp4Proc: icmp4, icmp6Proc: icmp6, tcpProc: tcp, udpProc: udp} + icmp4Proc: icmp4, icmp6Proc: icmp6, tcpProc: tcp, udpProc: udp, + } d.stD1Q.init(&d.d1q[0], &d.d1q[1]) d.stIP4.init(&d.ip4[0], &d.ip4[1]) d.stIP6.init(&d.ip6[0], &d.ip6[1]) diff --git a/packetbeat/flows/flows_test.go b/packetbeat/flows/flows_test.go index 601613e61d1..9cee1c59e2d 100644 --- a/packetbeat/flows/flows_test.go +++ b/packetbeat/flows/flows_test.go @@ -56,12 +56,16 @@ func TestFlowsCounting(t *testing.T) { assert.NoError(t, err) uint1, err := module.NewUint("uint1") + assert.NoError(t, err) uint2, err := module.NewUint("uint2") + assert.NoError(t, err) int1, err := module.NewInt("int1") + assert.NoError(t, err) int2, err := module.NewInt("int2") + assert.NoError(t, err) float1, err := module.NewFloat("float1") + assert.NoError(t, err) float2, err := module.NewFloat("float2") - assert.NoError(t, err) pub := &flowsChan{make(chan []beat.Event, 1)} diff --git a/packetbeat/flows/worker.go b/packetbeat/flows/worker.go index f0080cf68d2..b339a75fa4d 100644 --- a/packetbeat/flows/worker.go +++ b/packetbeat/flows/worker.go @@ -107,7 +107,7 @@ func makeWorker( if align > 0 { // round time to nearest 10 seconds for alignment aligned := time.Unix(((time.Now().Unix()+(align-1))/align)*align, 0) - waitStart := aligned.Sub(time.Now()) + waitStart := time.Until(aligned) debugf("worker wait start(%v): %v", aligned, waitStart) if cont := w.sleep(waitStart); !cont { return diff --git a/packetbeat/flows/worker_test.go b/packetbeat/flows/worker_test.go index 3bec75f2fe3..520d107f9ab 100644 --- a/packetbeat/flows/worker_test.go +++ b/packetbeat/flows/worker_test.go @@ -33,10 +33,8 @@ import ( "github.com/elastic/beats/v7/packetbeat/procs" ) -var ( - // Use `go test -data` to update sample event files. - dataFlag = flag.Bool("data", false, "Write updated data.json files") -) +// Use `go test -data` to update sample event files. +var dataFlag = flag.Bool("data", false, "Write updated data.json files") func TestCreateEvent(t *testing.T) { logp.TestingSetup() @@ -124,7 +122,7 @@ func TestCreateEvent(t *testing.T) { t.Fatal(err) } - if err := ioutil.WriteFile("../_meta/sample_outputs/flow.json", output, 0644); err != nil { + if err := ioutil.WriteFile("../_meta/sample_outputs/flow.json", output, 0o644); err != nil { t.Fatal(err) } } diff --git a/packetbeat/pb/event.go b/packetbeat/pb/event.go index 683e22253be..4ba7e4acf15 100644 --- a/packetbeat/pb/event.go +++ b/packetbeat/pb/event.go @@ -237,14 +237,14 @@ func (f *Fields) ComputeValues(localIPs []net.IP, internalNetworks []string) err } // network.community_id - switch { - case f.Network.Transport == "udp": + switch f.Network.Transport { + case "udp": flow.Protocol = 17 - case f.Network.Transport == "tcp": + case "tcp": flow.Protocol = 6 - case f.Network.Transport == "icmp": + case "icmp": flow.Protocol = 1 - case f.Network.Transport == "ipv6-icmp": + case "ipv6-icmp": flow.Protocol = 58 } flow.ICMP.Type = f.ICMPType diff --git a/packetbeat/processor/add_kubernetes_metadata/indexers.go b/packetbeat/processor/add_kubernetes_metadata/indexers.go index 474f111e97f..3e547e3a8c1 100644 --- a/packetbeat/processor/add_kubernetes_metadata/indexers.go +++ b/packetbeat/processor/add_kubernetes_metadata/indexers.go @@ -26,14 +26,14 @@ func init() { // Register default indexers cfg := common.NewConfig() - //Add IP Port Indexer as a default indexer + // Add IP Port Indexer as a default indexer kubernetes.Indexing.AddDefaultIndexerConfig(kubernetes.IPPortIndexerName, *cfg) formatCfg, err := common.NewConfigFrom(map[string]interface{}{ "format": "%{[ip]}:%{[port]}", }) if err == nil { - //Add field matcher with field to lookup as metricset.host + // Add field matcher with field to lookup as metricset.host kubernetes.Indexing.AddDefaultMatcherConfig(kubernetes.FieldFormatMatcherName, *formatCfg) } } diff --git a/packetbeat/procs/procs.go b/packetbeat/procs/procs.go index bf3daab9ff2..a3d031ec72f 100644 --- a/packetbeat/procs/procs.go +++ b/packetbeat/procs/procs.go @@ -213,7 +213,7 @@ func (proc *ProcessesWatcher) updateMap(transport applayer.Transport) { if logp.HasSelector("procsdetailed") { start := time.Now() defer func() { - logp.Debug("procsdetailed", "updateMap() took %v", time.Now().Sub(start)) + logp.Debug("procsdetailed", "updateMap() took %v", time.Since(start)) }() } diff --git a/packetbeat/procs/procs_linux_test.go b/packetbeat/procs/procs_linux_test.go index 39c8a937741..e36bd50a208 100644 --- a/packetbeat/procs/procs_linux_test.go +++ b/packetbeat/procs/procs_linux_test.go @@ -39,14 +39,14 @@ func createFakeDirectoryStructure(prefix string, files []testProcFile) error { var err error for _, file := range files { dir := filepath.Dir(file.path) - err = os.MkdirAll(filepath.Join(prefix, dir), 0755) + err = os.MkdirAll(filepath.Join(prefix, dir), 0o755) if err != nil { return err } if !file.isLink { err = ioutil.WriteFile(filepath.Join(prefix, file.path), - []byte(file.contents), 0644) + []byte(file.contents), 0o644) if err != nil { return err } diff --git a/packetbeat/procs/procs_windows.go b/packetbeat/procs/procs_windows.go index 50807691efa..ee3eee1a28d 100644 --- a/packetbeat/procs/procs_windows.go +++ b/packetbeat/procs/procs_windows.go @@ -42,13 +42,17 @@ type extractor interface { Size() int } -type callbackFn func(net.IP, uint16, int) -type extractorFactory func(fn callbackFn) extractor +type ( + callbackFn func(net.IP, uint16, int) + extractorFactory func(fn callbackFn) extractor +) -type tcpRowOwnerPIDExtractor callbackFn -type tcp6RowOwnerPIDExtractor callbackFn -type udpRowOwnerPIDExtractor callbackFn -type udp6RowOwnerPIDExtractor callbackFn +type ( + tcpRowOwnerPIDExtractor callbackFn + tcp6RowOwnerPIDExtractor callbackFn + udpRowOwnerPIDExtractor callbackFn + udp6RowOwnerPIDExtractor callbackFn +) var tablesByTransport = map[applayer.Transport][]struct { family uint32 diff --git a/packetbeat/procs/procs_windows_test.go b/packetbeat/procs/procs_windows_test.go index 51cc8391d68..4abfe359b71 100644 --- a/packetbeat/procs/procs_windows_test.go +++ b/packetbeat/procs/procs_windows_test.go @@ -42,21 +42,33 @@ func TestParseTableRaw(t *testing.T) { expected []portProcMapping mustErr bool }{ - {"Empty table IPv4", IPv4, - "00000000", nil, false}, - {"Empty table IPv6", IPv6, - "00000000", nil, false}, - {"Short table (no length)", IPv4, - "000000", nil, true}, - {"Short table (partial entry)", IPv6, - "01000000AAAAAAAAAAAAAAAAAAAA", nil, true}, - {"One entry (IPv4)", IPv4, + { + "Empty table IPv4", IPv4, + "00000000", nil, false, + }, + { + "Empty table IPv6", IPv6, + "00000000", nil, false, + }, + { + "Short table (no length)", IPv4, + "000000", nil, true, + }, + { + "Short table (partial entry)", IPv6, + "01000000AAAAAAAAAAAAAAAAAAAA", nil, true, + }, + { + "One entry (IPv4)", IPv4, "01000000" + "77777777AAAAAAAA12340000BBBBBBBBFFFF0000CCCCCCCC", []portProcMapping{ {endpoint: endpoint{address: "170.170.170.170", port: 0x1234}, pid: int(pid)}, - }, false}, - {"Two entries (IPv6)", IPv6, + }, + false, + }, + { + "Two entries (IPv6)", IPv6, "02000000" + // First entry "11112222333344445555666677778888F0F0F0F0" + @@ -76,7 +88,9 @@ func TestParseTableRaw(t *testing.T) { []portProcMapping{ {endpoint: endpoint{address: "1111:2222:3333:4444:5555:6666:7777:8888", port: 0xABCD}, pid: 1}, {endpoint: endpoint{address: "aaaa:aaaa:aaaa:aaaa:aaaa:aaaa:aaaa:aaaa", port: 0}, pid: 0xffff}, - }, false}, + }, + false, + }, } { msg := fmt.Sprintf("Test case #%d: %s", idx+1, testCase.name) table, err := hex.DecodeString(testCase.raw) diff --git a/packetbeat/procs/zsyscall_windows.go b/packetbeat/procs/zsyscall_windows.go index b313698211e..f938c08f792 100644 --- a/packetbeat/procs/zsyscall_windows.go +++ b/packetbeat/procs/zsyscall_windows.go @@ -34,9 +34,7 @@ const ( errnoERROR_IO_PENDING = 997 ) -var ( - errERROR_IO_PENDING error = syscall.Errno(errnoERROR_IO_PENDING) -) +var errERROR_IO_PENDING error = syscall.Errno(errnoERROR_IO_PENDING) // errnoErr returns common boxed Errno values, to prevent // allocations at runtime. diff --git a/packetbeat/protos/amqp/amqp.go b/packetbeat/protos/amqp/amqp.go index f0c1e26dd28..2402b9150e3 100644 --- a/packetbeat/protos/amqp/amqp.go +++ b/packetbeat/protos/amqp/amqp.go @@ -50,7 +50,7 @@ type amqpPlugin struct { results protos.Reporter watcher procs.ProcessesWatcher - //map containing functions associated with different method numbers + // map containing functions associated with different method numbers methodMap map[codeClass]map[codeMethod]amqpMethod } @@ -87,7 +87,7 @@ func (amqp *amqpPlugin) init(results protos.Reporter, watcher procs.ProcessesWat amqp.initMethodMap() amqp.setFromConfig(config) - if amqp.hideConnectionInformation == false { + if !amqp.hideConnectionInformation { amqp.addConnectionMethods() } amqp.transactions = common.NewCache( @@ -194,8 +194,8 @@ func (amqp *amqpPlugin) ConnectionTimeout() time.Duration { } func (amqp *amqpPlugin) Parse(pkt *protos.Packet, tcptuple *common.TCPTuple, - dir uint8, private protos.ProtocolData) protos.ProtocolData { - + dir uint8, private protos.ProtocolData, +) protos.ProtocolData { defer logp.Recover("ParseAmqp exception") detailedf("Parse method triggered") @@ -284,7 +284,7 @@ func (amqp *amqpPlugin) handleAmqpRequest(msg *amqpMessage) { } else { trans.request = msg.method } - //length = message + 4 bytes header + frame end octet + // length = message + 4 bytes header + frame end octet trans.bytesIn = msg.bodySize + 12 if msg.fields != nil { trans.amqp = msg.fields @@ -292,9 +292,9 @@ func (amqp *amqpPlugin) handleAmqpRequest(msg *amqpMessage) { trans.amqp = common.MapStr{} } - //if error or exception, publish it now. sometimes client or server never send - //an ack message and the error is lost. Also, if nowait flag set, don't expect - //any response and publish + // if error or exception, publish it now. sometimes client or server never send + // an ack message and the error is lost. Also, if nowait flag set, don't expect + // any response and publish if isAsynchronous(trans) { amqp.publishTransaction(trans) debugf("Amqp transaction completed") @@ -317,9 +317,9 @@ func (amqp *amqpPlugin) handleAmqpResponse(msg *amqpMessage) { return } - //length = message + 4 bytes class/method + frame end octet + header + // length = message + 4 bytes class/method + frame end octet + header trans.bytesOut = msg.bodySize + 12 - //merge the both fields from request and response + // merge the both fields from request and response trans.amqp.Update(msg.fields) trans.response = common.OK_STATUS @@ -344,8 +344,8 @@ func (amqp *amqpPlugin) handleAmqpResponse(msg *amqpMessage) { func (amqp *amqpPlugin) expireTransaction(trans *amqpTransaction) { debugf("Transaction expired") - //possibility of a connection.close or channel.close method that didn't get an - //ok answer. Let's publish it. + // possibility of a connection.close or channel.close method that didn't get an + // ok answer. Let's publish it. if isCloseError(trans) { trans.notes = append(trans.notes, "Close-ok method not received by sender") amqp.publishTransaction(trans) @@ -354,8 +354,8 @@ func (amqp *amqpPlugin) expireTransaction(trans *amqpTransaction) { amqp.transactions.Delete(trans.tuple.Hashable()) } -//This method handles published messages from clients. Being an async -//process, the method, header and body frames are regrouped in one transaction +// This method handles published messages from clients. Being an async +// process, the method, header and body frames are regrouped in one transaction func (amqp *amqpPlugin) handlePublishing(client *amqpMessage) { tuple := client.tcpTuple trans := amqp.getTransaction(tuple.Hashable()) @@ -369,8 +369,8 @@ func (amqp *amqpPlugin) handlePublishing(client *amqpMessage) { trans.src, trans.dst = common.MakeEndpointPair(client.tcpTuple.BaseTuple, client.cmdlineTuple) trans.method = client.method - //for publishing and delivering, bytes in and out represent the length of the - //message itself + // for publishing and delivering, bytes in and out represent the length of the + // message itself trans.bytesIn = client.bodySize if client.bodySize > uint64(amqp.maxBodyLength) { @@ -384,13 +384,13 @@ func (amqp *amqpPlugin) handlePublishing(client *amqpMessage) { trans.amqp = client.fields amqp.publishTransaction(trans) debugf("Amqp transaction completed") - //delete trans from map + // delete trans from map amqp.transactions.Delete(trans.tuple.Hashable()) } -//This method handles delivered messages via basic.deliver and basic.get-ok AND -//returned messages to clients. Being an async process, the method, header and -//body frames are regrouped in one transaction +// This method handles delivered messages via basic.deliver and basic.get-ok AND +// returned messages to clients. Being an async process, the method, header and +// body frames are regrouped in one transaction func (amqp *amqpPlugin) handleDelivering(server *amqpMessage) { tuple := server.tcpTuple trans := amqp.getTransaction(tuple.Hashable()) @@ -403,8 +403,8 @@ func (amqp *amqpPlugin) handleDelivering(server *amqpMessage) { trans.ts = server.ts trans.src, trans.dst = common.MakeEndpointPair(server.tcpTuple.BaseTuple, server.cmdlineTuple) - //for publishing and delivering, bytes in and out represent the length of the - //message itself + // for publishing and delivering, bytes in and out represent the length of the + // message itself trans.bytesOut = server.bodySize if server.bodySize > uint64(amqp.maxBodyLength) { @@ -422,7 +422,7 @@ func (amqp *amqpPlugin) handleDelivering(server *amqpMessage) { amqp.publishTransaction(trans) debugf("Amqp transaction completed") - //delete trans from map + // delete trans from map amqp.transactions.Delete(trans.tuple.Hashable()) } @@ -459,7 +459,7 @@ func (amqp *amqpPlugin) publishTransaction(t *amqpTransaction) { fields["user.id"] = userID } - //let's try to convert request/response to a readable format + // let's try to convert request/response to a readable format if amqp.sendRequest { if t.method == "basic.publish" { if t.toString { @@ -503,7 +503,7 @@ func (amqp *amqpPlugin) publishTransaction(t *amqpTransaction) { amqp.results(evt) } -//function to check if method is async or not +// function to check if method is async or not func isAsynchronous(trans *amqpTransaction) bool { if val, ok := trans.amqp["no-wait"]; ok && val == true { return true @@ -514,7 +514,7 @@ func isAsynchronous(trans *amqpTransaction) bool { trans.method == "basic.nack" } -//function to convert a body slice into a readable format +// function to convert a body slice into a readable format func bodyToString(data []byte) string { ret := make([]string, len(data)) for i, c := range data { @@ -523,7 +523,7 @@ func bodyToString(data []byte) string { return strings.Join(ret, " ") } -//function used to check if a body message can be converted to readable string +// function used to check if a body message can be converted to readable string func isStringable(m *amqpMessage) bool { stringable := false diff --git a/packetbeat/protos/amqp/amqp_fields.go b/packetbeat/protos/amqp/amqp_fields.go index ff4f7c382b5..d7536572978 100644 --- a/packetbeat/protos/amqp/amqp_fields.go +++ b/packetbeat/protos/amqp/amqp_fields.go @@ -28,9 +28,9 @@ import ( "github.com/elastic/beats/v7/libbeat/logp" ) +// getTable updates fields with the table data at the given offset. +// fields must be non_nil on entry. func getTable(fields common.MapStr, data []byte, offset uint32) (next uint32, err bool, exists bool) { - ret := common.MapStr{} - length := binary.BigEndian.Uint32(data[offset : offset+4]) // size declared too big @@ -39,23 +39,20 @@ func getTable(fields common.MapStr, data []byte, offset uint32) (next uint32, er } if length > 0 { exists = true - err := fieldUnmarshal(ret, data[offset+4:offset+4+length], 0, length, -1) + table := common.MapStr{} + err := fieldUnmarshal(table, data[offset+4:offset+4+length], 0, length, -1) if err { logp.Warn("Error while parsing a field table") return 0, true, false } - if fields == nil { - fields = ret - } else { - fields.Update(ret) - } + fields.Update(table) } return length + 4 + offset, false, exists } +// getTable updates fields with the array data at the given offset. +// fields must be non_nil on entry. func getArray(fields common.MapStr, data []byte, offset uint32) (next uint32, err bool, exists bool) { - ret := common.MapStr{} - length := binary.BigEndian.Uint32(data[offset : offset+4]) // size declared too big @@ -64,30 +61,27 @@ func getArray(fields common.MapStr, data []byte, offset uint32) (next uint32, er } if length > 0 { exists = true - err := fieldUnmarshal(ret, data[offset+4:offset+4+length], 0, length, 0) + array := common.MapStr{} + err := fieldUnmarshal(array, data[offset+4:offset+4+length], 0, length, 0) if err { logp.Warn("Error while parsing a field array") return 0, true, false } - if fields == nil { - fields = ret - } else { - fields.Update(ret) - } + fields.Update(array) } return length + 4 + offset, false, exists } -//The index parameter, when set at -1, indicates that the entry is a field table. -//If it's set at 0, it is an array. +// The index parameter, when set at -1, indicates that the entry is a field table. +// If it's set at 0, it is an array. func fieldUnmarshal(table common.MapStr, data []byte, offset uint32, length uint32, index int) (err bool) { var name string if offset >= length { return false } - //get name of the field. If it's an array, it will be the index parameter as a - //string. If it's a table, it will be the name of the field. + // get name of the field. If it's an array, it will be the index parameter as a + // string. If it's a table, it will be the name of the field. if index < 0 { fieldName, offsetTemp, err := getShortString(data, offset+1, uint32(data[offset])) if err { @@ -199,10 +193,10 @@ func fieldUnmarshal(table common.MapStr, data []byte, offset uint32, length uint table[name] = bodyToByteArray(data[offset+1+size : offset+5+size]) offset += 5 + size default: - //unknown field + // unknown field return true } - //advance to next field recursively + // advance to next field recursively return fieldUnmarshal(table, data, offset, length, index) } diff --git a/packetbeat/protos/amqp/amqp_methods.go b/packetbeat/protos/amqp/amqp_methods.go index 93cec5f2747..d74148026c5 100644 --- a/packetbeat/protos/amqp/amqp_methods.go +++ b/packetbeat/protos/amqp/amqp_methods.go @@ -32,7 +32,7 @@ func connectionStartMethod(m *amqpMessage, args []byte) (bool, bool) { properties := make(common.MapStr) next, err, exists := getTable(properties, args, 2) if err { - //failed to get de peer-properties, size may be wrong, let's quit + // failed to get de peer-properties, size may be wrong, let's quit logp.Warn("Failed to parse server properties in connection.start method") return false, false } @@ -54,7 +54,7 @@ func connectionStartMethod(m *amqpMessage, args []byte) (bool, bool) { "mechanisms": mechanisms, "locales": locales, } - //if there is a server properties table, add it + // if there is a server properties table, add it if exists { m.fields["server-properties"] = properties } @@ -65,7 +65,7 @@ func connectionStartOkMethod(m *amqpMessage, args []byte) (bool, bool) { properties := make(common.MapStr) next, err, exists := getTable(properties, args, 0) if err { - //failed to get de peer-properties, size may be wrong, let's quit + // failed to get de peer-properties, size may be wrong, let's quit logp.Warn("Failed to parse server properties in connection.start method") return false, false } @@ -89,7 +89,7 @@ func connectionStartOkMethod(m *amqpMessage, args []byte) (bool, bool) { "mechanism": mechanism, "locale": locale, } - //if there is a client properties table, add it + // if there is a client properties table, add it if exists { m.fields["client-properties"] = properties } @@ -99,8 +99,8 @@ func connectionStartOkMethod(m *amqpMessage, args []byte) (bool, bool) { func connectionTuneMethod(m *amqpMessage, args []byte) (bool, bool) { m.isRequest = true m.method = "connection.tune" - //parameters are not parsed here, they are further negotiated by the server - //in the connection.tune-ok method + // parameters are not parsed here, they are further negotiated by the server + // in the connection.tune-ok method return true, true } @@ -163,7 +163,7 @@ func channelCloseMethod(m *amqpMessage, args []byte) (bool, bool) { return true, true } -//function to fetch fields from channel close and connection close +// function to fetch fields from channel close and connection close func getCloseInfo(args []byte, m *amqpMessage) bool { code := binary.BigEndian.Uint16(args[0:2]) m.isRequest = true @@ -411,7 +411,7 @@ func exchangeDeleteMethod(m *amqpMessage, args []byte) (bool, bool) { return true, true } -//this is a method exclusive to RabbitMQ +// this is a method exclusive to RabbitMQ func exchangeBindMethod(m *amqpMessage, args []byte) (bool, bool) { m.method = "exchange.bind" err := exchangeBindUnbindInfo(m, args) @@ -421,7 +421,7 @@ func exchangeBindMethod(m *amqpMessage, args []byte) (bool, bool) { return true, true } -//this is a method exclusive to RabbitMQ +// this is a method exclusive to RabbitMQ func exchangeUnbindMethod(m *amqpMessage, args []byte) (bool, bool) { m.method = "exchange.unbind" err := exchangeBindUnbindInfo(m, args) @@ -588,7 +588,7 @@ func basicPublishMethod(m *amqpMessage, args []byte) (bool, bool) { func basicReturnMethod(m *amqpMessage, args []byte) (bool, bool) { code := binary.BigEndian.Uint16(args[0:2]) if code < 300 { - //not an error or exception ? not interesting + // not an error or exception ? not interesting return true, false } replyText, nextOffset, err := getShortString(args, 3, uint32(args[2])) @@ -707,7 +707,7 @@ func basicAckMethod(m *amqpMessage, args []byte) (bool, bool) { return true, true } -//this is a rabbitMQ specific method +// this is a rabbitMQ specific method func basicNackMethod(m *amqpMessage, args []byte) (bool, bool) { params := getBitParams(args[8]) m.method = "basic.nack" @@ -761,14 +761,14 @@ func txRollbackMethod(m *amqpMessage, args []byte) (bool, bool) { return true, true } -//simple function used when server/client responds to a sync method with no new info +// simple function used when server/client responds to a sync method with no new info func okMethod(m *amqpMessage, args []byte) (bool, bool) { return true, true } // function to get a short string. It sends back an error if slice is too short -//for declared length. if length == 0, the function sends back an empty string and -//advances the offset. Otherwise, it returns the string and the new offset +// for declared length. if length == 0, the function sends back an empty string and +// advances the offset. Otherwise, it returns the string and the new offset func getShortString(data []byte, start uint32, length uint32) (short string, nextOffset uint32, err bool) { if length == 0 { return "", start, false @@ -779,7 +779,7 @@ func getShortString(data []byte, start uint32, length uint32) (short string, nex return string(data[start : start+length]), start + length, false } -//function to extract bit information in various AMQP methods +// function to extract bit information in various AMQP methods func getBitParams(bits byte) (ret [5]bool) { if bits&16 == 16 { ret[4] = true diff --git a/packetbeat/protos/amqp/amqp_parser.go b/packetbeat/protos/amqp/amqp_parser.go index 6ab15ec8159..a623219ca0b 100644 --- a/packetbeat/protos/amqp/amqp_parser.go +++ b/packetbeat/protos/amqp/amqp_parser.go @@ -42,10 +42,10 @@ func (amqp *amqpPlugin) amqpMessageParser(s *amqpStream) (ok bool, complete bool f, err := readFrameHeader(s.data[s.parseOffset:]) if err { - //incorrect header + // incorrect header return false, false } else if f == nil { - //header not complete + // header not complete return true, false } @@ -67,17 +67,14 @@ func (amqp *amqpPlugin) amqpMessageParser(s *amqpStream) (ok bool, complete bool s.parseOffset += 8 + int(f.size) if !ok { return false, false - } else if complete { + } + if complete { return true, true } } return ok, complete } -func (s *amqpStream) prepareForNewMessage() { - s.message = nil -} - func isProtocolHeader(data []byte) (isHeader bool, version string) { if (string(data[:4]) == "AMQP") && data[4] == 0 { return true, string(data[5:8]) @@ -85,7 +82,7 @@ func isProtocolHeader(data []byte) (isHeader bool, version string) { return false, "" } -//func to read a frame header and check if it is valid and complete +// func to read a frame header and check if it is valid and complete func readFrameHeader(data []byte) (ret *amqpFrame, err bool) { var frame amqpFrame if len(data) < 8 { @@ -103,7 +100,7 @@ func readFrameHeader(data []byte) (ret *amqpFrame, err bool) { } frame.Type = frameType(data[0]) if frame.size == 0 { - //frame content is nil with heartbeat frames + // frame content is nil with heartbeat frames frame.content = nil } else { frame.content = data[7 : frame.size+7] @@ -159,7 +156,7 @@ func (amqp *amqpPlugin) decodeHeaderFrame(s *amqpStream, buf []byte) bool { s.message.bodySize = binary.BigEndian.Uint64(buf[4:12]) debugf("Received Header frame. A message of %d bytes is expected", s.message.bodySize) - if amqp.parseHeaders == true { + if amqp.parseHeaders { err := getMessageProperties(s, buf[12:]) if err { return false @@ -180,7 +177,7 @@ func (s *amqpStream) decodeBodyFrame(buf []byte) (ok bool, complete bool) { debugf("A body frame of %d bytes long has been transmitted", len(buf)) - //is the message complete ? If yes, let's publish it + // is the message complete ? If yes, let's publish it complete = uint64(len(s.message.body)) >= s.message.bodySize return true, complete @@ -190,16 +187,16 @@ func hasProperty(prop, flag byte) bool { return (prop & flag) == flag } -//function to get message content-type and content-encoding +// function to get message content-type and content-encoding func getMessageProperties(s *amqpStream, data []byte) bool { m := s.message - //properties are coded in the two first bytes + // properties are coded in the two first bytes prop1 := data[0] prop2 := data[1] var offset uint32 = 2 - //while last bit set, we have another property flag field + // while last bit set, we have another property flag field for lastbit := 1; data[lastbit]&1 == 1; { lastbit += 2 offset += 2 @@ -238,9 +235,10 @@ func getMessageProperties(s *amqpStream, data []byte) bool { } if hasProperty(prop1, deliveryModeProp) { - if data[offset] == 1 { + switch data[offset] { + case 1: m.fields["delivery-mode"] = "non-persistent" - } else if data[offset] == 2 { + case 2: m.fields["delivery-mode"] = "persistent" } offset++ @@ -337,20 +335,20 @@ func (amqp *amqpPlugin) handleAmqp(m *amqpMessage, tcptuple *common.TCPTuple, di m.direction = dir m.cmdlineTuple = amqp.watcher.FindProcessesTupleTCP(tcptuple.IPPort()) - if m.method == "basic.publish" { + switch { + case m.method == "basic.publish": amqp.handlePublishing(m) - } else if m.method == "basic.deliver" || m.method == "basic.return" || - m.method == "basic.get-ok" { + case m.method == "basic.deliver" || m.method == "basic.return" || m.method == "basic.get-ok": amqp.handleDelivering(m) - } else if m.isRequest == true { + case m.isRequest: amqp.handleAmqpRequest(m) - } else if m.isRequest == false { + default: // !m.isRequest amqp.handleAmqpResponse(m) } } func (amqp *amqpPlugin) mustHideCloseMethod(m *amqpMessage) bool { - return amqp.hideConnectionInformation == true && + return amqp.hideConnectionInformation && (m.method == "connection.close" || m.method == "channel.close") && - getReplyCode(m.fields) < uint16(300) + getReplyCode(m.fields) < 300 } diff --git a/packetbeat/protos/amqp/amqp_structs.go b/packetbeat/protos/amqp/amqp_structs.go index 387e8df6fcb..ada8441c45a 100644 --- a/packetbeat/protos/amqp/amqp_structs.go +++ b/packetbeat/protos/amqp/amqp_structs.go @@ -30,12 +30,12 @@ const ( transactionTimeout = 10 * 1e9 ) -//layout used when a timestamp must be parsed +// layout used when a timestamp must be parsed const ( amqpTimeLayout = "January _2 15:04:05 2006" ) -//Frame types and codes +// Frame types and codes type frameType byte @@ -50,7 +50,7 @@ const ( frameEndOctet byte = 206 ) -//Codes for MethodMap +// Codes for MethodMap type codeClass uint16 const ( @@ -137,7 +137,7 @@ const ( txRollbackOk codeMethod = 31 ) -//Message properties codes for byte prop1 in getMessageProperties +// Message properties codes for byte prop1 in getMessageProperties const ( expirationProp byte = 1 replyToProp byte = 2 @@ -149,7 +149,7 @@ const ( contentTypeProp byte = 128 ) -//Message properties codes for byte prop2 in getMessageProperties +// Message properties codes for byte prop2 in getMessageProperties const ( appIDProp byte = 8 @@ -159,7 +159,7 @@ const ( messageIDProp byte = 128 ) -//table types +// table types const ( boolean = 't' shortShortInt = 'b' @@ -179,7 +179,7 @@ const ( timestamp = 'T' fieldTable = 'F' noField = 'V' - byteArray = 'x' //rabbitMQ specific field + byteArray = 'x' // rabbitMQ specific field ) type amqpPrivateData struct { @@ -203,7 +203,7 @@ type amqpMessage struct { direction uint8 parseArguments bool - //mapstr containing all the options for the methods and header fields + // mapstr containing all the options for the methods and header fields fields common.MapStr body []byte diff --git a/packetbeat/protos/amqp/amqp_test.go b/packetbeat/protos/amqp/amqp_test.go index 725de0f3d11..9b7f7dca35c 100644 --- a/packetbeat/protos/amqp/amqp_test.go +++ b/packetbeat/protos/amqp/amqp_test.go @@ -96,7 +96,7 @@ func TestAmqp_FrameSize(t *testing.T) { _, amqp := amqpModForTests() - //incomplete frame + // incomplete frame data, err := hex.DecodeString("0100000000000c000a001fffff000200") assert.NoError(t, err) @@ -118,7 +118,7 @@ func TestAmqp_PartialFrameSize(t *testing.T) { _, amqp := amqpModForTests() - //incomplete frame + // incomplete frame data, err := hex.DecodeString("414d515000060606010000000000") assert.NoError(t, err) @@ -275,7 +275,7 @@ func TestAmqp_ExchangeDeletion(t *testing.T) { assert.Equal(t, false, m.fields["no-wait"]) } -//this method is exclusive to RabbitMQ +// this method is exclusive to RabbitMQ func TestAmqp_ExchangeBind(t *testing.T) { logp.TestingSetup(logp.WithSelectors("amqp", "amqpdetailed")) @@ -308,7 +308,7 @@ func TestAmqp_ExchangeBind(t *testing.T) { } } -//this method is exclusive to RabbitMQ +// this method is exclusive to RabbitMQ func TestAmqp_ExchangeUnbindTransaction(t *testing.T) { logp.TestingSetup(logp.WithSelectors("amqp", "amqpdetailed")) @@ -365,13 +365,13 @@ func TestAmqp_PublishMessage(t *testing.T) { req := protos.Packet{Payload: data} private := protos.ProtocolData(new(amqpPrivateData)) - //method frame + // method frame private = amqp.Parse(&req, tcptuple, 0, private) req = protos.Packet{Payload: data2} - //header frame + // header frame private = amqp.Parse(&req, tcptuple, 0, private) req = protos.Packet{Payload: data3} - //body frame + // body frame amqp.Parse(&req, tcptuple, 0, private) trans := expectTransaction(t, results) @@ -414,13 +414,13 @@ func TestAmqp_DeliverMessage(t *testing.T) { req := protos.Packet{Payload: data} private := protos.ProtocolData(new(amqpPrivateData)) - //method frame + // method frame private = amqp.Parse(&req, tcptuple, 0, private) req = protos.Packet{Payload: data2} - //header frame + // header frame private = amqp.Parse(&req, tcptuple, 0, private) req = protos.Packet{Payload: data3} - //body frame + // body frame amqp.Parse(&req, tcptuple, 0, private) trans := expectTransaction(t, results) @@ -467,7 +467,7 @@ func TestAmqp_MessagePropertiesFields(t *testing.T) { assert.Equal(t, "el mensaje", m.fields["message-id"]) assert.Equal(t, "love message", m.fields["type"]) assert.Equal(t, "text/plain", m.fields["content-type"]) - //assert.Equal(t, "September 15 15:31:44 2015", m.Fields["timestamp"]) + // assert.Equal(t, "September 15 15:31:44 2015", m.Fields["timestamp"]) priority, ok := m.fields["priority"].(uint8) if !ok { t.Errorf("Field should be present") @@ -576,7 +576,7 @@ func TestAmqp_RejectMessage(t *testing.T) { req := protos.Packet{Payload: data} private := protos.ProtocolData(new(amqpPrivateData)) - //method frame + // method frame amqp.Parse(&req, tcptuple, 0, private) trans := expectTransaction(t, results) @@ -668,8 +668,8 @@ func TestAmqp_MaxBodyLength(t *testing.T) { req := protos.Packet{Payload: data} private := protos.ProtocolData(new(amqpPrivateData)) - //method frame - private = amqp.Parse(&req, tcptuple, 0, private) + // method frame + amqp.Parse(&req, tcptuple, 0, private) trans := expectTransaction(t, results) @@ -699,7 +699,7 @@ func TestAmqp_MaxBodyLength(t *testing.T) { req = protos.Packet{Payload: data} private = protos.ProtocolData(new(amqpPrivateData)) - //method frame + // method frame amqp.Parse(&req, tcptuple, 0, private) trans = expectTransaction(t, results) @@ -728,7 +728,7 @@ func TestAmqp_HideArguments(t *testing.T) { amqp.parseHeaders = false amqp.parseArguments = false - //parse args + // parse args data, err := hex.DecodeString("0100010000004d0032000a00000a5465737448656164" + "6572180000003704626f6f6c74010362697462050568656c6c6f530000001f4869206461" + "726c696e6720c3aac3aac3aac3aac3aac3aac3aae697a5e69cacce") @@ -736,7 +736,7 @@ func TestAmqp_HideArguments(t *testing.T) { tcptuple := testTCPTuple() req := protos.Packet{Payload: data} private := protos.ProtocolData(new(amqpPrivateData)) - private = amqp.Parse(&req, tcptuple, 0, private) + amqp.Parse(&req, tcptuple, 0, private) trans := expectTransaction(t, results) assert.Equal(t, "queue.declare", trans["method"]) @@ -753,7 +753,7 @@ func TestAmqp_HideArguments(t *testing.T) { t.Errorf("Arguments field should not be present") } - //parse headers + // parse headers data, err = hex.DecodeString("01000100000013003c00280000000a546573744865616" + "4657200ce02000100000026003c0000000000000000001a98800a746578742f706c61696" + "e02060a656c206d656e73616a65ce0300010000001a54657374206865616465722066696" + @@ -808,7 +808,7 @@ func TestAmqp_RecoverMethod(t *testing.T) { assert.Equal(t, common.MapStr{"requeue": true}, trans["amqp"]) } -//this is a specific rabbitMQ method +// this is a specific rabbitMQ method func TestAmqp_BasicNack(t *testing.T) { logp.TestingSetup(logp.WithSelectors("amqp", "amqpdetailed")) @@ -887,7 +887,7 @@ func TestAmqp_GetTable(t *testing.T) { assert.Equal(t, true, m.fields["no-wait"]) assert.Equal(t, true, m.fields["auto-delete"]) assert.Equal(t, false, m.fields["exclusive"]) - //assert.Equal(t, "September 15 11:25:29 2015", args["timestamp"]) + // assert.Equal(t, "September 15 11:25:29 2015", args["timestamp"]) assert.Equal(t, "TestHeader", m.request) } @@ -948,7 +948,7 @@ func TestAmqp_ArrayFields(t *testing.T) { _, amqp := amqpModForTests() - //byte array, rabbitMQ specific field + // byte array, rabbitMQ specific field data, err := hex.DecodeString("010001000000260028000a0000057465737431057" + "46f706963020000000f05617272617978000000040a007dd2ce") assert.NoError(t, err) @@ -1025,7 +1025,7 @@ func TestAmqp_WrongTable(t *testing.T) { _, amqp := amqpModForTests() - //declared table size too big + // declared table size too big data, err := hex.DecodeString("010001000000890032000a00000a54657374486561646" + "57218000000da0974696d657374616d70540000000055f7e409036269746205076465636" + "96d616c440500ec49050568656c6c6f530000001f4869206461726c696e6720c3aac3aac" + @@ -1048,7 +1048,7 @@ func TestAmqp_WrongTable(t *testing.T) { } assert.Equal(t, []string{"Failed to parse additional arguments"}, m.notes) - //table size ok, but total non-sense inside + // table size ok, but total non-sense inside data, err = hex.DecodeString("010001000000890032000a00000a54657374486561646" + "57218000000730974696d657374616d7054004400005521e409036269743705076400036" + "96d616c447600ec49180568036c6c0b536400001f480a2064076e6c696e0520c3aac3aac" + diff --git a/packetbeat/protos/amqp/config.go b/packetbeat/protos/amqp/config.go index 2939530046e..4cbd5a5200a 100644 --- a/packetbeat/protos/amqp/config.go +++ b/packetbeat/protos/amqp/config.go @@ -30,14 +30,12 @@ type amqpConfig struct { HideConnectionInformation bool `config:"hide_connection_information"` } -var ( - defaultConfig = amqpConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - ParseHeaders: true, - ParseArguments: true, - MaxBodyLength: 1000, - HideConnectionInformation: true, - } -) +var defaultConfig = amqpConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + ParseHeaders: true, + ParseArguments: true, + MaxBodyLength: 1000, + HideConnectionInformation: true, +} diff --git a/packetbeat/protos/cassandra/cassandra.go b/packetbeat/protos/cassandra/cassandra.go index 7d3001a5159..5c7cbd003d1 100644 --- a/packetbeat/protos/cassandra/cassandra.go +++ b/packetbeat/protos/cassandra/cassandra.go @@ -50,9 +50,7 @@ type stream struct { parser parser } -var ( - debugf = logp.MakeDebug("cassandra") -) +var debugf = logp.MakeDebug("cassandra") func init() { protos.Register("cassandra", New) @@ -202,11 +200,6 @@ func (cassandra *cassandra) ensureConnection(private protos.ProtocolData) *conne return conn } -func (conn *connection) dropStreams() { - conn.streams[0] = nil - conn.streams[1] = nil -} - func getConnection(private protos.ProtocolData) *connection { if private == nil { return nil diff --git a/packetbeat/protos/cassandra/config.go b/packetbeat/protos/cassandra/config.go index 0eafddcd1ee..8e93239bc6b 100644 --- a/packetbeat/protos/cassandra/config.go +++ b/packetbeat/protos/cassandra/config.go @@ -34,20 +34,18 @@ type cassandraConfig struct { OPsIgnored []gocql.FrameOp `config:"ignored_ops"` } -var ( - defaultConfig = cassandraConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - SendRequest: true, - SendResponse: true, - }, - SendRequestHeader: true, - SendResponseHeader: true, - } -) +var defaultConfig = cassandraConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + SendRequest: true, + SendResponse: true, + }, + SendRequestHeader: true, + SendResponseHeader: true, +} func (c *cassandraConfig) Validate() error { - if !(c.Compressor == "" || c.Compressor == "snappy") { + if c.Compressor != "" && c.Compressor != "snappy" { return fmt.Errorf("invalid compressor config: %s, only snappy supported", c.Compressor) } return nil diff --git a/packetbeat/protos/cassandra/internal/gocql/array_decoder.go b/packetbeat/protos/cassandra/internal/gocql/array_decoder.go index a224dc7d1b5..b64ecf8e146 100644 --- a/packetbeat/protos/cassandra/internal/gocql/array_decoder.go +++ b/packetbeat/protos/cassandra/internal/gocql/array_decoder.go @@ -26,10 +26,6 @@ type ByteArrayDecoder struct { Data *[]byte } -func readInt(p []byte) int32 { - return int32(p[0])<<24 | int32(p[1])<<16 | int32(p[2])<<8 | int32(p[3]) -} - func (f ByteArrayDecoder) ReadByte() (byte, error) { data := *f.Data if len(data) < 1 { @@ -167,7 +163,7 @@ func (f ByteArrayDecoder) ReadInet() (net.IP, int) { size := data[0] *f.Data = data[1:] - if !(size == 4 || size == 16) { + if size != 4 && size != 16 { panic(fmt.Errorf("invalid IP size: %d", size)) } diff --git a/packetbeat/protos/cassandra/internal/gocql/compressor.go b/packetbeat/protos/cassandra/internal/gocql/compressor.go index cfbff208ade..fe6583c3a77 100644 --- a/packetbeat/protos/cassandra/internal/gocql/compressor.go +++ b/packetbeat/protos/cassandra/internal/gocql/compressor.go @@ -49,11 +49,11 @@ func (s SnappyCompressor) Decode(data []byte) ([]byte, error) { const LZ4 string = "lz4" type LZ4Compressor struct { - //TODO + // TODO } const Deflate string = "deflate" type DeflateCompressor struct { - //TODO + // TODO } diff --git a/packetbeat/protos/cassandra/internal/gocql/decoder.go b/packetbeat/protos/cassandra/internal/gocql/decoder.go index 734a940d8bd..f628aa65120 100644 --- a/packetbeat/protos/cassandra/internal/gocql/decoder.go +++ b/packetbeat/protos/cassandra/internal/gocql/decoder.go @@ -23,34 +23,19 @@ import ( type Decoder interface { ReadByte() (byte, error) - ReadInt() (n int) - ReadShort() (n uint16) - ReadLong() (n int64) - ReadString() (s string) - ReadLongString() (s string) - ReadUUID() *UUID - ReadStringList() []string - ReadBytesInternal() []byte - ReadBytes() []byte - ReadShortBytes() []byte - ReadInet() (net.IP, int) - ReadConsistency() Consistency - ReadStringMap() map[string]string - ReadBytesMap() map[string][]byte - ReadStringMultiMap() map[string][]string } diff --git a/packetbeat/protos/cassandra/internal/gocql/frame.go b/packetbeat/protos/cassandra/internal/gocql/frame.go index 25e7df5bac8..b8ae7eeac4e 100644 --- a/packetbeat/protos/cassandra/internal/gocql/frame.go +++ b/packetbeat/protos/cassandra/internal/gocql/frame.go @@ -182,18 +182,17 @@ func (f *Framer) ReadFrame() (data map[string]interface{}, err error) { data = make(map[string]interface{}) - //Only QUERY, PREPARE and EXECUTE queries support tracing - //If a response frame has the tracing flag set, its body contains - //a tracing ID. The tracing ID is a [uuid] and is the first thing in - //the frame body. The rest of the body will then be the usual body - //corresponding to the response opcode. + // Only QUERY, PREPARE and EXECUTE queries support tracing + // If a response frame has the tracing flag set, its body contains + // a tracing ID. The tracing ID is a [uuid] and is the first thing in + // the frame body. The rest of the body will then be the usual body + // corresponding to the response opcode. if f.Header.Flags&flagTracing == flagTracing && (f.Header.Op&opQuery == opQuery || f.Header.Op&opExecute == opExecute || f.Header.Op&opPrepare == opPrepare) { - debugf("tracing enabled") - //seems no UUID to read, protocol incorrect? - //uid := decoder.ReadUUID() - //data["trace_id"] = uid.String() + // seems no UUID to read, protocol incorrect? + // uid := decoder.ReadUUID() + // data["trace_id"] = uid.String() } if f.Header.Flags&flagWarning == flagWarning { @@ -211,7 +210,7 @@ func (f *Framer) ReadFrame() (data map[string]interface{}, err error) { } if f.Header.Flags&flagCompress == flagCompress { - //decompress data and switch to use bytearray decoder + // decompress data and switch to use bytearray decoder if f.compres == nil { logp.Err("hit compress flag, but compressor was not set") panic(errors.New("hit compress flag, but compressor was not set")) @@ -234,13 +233,13 @@ func (f *Framer) ReadFrame() (data map[string]interface{}, err error) { // assumes that the frame body has been read into rbuf switch f.Header.Op { - //below ops are requests + // below ops are requests case opStartup, opAuthResponse, opOptions, opPrepare, opExecute, opBatch, opRegister: - //ignored + // ignored case opQuery: data = f.parseQueryFrame() - //below ops are responses + // below ops are responses case opError: data["error"] = f.parseErrorFrame() case opResult: @@ -259,7 +258,7 @@ func (f *Framer) ReadFrame() (data map[string]interface{}, err error) { // the body should be empty default: - //ignore + // ignore debugf("unknow ops, not processed, %v", f.Header) } @@ -348,7 +347,7 @@ func (f *Framer) parseErrorFrame() (data map[string]interface{}) { case errInvalid, errBootstrapping, errConfig, errCredentials, errOverloaded, errProtocol, errServer, errSyntax, errTruncate, errUnauthorized: - //ignored + // ignored default: logp.Err("unknown error code: 0x%x", code) } @@ -375,8 +374,7 @@ func (f *Framer) parseResultMetadata(getPKinfo bool) map[string]interface{} { meta["col_count"] = colCount if getPKinfo { - - //only for prepared result + // only for prepared result if f.proto >= protoVersion4 { pkeyCount := decoder.ReadInt() pkeys := make([]int, pkeyCount) @@ -450,7 +448,6 @@ func (f *Framer) parseResultPrepared() map[string]interface{} { result := make(map[string]interface{}) uuid, err := UUIDFromBytes((f.decoder).ReadShortBytes()) - if err != nil { logp.Err("Error in parsing UUID") } diff --git a/packetbeat/protos/cassandra/internal/gocql/marshal.go b/packetbeat/protos/cassandra/internal/gocql/marshal.go index 2061bb2f11e..3c55781cc81 100644 --- a/packetbeat/protos/cassandra/internal/gocql/marshal.go +++ b/packetbeat/protos/cassandra/internal/gocql/marshal.go @@ -349,8 +349,8 @@ const ( errUnprepared ErrType = 0x2500 ) -func (this ErrType) String() string { - switch this { +func (e ErrType) String() string { + switch e { case errUnavailable: return "errUnavailable" case errWriteTimeout: @@ -680,7 +680,7 @@ func (u UUID) Bytes() []byte { // String returns the UUID in it's canonical form, a 32 digit hexadecimal // number in the form of xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx. func (u UUID) String() string { - var offsets = [...]int{0, 2, 4, 6, 9, 11, 14, 16, 19, 21, 24, 26, 28, 30, 32, 34} + offsets := [...]int{0, 2, 4, 6, 9, 11, 14, 16, 19, 21, 24, 26, 28, 30, 32, 34} const hexString = "0123456789abcdef" r := make([]byte, 36) for i, b := range u { diff --git a/packetbeat/protos/cassandra/internal/gocql/stream_decoder.go b/packetbeat/protos/cassandra/internal/gocql/stream_decoder.go index ae107a95e9e..f39cde2d11e 100644 --- a/packetbeat/protos/cassandra/internal/gocql/stream_decoder.go +++ b/packetbeat/protos/cassandra/internal/gocql/stream_decoder.go @@ -149,7 +149,7 @@ func (f StreamDecoder) ReadInet() (net.IP, int) { panic(err) } - if !(size == 4 || size == 16) { + if size != 4 && size != 16 { panic(fmt.Errorf("invalid IP size: %d", size)) } diff --git a/packetbeat/protos/cassandra/parser.go b/packetbeat/protos/cassandra/parser.go index f699187b03f..65ff347a1ea 100644 --- a/packetbeat/protos/cassandra/parser.go +++ b/packetbeat/protos/cassandra/parser.go @@ -44,14 +44,7 @@ type parserConfig struct { // check whether this ops is enabled or not func (p *parser) CheckFrameOpsIgnored() bool { - if p.config.ignoredOps != nil && len(p.config.ignoredOps) > 0 { - //default map value is false - v := p.config.ignoredOps[p.framer.Header.Op] - if v { - return true - } - } - return false + return p.config.ignoredOps[p.framer.Header.Op] } type message struct { @@ -69,8 +62,6 @@ type message struct { // list element use by 'transactions' for correlation next *message - transactionTimeout time.Duration - results transactions } @@ -91,7 +82,6 @@ func (p *parser) init( } isDebug = logp.IsDebug("cassandra") - } func (p *parser) append(data []byte) error { @@ -153,7 +143,7 @@ func (p *parser) parserBody() (bool, error) { return true, nil } - //let's wait for enough buf + // let's wait for enough buf debugf("bodyLength: %d", bdyLen) if !p.buf.Avail(bdyLen) { if isDebug { @@ -162,7 +152,7 @@ func (p *parser) parserBody() (bool, error) { return false, nil } - //check if the ops already ignored + // check if the ops already ignored if p.message.ignored { if isDebug { debugf("message marked to be ignored, let's do this") @@ -232,7 +222,7 @@ func (p *parser) parse() (*message, error) { } } - //check if the ops need to be ignored + // check if the ops need to be ignored if p.CheckFrameOpsIgnored() { // as we already ignore the content, we now mark the result is ignored p.message.ignored = true @@ -248,7 +238,7 @@ func (p *parser) parse() (*message, error) { return nil, err } - //ignore and wait for more data + // ignore and wait for more data if !finished { return nil, nil } diff --git a/packetbeat/protos/cassandra/pub.go b/packetbeat/protos/cassandra/pub.go index 3b90c53feae..82effab92d3 100644 --- a/packetbeat/protos/cassandra/pub.go +++ b/packetbeat/protos/cassandra/pub.go @@ -33,7 +33,6 @@ type transPub struct { sendResponse bool sendRequestHeader bool sendResponseHeader bool - ignoredOps string results protos.Reporter } @@ -82,7 +81,7 @@ func (pub *transPub) createEvent(requ, resp *message) beat.Event { cassandra := common.MapStr{} status := common.OK_STATUS - //requ can be null, if the message is a PUSHed message + // requ can be null, if the message is a PUSHed message if requ != nil { pbf.Source.Bytes = int64(requ.Size) pbf.Event.Start = requ.Ts @@ -101,7 +100,7 @@ func (pub *transPub) createEvent(requ, resp *message) beat.Event { } } } else { - //dealing with PUSH message + // dealing with PUSH message cassandra["no_request"] = true } diff --git a/packetbeat/protos/cassandra/trans.go b/packetbeat/protos/cassandra/trans.go index 9b055d22c88..d7a9ae60d5f 100644 --- a/packetbeat/protos/cassandra/trans.go +++ b/packetbeat/protos/cassandra/trans.go @@ -132,7 +132,6 @@ func (trans *transactions) onResponse( func (trans *transactions) tryMergeRequests( prev, msg *message, ) (merged bool, err error) { - msg.isComplete = true return false, nil } @@ -150,7 +149,7 @@ func (trans *transactions) correlate() error { if requests.empty() { for !responses.empty() { - //if the response is EVENT, which pushed from server, we can accept that + // if the response is EVENT, which pushed from server, we can accept that resp := responses.first() if !resp.isComplete { break diff --git a/packetbeat/protos/dhcpv4/config.go b/packetbeat/protos/dhcpv4/config.go index 4121ee66ba7..7245e3c641b 100644 --- a/packetbeat/protos/dhcpv4/config.go +++ b/packetbeat/protos/dhcpv4/config.go @@ -25,10 +25,8 @@ type dhcpv4Config struct { config.ProtocolCommon `config:",inline"` } -var ( - defaultConfig = dhcpv4Config{ - ProtocolCommon: config.ProtocolCommon{ - Ports: []int{67, 68}, - }, - } -) +var defaultConfig = dhcpv4Config{ + ProtocolCommon: config.ProtocolCommon{ + Ports: []int{67, 68}, + }, +} diff --git a/packetbeat/protos/dns/config.go b/packetbeat/protos/dns/config.go index c98d52f8257..c1044cf2f7c 100644 --- a/packetbeat/protos/dns/config.go +++ b/packetbeat/protos/dns/config.go @@ -28,10 +28,8 @@ type dnsConfig struct { IncludeAdditionals bool `config:"include_additionals"` } -var ( - defaultConfig = dnsConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - } -) +var defaultConfig = dnsConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, +} diff --git a/packetbeat/protos/dns/dns.go b/packetbeat/protos/dns/dns.go index 125d6112bae..04be88a36b1 100644 --- a/packetbeat/protos/dns/dns.go +++ b/packetbeat/protos/dns/dns.go @@ -59,18 +59,10 @@ type dnsPlugin struct { watcher procs.ProcessesWatcher } -var ( - debugf = logp.MakeDebug("dns") -) +var debugf = logp.MakeDebug("dns") const maxDNSTupleRawSize = 16 + 16 + 2 + 2 + 4 + 1 -// Constants used to associate the DNS QR flag with a meaningful value. -const ( - query = false - response = true -) - // Transport protocol. type transport uint8 @@ -203,13 +195,12 @@ func (dns *dnsPlugin) getTransaction(k hashableDNSTuple) *dnsTransaction { } type dnsTransaction struct { - ts time.Time // Time when the request was received. - tuple dnsTuple // Key used to track this transaction in the transactionsMap. - responseTime int32 // Elapsed time in milliseconds between the request and response. - src common.Endpoint - dst common.Endpoint - transport transport - notes []string + ts time.Time // Time when the request was received. + tuple dnsTuple // Key used to track this transaction in the transactionsMap. + src common.Endpoint + dst common.Endpoint + transport transport + notes []string request *dnsMessage response *dnsMessage diff --git a/packetbeat/protos/dns/dns_tcp.go b/packetbeat/protos/dns/dns_tcp.go index bbf7e736926..8addcdd6896 100644 --- a/packetbeat/protos/dns/dns_tcp.go +++ b/packetbeat/protos/dns/dns_tcp.go @@ -107,7 +107,6 @@ func (dns *dnsPlugin) doParse(conn *dnsConnectionData, pkt *protos.Packet, tcpTu } } decodedData, err := stream.handleTCPRawData() - if err != nil { if err == incompleteMsg { @@ -259,8 +258,8 @@ func (dns *dnsPlugin) publishResponseError(conn *dnsConnectionData, err error) { trans.notes = append(trans.notes, errDNS.responseError()) // Should we publish the length (bytes_out) of the failed Response? - //streamReverse.message.Length = len(streamReverse.rawData) - //trans.Response = streamReverse.message + // streamReverse.message.Length = len(streamReverse.rawData) + // trans.Response = streamReverse.message dns.publishTransaction(trans) dns.deleteTransaction(hashDNSTupleOrigin) @@ -296,7 +295,6 @@ func (stream *dnsStream) handleTCPRawData() (*mkdns.Msg, error) { } decodedData, err := decodeDNSData(transportTCP, rawData[:stream.parseOffset]) - if err != nil { return nil, err } diff --git a/packetbeat/protos/dns/dns_test.go b/packetbeat/protos/dns/dns_test.go index 9427ebeaecf..1ba03b2bd61 100644 --- a/packetbeat/protos/dns/dns_test.go +++ b/packetbeat/protos/dns/dns_test.go @@ -316,8 +316,10 @@ func TestRRsToMapStrsWithOPTRecord(t *testing.T) { o.Hdr.Rrtype = mkdns.TypeOPT r := new(mkdns.MX) - r.Hdr = mkdns.RR_Header{Name: "miek.nl", Rrtype: mkdns.TypeMX, - Class: mkdns.ClassINET, Ttl: 3600} + r.Hdr = mkdns.RR_Header{ + Name: "miek.nl", Rrtype: mkdns.TypeMX, + Class: mkdns.ClassINET, Ttl: 3600, + } r.Preference = 10 r.Mx = "mx.miek.nl" diff --git a/packetbeat/protos/dns/dns_udp_test.go b/packetbeat/protos/dns/dns_udp_test.go index 3711fb50e00..62713502e0a 100644 --- a/packetbeat/protos/dns/dns_udp_test.go +++ b/packetbeat/protos/dns/dns_udp_test.go @@ -155,10 +155,12 @@ var ( qSubdomain: "131.252.30", qTLD: "in-addr.arpa", answers: []string{"github.com"}, - authorities: []string{"a.root-servers.net", "b.root-servers.net", "c.root-servers.net", + authorities: []string{ + "a.root-servers.net", "b.root-servers.net", "c.root-servers.net", "d.root-servers.net", "e.root-servers.net", "f.root-servers.net", "g.root-servers.net", "h.root-servers.net", "i.root-servers.net", "j.root-servers.net", "k.root-servers.net", - "l.root-servers.net", "m.root-servers.net"}, + "l.root-servers.net", "m.root-servers.net", + }, request: []byte{ 0x01, 0x58, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x31, 0x33, 0x31, 0x03, 0x32, 0x35, 0x32, 0x02, 0x33, 0x30, 0x03, 0x31, 0x39, 0x32, 0x07, 0x69, 0x6e, 0x2d, 0x61, diff --git a/packetbeat/protos/http/config.go b/packetbeat/protos/http/config.go index 86f59fb36b1..45878934b0c 100644 --- a/packetbeat/protos/http/config.go +++ b/packetbeat/protos/http/config.go @@ -39,12 +39,10 @@ type httpConfig struct { RedactHeaders []string `config:"redact_headers"` } -var ( - defaultConfig = httpConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - MaxMessageSize: tcp.TCPMaxDataInStream, - DecodeBody: true, - } -) +var defaultConfig = httpConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + MaxMessageSize: tcp.TCPMaxDataInStream, + DecodeBody: true, +} diff --git a/packetbeat/protos/http/http.go b/packetbeat/protos/http/http.go index e86cb665587..9cc436f84f0 100644 --- a/packetbeat/protos/http/http.go +++ b/packetbeat/protos/http/http.go @@ -39,8 +39,10 @@ import ( "github.com/elastic/beats/v7/packetbeat/protos" ) -var debugf = logp.MakeDebug("http") -var detailedf = logp.MakeDebug("httpdetailed") +var ( + debugf = logp.MakeDebug("http") + detailedf = logp.MakeDebug("httpdetailed") +) type parserState uint8 @@ -300,7 +302,6 @@ func (http *httpPlugin) doParse( tcptuple *common.TCPTuple, dir uint8, ) *httpConnectionData { - if isDetailed { detailedf("Payload received: [%s]", pkt.Payload) } @@ -368,8 +369,8 @@ func newStream(pkt *protos.Packet, tcptuple *common.TCPTuple) *stream { // ReceivedFin will be called when TCP transaction is terminating. func (http *httpPlugin) ReceivedFin(tcptuple *common.TCPTuple, dir uint8, - private protos.ProtocolData) protos.ProtocolData { - + private protos.ProtocolData, +) protos.ProtocolData { debugf("Received FIN") conn := getHTTPConnection(private) if conn == nil { @@ -396,8 +397,8 @@ func (http *httpPlugin) ReceivedFin(tcptuple *common.TCPTuple, dir uint8, // GapInStream is called when a gap of nbytes bytes is found in the stream (due // to packet loss). func (http *httpPlugin) GapInStream(tcptuple *common.TCPTuple, dir uint8, - nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool) { - + nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool, +) { defer logp.Recover("GapInStream(http) exception") conn := getHTTPConnection(private) @@ -436,7 +437,6 @@ func (http *httpPlugin) handleHTTP( tcptuple *common.TCPTuple, dir uint8, ) { - m.tcpTuple = *tcptuple m.direction = dir m.cmdlineTuple = http.watcher.FindProcessesTupleTCP(tcptuple.IPPort()) @@ -488,7 +488,6 @@ func (http *httpPlugin) flushRequests(conn *httpConnectionData) { } func (http *httpPlugin) correlate(conn *httpConnectionData) { - // drop responses with missing requests if conn.requests.empty() { http.flushResponses(conn) @@ -724,8 +723,7 @@ func splitCookiesHeader(headerVal string) map[string]string { for _, cval := range cstring { cookie := strings.SplitN(cval, "=", 2) if len(cookie) == 2 { - cookies[strings.ToLower(strings.TrimSpace(cookie[0]))] = - parseCookieValue(strings.TrimSpace(cookie[1])) + cookies[strings.ToLower(strings.TrimSpace(cookie[0]))] = parseCookieValue(strings.TrimSpace(cookie[1])) } } @@ -928,10 +926,6 @@ func (ml *messageList) pop() *message { return msg } -func (ml *messageList) last() *message { - return ml.tail -} - func extractBasicAuthUser(headers map[string]common.NetString) string { const prefix = "Basic " diff --git a/packetbeat/protos/http/http_parser.go b/packetbeat/protos/http/http_parser.go index be4343ea120..a903460f772 100644 --- a/packetbeat/protos/http/http_parser.go +++ b/packetbeat/protos/http/http_parser.go @@ -45,7 +45,7 @@ type message struct { cmdlineTuple *common.ProcessTuple direction uint8 - //Request Info + // Request Info requestURI common.NetString method common.NetString statusCode uint16 @@ -187,7 +187,7 @@ func (*parser) parseHTTPLine(s *stream, m *message) (cont, ok, complete bool) { return false, false, false } if bytes.Equal(fline[0:5], constHTTPVersion) { - //RESPONSE + // RESPONSE m.isRequest = false version = fline[5:8] m.statusCode, m.statusPhrase, err = parseResponseStatus(fline[9:]) @@ -289,7 +289,7 @@ func (parser *parser) parseHeaders(s *stream, m *message) (cont, ok, complete bo s.parseOffset = 0 if !m.isRequest && ((100 <= m.statusCode && m.statusCode < 200) || m.statusCode == 204 || m.statusCode == 304) { - //response with a 1xx, 204 , or 304 status code is always terminated + // response with a 1xx, 204 , or 304 status code is always terminated // by the first empty line after the header fields if isDebug { debugf("Terminate response, status code %d", m.statusCode) diff --git a/packetbeat/protos/http/http_test.go b/packetbeat/protos/http/http_test.go index 0fa9077a5ed..4179a047d56 100644 --- a/packetbeat/protos/http/http_test.go +++ b/packetbeat/protos/http/http_test.go @@ -56,10 +56,6 @@ func (e *eventStore) publish(event beat.Event) { e.events = append(e.events, event) } -func (e *eventStore) empty() bool { - return len(e.events) == 0 -} - func newTestParser(http *httpPlugin, payloads ...string) *testParser { if http == nil { http = httpModForTests(nil) @@ -538,7 +534,7 @@ func TestHttpParser_RequestResponseBody(t *testing.T) { tp.stream.PrepareForNewMessage() tp.stream.message = &message{ts: time.Now()} - msg, ok, complete = tp.parse() + _, ok, complete = tp.parse() assert.True(t, ok) assert.True(t, complete) } @@ -646,17 +642,23 @@ func TestEatBodyChunked(t *testing.T) { st.data = append(st.data, msgs[1]...) cont, ok, complete = parser.parseBodyChunkedStart(st, msg) assert.True(t, cont) + assert.True(t, ok) + assert.False(t, complete) assert.Equal(t, 3, msg.chunkedLength) assert.Equal(t, 0, len(msg.body)) assert.Equal(t, stateBodyChunked, st.parseState) cont, ok, complete = parser.parseBodyChunked(st, msg) assert.True(t, cont) + assert.True(t, ok) + assert.False(t, complete) assert.Equal(t, stateBodyChunkedStart, st.parseState) assert.Equal(t, 3, msg.contentLength) cont, ok, complete = parser.parseBodyChunkedStart(st, msg) assert.True(t, cont) + assert.True(t, ok) + assert.False(t, complete) assert.Equal(t, 3, msg.chunkedLength) assert.Equal(t, 3, msg.contentLength) assert.Equal(t, stateBodyChunked, st.parseState) @@ -672,6 +674,8 @@ func TestEatBodyChunked(t *testing.T) { st.data = append(st.data, msgs[2]...) cont, ok, complete = parser.parseBodyChunked(st, msg) assert.True(t, cont) + assert.True(t, ok) + assert.False(t, complete) assert.Equal(t, 6, msg.contentLength) assert.Equal(t, stateBodyChunkedStart, st.parseState) @@ -729,7 +733,6 @@ func TestEatBodyChunkedWaitCRLF(t *testing.T) { ok, complete = parser.parseBodyChunkedWaitFinalCRLF(st, msg) if ok != true || complete != false { t.Error("Wrong return values", ok, complete) - } st.data = append(st.data, msgs[1]...) @@ -817,13 +820,12 @@ func TestHttpParser_censorPasswordPOST(t *testing.T) { http.parserConfig.sendHeaders = true http.parserConfig.sendAllHeaders = true - data1 := - "POST /users/login HTTP/1.1\r\n" + - "HOST: www.example.com\r\n" + - "Content-Type: application/x-www-form-urlencoded\r\n" + - "Content-Length: 28\r\n" + - "\r\n" + - "username=ME&password=secret\r\n" + data1 := "POST /users/login HTTP/1.1\r\n" + + "HOST: www.example.com\r\n" + + "Content-Type: application/x-www-form-urlencoded\r\n" + + "Content-Length: 28\r\n" + + "\r\n" + + "username=ME&password=secret\r\n" tp := newTestParser(http, data1) msg, ok, complete := tp.parse() @@ -1511,7 +1513,8 @@ func TestHTTP_Encodings(t *testing.T) { gzipDeflateBody := string([]byte{ 0x1f, 0x8b, 0x08, 0x00, 0x65, 0xdb, 0x6a, 0x5b, 0x00, 0x03, 0x3b, 0x7d, 0xe2, 0xbc, 0xe7, 0x13, 0x26, 0x06, 0x00, 0x95, 0xfa, 0x49, 0xbf, 0x07, - 0x00, 0x00, 0x00}) + 0x00, 0x00, 0x00, + }) var store eventStore http := httpModForTests(&store) diff --git a/packetbeat/protos/icmp/config.go b/packetbeat/protos/icmp/config.go index cb3ee28d7f9..4fcdb6667e5 100644 --- a/packetbeat/protos/icmp/config.go +++ b/packetbeat/protos/icmp/config.go @@ -29,8 +29,6 @@ type icmpConfig struct { TransactionTimeout time.Duration `config:"transaction_timeout"` } -var ( - defaultConfig = icmpConfig{ - TransactionTimeout: protos.DefaultTransactionExpiration, - } -) +var defaultConfig = icmpConfig{ + TransactionTimeout: protos.DefaultTransactionExpiration, +} diff --git a/packetbeat/protos/icmp/icmp.go b/packetbeat/protos/icmp/icmp.go index 521bb019ce6..c204b819adb 100644 --- a/packetbeat/protos/icmp/icmp.go +++ b/packetbeat/protos/icmp/icmp.go @@ -102,7 +102,7 @@ func (icmp *icmpPlugin) init(results protos.Reporter, watcher procs.ProcessesWat } logp.Debug("icmp", "Local IP addresses: %s", icmp.localIps) - var removalListener = func(k common.Key, v common.Value) { + removalListener := func(k common.Key, v common.Value) { icmp.expireTransaction(k.(hashableIcmpTuple), v.(*icmpTransaction)) } @@ -145,7 +145,7 @@ func (icmp *icmpPlugin) ProcessICMPv4( ts: pkt.Ts, Type: typ, code: code, - length: len(icmp4.BaseLayer.Payload), + length: len(icmp4.Payload), } if isRequest(tuple, msg) { @@ -180,7 +180,7 @@ func (icmp *icmpPlugin) ProcessICMPv6( ts: pkt.Ts, Type: typ, code: code, - length: len(icmp6.BaseLayer.Payload), + length: len(icmp6.Payload), } if isRequest(tuple, msg) { @@ -257,14 +257,6 @@ func (icmp *icmpPlugin) isLocalIP(ip net.IP) bool { return false } -func (icmp *icmpPlugin) getTransaction(k hashableIcmpTuple) *icmpTransaction { - v := icmp.transactions.Get(k) - if v != nil { - return v.(*icmpTransaction) - } - return nil -} - func (icmp *icmpPlugin) deleteTransaction(k hashableIcmpTuple) *icmpTransaction { v := icmp.transactions.Delete(k) if v != nil { diff --git a/packetbeat/protos/icmp/tuple_test.go b/packetbeat/protos/icmp/tuple_test.go index 7c9112decb1..b8d09e6753f 100644 --- a/packetbeat/protos/icmp/tuple_test.go +++ b/packetbeat/protos/icmp/tuple_test.go @@ -79,7 +79,8 @@ func TestIcmpTupleHashable(t *testing.T) { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 192, 168, 0, 2, 1, 0, 0, 1, - 4} + 4, + } assert.Equal(t, expectedHashable, actualHashable) } diff --git a/packetbeat/protos/memcache/binary.go b/packetbeat/protos/memcache/binary.go index f9db915ce8a..ee831055317 100644 --- a/packetbeat/protos/memcache/binary.go +++ b/packetbeat/protos/memcache/binary.go @@ -28,8 +28,6 @@ import ( "github.com/elastic/beats/v7/libbeat/common/streambuf" ) -type memcacheMagic uint8 - const ( memcacheMagicRequest = 0x80 memcacheMagicResponse = 0x81 @@ -56,10 +54,11 @@ var binStatsValue = argDef{ serialize: serializeStats, } -var extraValue = makeValueExtra("value") -var extraDelta = makeValueExtra("delta") -var extraInitial = makeValue2Extra("initial") -var extraVerbosity = make32ValueExtra("verbosity") +var ( + extraDelta = makeValueExtra("delta") + extraInitial = makeValue2Extra("initial") + extraVerbosity = make32ValueExtra("verbosity") +) func init() { // define all memcache opcode commands: diff --git a/packetbeat/protos/memcache/config.go b/packetbeat/protos/memcache/config.go index e558c84153d..dfe01e86e3b 100644 --- a/packetbeat/protos/memcache/config.go +++ b/packetbeat/protos/memcache/config.go @@ -32,11 +32,9 @@ type memcacheConfig struct { ParseUnknown bool } -var ( - defaultConfig = memcacheConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - UDPTransactionTimeout: protos.DefaultTransactionExpiration, - } -) +var defaultConfig = memcacheConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + UDPTransactionTimeout: protos.DefaultTransactionExpiration, +} diff --git a/packetbeat/protos/memcache/errors.go b/packetbeat/protos/memcache/errors.go index 3b6b5b9ae45..282812a3492 100644 --- a/packetbeat/protos/memcache/errors.go +++ b/packetbeat/protos/memcache/errors.go @@ -23,9 +23,7 @@ import ( "errors" ) -var ( - errNotImplemented = errors.New("not implemented") -) +var errNotImplemented = errors.New("not implemented") // memcache text parser errors var ( diff --git a/packetbeat/protos/memcache/parse.go b/packetbeat/protos/memcache/parse.go index 2fe774c19e5..01ce9a05acb 100644 --- a/packetbeat/protos/memcache/parse.go +++ b/packetbeat/protos/memcache/parse.go @@ -25,11 +25,6 @@ import ( "github.com/elastic/beats/v7/libbeat/common/streambuf" ) -const ( - codeSpace byte = ' ' - codeTab = '\t' -) - type parserConfig struct { maxValues int maxBytesPerValue int diff --git a/packetbeat/protos/memcache/parse_test.go b/packetbeat/protos/memcache/parse_test.go index 95fdac5bad3..e1ac77160f5 100644 --- a/packetbeat/protos/memcache/parse_test.go +++ b/packetbeat/protos/memcache/parse_test.go @@ -56,8 +56,10 @@ type binValueWriter interface { WriteNetUint64At(uint64, int) error } -type extraFn func(binValueWriter) int -type valueFn func(*streambuf.Buffer, int) int +type ( + extraFn func(binValueWriter) int + valueFn func(*streambuf.Buffer, int) int +) type offsetBinWriter struct { w binValueWriter diff --git a/packetbeat/protos/memcache/plugin_tcp.go b/packetbeat/protos/memcache/plugin_tcp.go index 830a0cd64a5..c16abb3c712 100644 --- a/packetbeat/protos/memcache/plugin_tcp.go +++ b/packetbeat/protos/memcache/plugin_tcp.go @@ -60,8 +60,6 @@ type messageList struct { tail *message } -const defaultTCPTransDuration uint = 200 - func ensureMemcacheConnection(private protos.ProtocolData) *tcpConnectionData { if private == nil { return &tcpConnectionData{} diff --git a/packetbeat/protos/memcache/text.go b/packetbeat/protos/memcache/text.go index 72b36442c9a..86baa8d0627 100644 --- a/packetbeat/protos/memcache/text.go +++ b/packetbeat/protos/memcache/text.go @@ -109,12 +109,14 @@ var argStat = argDef{ serialize: serializeStats, } -var argDelta = makeValueArg("delta") -var argSleepUs = makeValueArg("sleep_us") -var argValue = makeValueArg("value") -var argVerbosity = makeValueArg("verbosity") -var argSourceClass = makeIValueArg("source_class") -var argDestClass = makeIValue2Arg("dest_class") +var ( + argDelta = makeValueArg("delta") + argSleepUs = makeValueArg("sleep_us") + argValue = makeValueArg("value") + argVerbosity = makeValueArg("verbosity") + argSourceClass = makeIValueArg("source_class") + argDestClass = makeIValue2Arg("dest_class") +) var argNoReply = argDef{ parse: func(parser *parser, hdr, buf *streambuf.Buffer) error { @@ -297,8 +299,10 @@ func makeDefTextDataMessage( } } -var defTextDataRequest = makeDefTextDataMessage(true) -var defTextDataResponse = makeDefTextDataMessage(false) +var ( + defTextDataRequest = makeDefTextDataMessage(true) + defTextDataResponse = makeDefTextDataMessage(false) +) func loadCommand(name string, code commandCode) textCommandType { return defTextMessage(name, memcacheLoadMsg, code, argMultiKeys) @@ -403,13 +407,6 @@ func makeValueArg(name string) argDef { } } -func makeValue2Arg(name string) argDef { - return argDef{ - parse: textUint64Arg(setValue2), - serialize: serializeValue2(name), - } -} - func makeIValueArg(name string) argDef { return argDef{ parse: func(parser *parser, hdr, buf *streambuf.Buffer) error { @@ -592,7 +589,7 @@ func parseNoReplyArg(buf *streambuf.Buffer) (bool, error) { return false, textArgError(err) } - var noreplyArg = []byte("noreply") + noreplyArg := []byte("noreply") noreply := bytes.HasPrefix(buf.Bytes(), noreplyArg) if !noreply { return false, errExpectedNoReply diff --git a/packetbeat/protos/mongodb/config.go b/packetbeat/protos/mongodb/config.go index e7e2143b647..c90aeb67290 100644 --- a/packetbeat/protos/mongodb/config.go +++ b/packetbeat/protos/mongodb/config.go @@ -28,12 +28,10 @@ type mongodbConfig struct { MaxDocs int `config:"max_docs"` } -var ( - defaultConfig = mongodbConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - MaxDocLength: 5000, - MaxDocs: 10, - } -) +var defaultConfig = mongodbConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + MaxDocLength: 5000, + MaxDocs: 10, +} diff --git a/packetbeat/protos/mongodb/mongodb.go b/packetbeat/protos/mongodb/mongodb.go index b05ebce9150..0fcc5464b45 100644 --- a/packetbeat/protos/mongodb/mongodb.go +++ b/packetbeat/protos/mongodb/mongodb.go @@ -55,9 +55,7 @@ type transactionKey struct { id int } -var ( - unmatchedRequests = monitoring.NewInt(nil, "mongodb.unmatched_requests") -) +var unmatchedRequests = monitoring.NewInt(nil, "mongodb.unmatched_requests") func init() { protos.Register("mongodb", New) @@ -218,7 +216,6 @@ func (mongodb *mongodbPlugin) handleMongodb( tcptuple *common.TCPTuple, dir uint8, ) { - m.tcpTuple = *tcptuple m.direction = dir m.cmdlineTuple = mongodb.watcher.FindProcessesTupleTCP(tcptuple.IPPort()) @@ -345,11 +342,12 @@ func reconstructQuery(t *transaction, full bool) (query string) { if !full { // remove the actual data. // TODO: review if we need to add other commands here - if t.method == "insert" { + switch t.method { + case "insert": params, err = doc2str(copyMapWithoutKey(t.params, "documents")) - } else if t.method == "update" { + case "update": params, err = doc2str(copyMapWithoutKey(t.params, "updates")) - } else if t.method == "findandmodify" { + case "findandmodify": params, err = doc2str(copyMapWithoutKey(t.params, "update")) } } else { diff --git a/packetbeat/protos/mongodb/mongodb_parser.go b/packetbeat/protos/mongodb/mongodb_parser.go index a5ff5fa0625..1abc6f890f2 100644 --- a/packetbeat/protos/mongodb/mongodb_parser.go +++ b/packetbeat/protos/mongodb/mongodb_parser.go @@ -116,10 +116,26 @@ func mongodbMessageParser(s *stream) (bool, bool) { // see http://docs.mongodb.org/meta-driver/latest/legacy/mongodb-wire-protocol/#op-reply func opReplyParse(d *decoder, m *mongodbMessage) (bool, bool) { _, err := d.readInt32() // ignore flags for now + if err != nil { + logp.Err("An error occurred while parsing OP_REPLY message: %s", err) + return false, false + } m.event["cursorId"], err = d.readInt64() + if err != nil { + logp.Err("An error occurred while parsing OP_REPLY message: %s", err) + return false, false + } m.event["startingFrom"], err = d.readInt32() + if err != nil { + logp.Err("An error occurred while parsing OP_REPLY message: %s", err) + return false, false + } numberReturned, err := d.readInt32() + if err != nil { + logp.Err("An error occurred while parsing OP_REPLY message: %s", err) + return false, false + } m.event["numberReturned"] = numberReturned debugf("Prepare to read %d document from reply", m.event["numberReturned"]) @@ -128,15 +144,27 @@ func opReplyParse(d *decoder, m *mongodbMessage) (bool, bool) { for i := 0; i < numberReturned; i++ { var document bson.M document, err = d.readDocument() + if err != nil { + logp.Err("An error occurred while parsing OP_REPLY message: %s", err) + return false, false + } // Check if the result is actually an error if i == 0 { if mongoError, present := document["$err"]; present { m.error, err = doc2str(mongoError) + if err != nil { + logp.Err("An error occurred while parsing OP_REPLY message: %s", err) + return false, false + } } if writeErrors, present := document["writeErrors"]; present { m.error, err = doc2str(writeErrors) + if err != nil { + logp.Err("An error occurred while parsing OP_REPLY message: %s", err) + return false, false + } } } @@ -144,10 +172,6 @@ func opReplyParse(d *decoder, m *mongodbMessage) (bool, bool) { } m.documents = documents - if err != nil { - logp.Err("An error occurred while parsing OP_REPLY message: %s", err) - return false, false - } return true, true } @@ -163,12 +187,26 @@ func opMsgLegacyParse(d *decoder, m *mongodbMessage) (bool, bool) { func opUpdateParse(d *decoder, m *mongodbMessage) (bool, bool) { _, err := d.readInt32() // always ZERO, a slot reserved in the protocol for future use + if err != nil { + logp.Err("An error occurred while parsing OP_UPDATE message: %s", err) + return false, false + } m.event["fullCollectionName"], err = d.readCStr() + if err != nil { + logp.Err("An error occurred while parsing OP_UPDATE message: %s", err) + return false, false + } _, err = d.readInt32() // ignore flags for now - + if err != nil { + logp.Err("An error occurred while parsing OP_UPDATE message: %s", err) + return false, false + } m.event["selector"], err = d.readDocumentStr() + if err != nil { + logp.Err("An error occurred while parsing OP_UPDATE message: %s", err) + return false, false + } m.event["update"], err = d.readDocumentStr() - if err != nil { logp.Err("An error occurred while parsing OP_UPDATE message: %s", err) return false, false @@ -179,6 +217,10 @@ func opUpdateParse(d *decoder, m *mongodbMessage) (bool, bool) { func opInsertParse(d *decoder, m *mongodbMessage) (bool, bool) { _, err := d.readInt32() // ignore flags for now + if err != nil { + logp.Err("An error occurred while parsing OP_INSERT message: %s", err) + return false, false + } m.event["fullCollectionName"], err = d.readCStr() // TODO parse bson documents @@ -230,11 +272,27 @@ func isDatabaseCommand(key string, val interface{}) bool { func opQueryParse(d *decoder, m *mongodbMessage) (bool, bool) { _, err := d.readInt32() // ignore flags for now + if err != nil { + logp.Err("An error occurred while parsing OP_QUERY message: %s", err) + return false, false + } fullCollectionName, err := d.readCStr() + if err != nil { + logp.Err("An error occurred while parsing OP_QUERY message: %s", err) + return false, false + } m.event["fullCollectionName"] = fullCollectionName m.event["numberToSkip"], err = d.readInt32() + if err != nil { + logp.Err("An error occurred while parsing OP_QUERY message: %s", err) + return false, false + } m.event["numberToReturn"], err = d.readInt32() + if err != nil { + logp.Err("An error occurred while parsing OP_QUERY message: %s", err) + return false, false + } query, err := d.readDocument() if d.i < len(d.in) { @@ -275,10 +333,21 @@ func opQueryParse(d *decoder, m *mongodbMessage) (bool, bool) { func opGetMoreParse(d *decoder, m *mongodbMessage) (bool, bool) { _, err := d.readInt32() // always ZERO, a slot reserved in the protocol for future use + if err != nil { + logp.Err("An error occurred while parsing OP_GET_MORE message: %s", err) + return false, false + } m.event["fullCollectionName"], err = d.readCStr() + if err != nil { + logp.Err("An error occurred while parsing OP_GET_MORE message: %s", err) + return false, false + } m.event["numberToReturn"], err = d.readInt32() + if err != nil { + logp.Err("An error occurred while parsing OP_GET_MORE message: %s", err) + return false, false + } m.event["cursorId"], err = d.readInt64() - if err != nil { logp.Err("An error occurred while parsing OP_GET_MORE message: %s", err) return false, false @@ -288,11 +357,21 @@ func opGetMoreParse(d *decoder, m *mongodbMessage) (bool, bool) { func opDeleteParse(d *decoder, m *mongodbMessage) (bool, bool) { _, err := d.readInt32() // always ZERO, a slot reserved in the protocol for future use + if err != nil { + logp.Err("An error occurred while parsing OP_DELETE message: %s", err) + return false, false + } m.event["fullCollectionName"], err = d.readCStr() + if err != nil { + logp.Err("An error occurred while parsing OP_DELETE message: %s", err) + return false, false + } _, err = d.readInt32() // ignore flags for now - + if err != nil { + logp.Err("An error occurred while parsing OP_DELETE message: %s", err) + return false, false + } m.event["selector"], err = d.readDocumentStr() - if err != nil { logp.Err("An error occurred while parsing OP_DELETE message: %s", err) return false, false @@ -405,7 +484,6 @@ func (d *decoder) readByte() (byte, error) { func (d *decoder) readInt32() (int, error) { b, err := d.readBytes(4) - if err != nil { return 0, err } @@ -418,7 +496,6 @@ func (d *decoder) readInt32() (int, error) { func (d *decoder) readInt64() (int, error) { b, err := d.readBytes(8) - if err != nil { return 0, err } @@ -436,6 +513,9 @@ func (d *decoder) readInt64() (int, error) { func (d *decoder) readDocument() (bson.M, error) { start := d.i documentLength, err := d.readInt32() + if err != nil { + return nil, err + } d.i = start + documentLength if len(d.in) < d.i { return nil, errors.New("document out of bounds") @@ -461,6 +541,9 @@ func doc2str(documentMap interface{}) (string, error) { func (d *decoder) readDocumentStr() (string, error) { documentMap, err := d.readDocument() + if err != nil { + return "", err + } document, err := doc2str(documentMap) return document, err } diff --git a/packetbeat/protos/mongodb/mongodb_test.go b/packetbeat/protos/mongodb/mongodb_test.go index ece0e1cf4aa..a1415dfa0a2 100644 --- a/packetbeat/protos/mongodb/mongodb_test.go +++ b/packetbeat/protos/mongodb/mongodb_test.go @@ -170,6 +170,7 @@ func TestSimpleFindLimit1_split(t *testing.T) { "1b000000013000e6762ff7c97652c001" + "3100d5b14ae9996c4440000273747265" + "657400100000004d6f72726973205061") + assert.NoError(t, err) respData2, err := hex.DecodeString( "726b2041766500027a6970636f646500" + @@ -183,6 +184,7 @@ func TestSimpleFindLimit1_split(t *testing.T) { "0000000964617465000044510a410100" + "00026772616465000200000041001073" + "636f72650006000000000332002b0000") + assert.NoError(t, err) respData3, err := hex.DecodeString( "00096461746500009cda693c01000002" + diff --git a/packetbeat/protos/mysql/config.go b/packetbeat/protos/mysql/config.go index d53429c3a2c..0c634b98291 100644 --- a/packetbeat/protos/mysql/config.go +++ b/packetbeat/protos/mysql/config.go @@ -31,13 +31,11 @@ type mysqlConfig struct { StatementTimeout time.Duration `config:"statement_timeout"` } -var ( - defaultConfig = mysqlConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - MaxRowLength: 1024, - MaxRows: 10, - StatementTimeout: 3600 * time.Second, - } -) +var defaultConfig = mysqlConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + MaxRowLength: 1024, + MaxRows: 10, + StatementTimeout: 3600 * time.Second, +} diff --git a/packetbeat/protos/mysql/mysql.go b/packetbeat/protos/mysql/mysql.go index 1553bdf9901..49ca17ece85 100644 --- a/packetbeat/protos/mysql/mysql.go +++ b/packetbeat/protos/mysql/mysql.go @@ -62,8 +62,6 @@ type mysqlMessage struct { numberOfRows int numberOfFields int size uint64 - fields []string - rows [][]string tables string isOK bool affectedRows uint64 @@ -83,7 +81,6 @@ type mysqlMessage struct { statementID int numberOfParams int - params []string } type mysqlTransaction struct { @@ -337,7 +334,7 @@ func mysqlMessageParser(s *mysqlStream) (bool, bool) { return true, false } - s.parseOffset += 4 //header + s.parseOffset += 4 // header s.parseOffset += int(m.packetLength) m.end = s.parseOffset if m.isRequest { @@ -347,7 +344,6 @@ func mysqlMessageParser(s *mysqlStream) (bool, bool) { } else { m.query = string(s.data[m.start+5 : m.end]) } - } else if m.isOK { // affected rows affectedRows, off, complete, err := readLinteger(s.data, m.start+5) @@ -475,7 +471,7 @@ func mysqlMessageParser(s *mysqlStream) (bool, bool) { return true, false } - s.parseOffset += 4 //header + s.parseOffset += 4 // header if s.data[s.parseOffset] == 0xfe { logp.Debug("mysqldetailed", "Received EOF packet") @@ -553,8 +549,8 @@ func (mysql *mysqlPlugin) ConnectionTimeout() time.Duration { } func (mysql *mysqlPlugin) Parse(pkt *protos.Packet, tcptuple *common.TCPTuple, - dir uint8, private protos.ProtocolData) protos.ProtocolData { - + dir uint8, private protos.ProtocolData, +) protos.ProtocolData { defer logp.Recover("ParseMysql exception") priv := mysqlPrivateData{} @@ -613,8 +609,8 @@ func (mysql *mysqlPlugin) Parse(pkt *protos.Packet, tcptuple *common.TCPTuple, } func (mysql *mysqlPlugin) GapInStream(tcptuple *common.TCPTuple, dir uint8, - nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool) { - + nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool, +) { defer logp.Recover("GapInStream(mysql) exception") if private == nil { @@ -642,16 +638,16 @@ func (mysql *mysqlPlugin) GapInStream(tcptuple *common.TCPTuple, dir uint8, } func (mysql *mysqlPlugin) ReceivedFin(tcptuple *common.TCPTuple, dir uint8, - private protos.ProtocolData) protos.ProtocolData { - + private protos.ProtocolData, +) protos.ProtocolData { // TODO: check if we have data pending and either drop it to free // memory or send it up the stack. return private } func handleMysql(mysql *mysqlPlugin, m *mysqlMessage, tcptuple *common.TCPTuple, - dir uint8, rawMsg []byte) { - + dir uint8, rawMsg []byte, +) { m.tcpTuple = *tcptuple m.direction = dir m.cmdlineTuple = mysql.watcher.FindProcessesTupleTCP(tcptuple.IPPort()) @@ -689,9 +685,10 @@ func (mysql *mysqlPlugin) receivedMysqlRequest(msg *mysqlMessage) { trans.statementID = msg.statementID stmts := mysql.getStmtsMap(msg.tcpTuple.Hashable()) if stmts == nil { - if msg.typ == mysqlCmdStmtExecute { + switch msg.typ { + case mysqlCmdStmtExecute: trans.query = "Request Execute Statement" - } else if msg.typ == mysqlCmdStmtClose { + case mysqlCmdStmtClose: trans.query = "Request Close Statement" } trans.notes = append(trans.notes, "The actual query being used is unknown") @@ -699,7 +696,8 @@ func (mysql *mysqlPlugin) receivedMysqlRequest(msg *mysqlMessage) { trans.bytesIn = msg.size return } - if msg.typ == mysqlCmdStmtExecute { + switch msg.typ { + case mysqlCmdStmtExecute: if value, ok := stmts[trans.statementID]; ok { trans.query = value.query // parse parameters @@ -711,7 +709,7 @@ func (mysql *mysqlPlugin) receivedMysqlRequest(msg *mysqlMessage) { trans.bytesIn = msg.size return } - } else if msg.typ == mysqlCmdStmtClose { + case mysqlCmdStmtClose: delete(stmts, trans.statementID) trans.query = "CmdStmtClose" mysql.transactions.Delete(tuple.Hashable()) @@ -899,7 +897,7 @@ func (mysql *mysqlPlugin) parseMysqlExecuteStatement(data []byte, stmtdata *mysq valueString := strconv.Itoa(int(binary.LittleEndian.Uint32(data[paramOffset:]))) paramString = append(paramString, valueString) paramOffset += 4 - //FIELD_TYPE_FLOAT + // FIELD_TYPE_FLOAT case 0x04: paramString = append(paramString, "TYPE_FLOAT") paramOffset += 4 @@ -1012,19 +1010,19 @@ func (mysql *mysqlPlugin) parseMysqlResponse(data []byte) ([]string, [][]string) return []string{}, [][]string{} } - fields := []string{} - rows := [][]string{} - if len(data) < 5 { - logp.Warn("Invalid response: data less than 4 bytes") + logp.Warn("Invalid response: data less than 5 bytes") return []string{}, [][]string{} } - if data[4] == 0x00 { + fields := []string{} + rows := [][]string{} + switch data[4] { + case 0x00: // OK response - } else if data[4] == 0xff { + case 0xff: // Error response - } else { + default: offset := 5 logp.Debug("mysql", "Data len: %d", len(data)) @@ -1100,7 +1098,7 @@ func (mysql *mysqlPlugin) parseMysqlResponse(data []byte) ([]string, [][]string) if data[offset+4] == 0xfe { // EOF - offset += length + 4 + offset += length + 4 // ineffassign break } diff --git a/packetbeat/protos/mysql/mysql_test.go b/packetbeat/protos/mysql/mysql_test.go index 309fd45cb0f..dd942399073 100644 --- a/packetbeat/protos/mysql/mysql_test.go +++ b/packetbeat/protos/mysql/mysql_test.go @@ -49,10 +49,6 @@ func (e *eventStore) publish(event beat.Event) { e.events = append(e.events, event) } -func (e *eventStore) empty() bool { - return len(e.events) == 0 -} - func mysqlModForTests(store *eventStore) *mysqlPlugin { callback := func(beat.Event) {} if store != nil { @@ -110,6 +106,7 @@ func TestMySQLParser_simpleRequest(t *testing.T) { t.Errorf("Wrong message size %d", stream.message.size) } } + func TestMySQLParser_OKResponse(t *testing.T) { data := []byte( "0700000100010401000000") @@ -363,11 +360,11 @@ func TestParseMySQL_simpleUpdateResponse(t *testing.T) { var tuple common.TCPTuple var private mysqlPrivateData - var countHandleMysql = 0 + countHandleMysql := 0 mysql.handleMysql = func(mysql *mysqlPlugin, m *mysqlMessage, tcp *common.TCPTuple, - dir uint8, raw_msg []byte) { - + dir uint8, raw_msg []byte, + ) { countHandleMysql++ } @@ -404,11 +401,11 @@ func TestParseMySQL_threeResponses(t *testing.T) { var tuple common.TCPTuple var private mysqlPrivateData - var countHandleMysql = 0 + countHandleMysql := 0 mysql.handleMysql = func(mysql *mysqlPlugin, m *mysqlMessage, tcptuple *common.TCPTuple, - dir uint8, raw_msg []byte) { - + dir uint8, raw_msg []byte, + ) { countHandleMysql++ } @@ -431,7 +428,6 @@ func TestParseMySQL_splitResponse(t *testing.T) { "3b00000303646566086d696e697477697404706f737404706f73740d706f73745f757365726e616d6508757365726e616d650c2100f0000000fd0000000000" + "3500000403646566086d696e697477697404706f737404706f73740a706f73745f7469746c65057469746c650c2100f0000000fd0000000000" + "3300000503646566086d696e697477697404706f737404706f737409706f73745f626f647904626f64790c2100fdff0200fc1000000000") - if err != nil { t.Errorf("Failed to decode string") } @@ -446,11 +442,11 @@ func TestParseMySQL_splitResponse(t *testing.T) { var tuple common.TCPTuple var private mysqlPrivateData - var countHandleMysql = 0 + countHandleMysql := 0 mysql.handleMysql = func(mysql *mysqlPlugin, m *mysqlMessage, tcptuple *common.TCPTuple, - dir uint8, raw_msg []byte) { - + dir uint8, raw_msg []byte, + ) { countHandleMysql++ } @@ -623,12 +619,18 @@ func Test_parseMysqlResponse_invalid(t *testing.T) { {0x05, 0x00, 0x00, 0x01, 0x01, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00}, {0x05, 0x00, 0x00, 0x01, 0x01, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00}, {0x05, 0x00, 0x00, 0x01, 0x01, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00}, - {0x05, 0x00, 0x00, 0x01, 0x01, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, - 0x01, 0x00}, - {0x15, 0x00, 0x00, 0x01, 0x01, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, - 0x01, 0x00, 0x01}, - {0x15, 0x00, 0x00, 0x01, 0x01, 0x05, 0x15, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, - 0x01, 0x00, 0x01, 0x00}, + { + 0x05, 0x00, 0x00, 0x01, 0x01, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, + 0x01, 0x00, + }, + { + 0x15, 0x00, 0x00, 0x01, 0x01, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, + 0x01, 0x00, 0x01, + }, + { + 0x15, 0x00, 0x00, 0x01, 0x01, 0x05, 0x15, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, + 0x01, 0x00, 0x01, 0x00, + }, } for _, input := range tests { @@ -638,12 +640,14 @@ func Test_parseMysqlResponse_invalid(t *testing.T) { } tests = [][]byte{ - {0x15, 0x00, 0x00, 0x01, 0x01, - 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xfe, 0x00, 0x01, //field + { + 0x15, 0x00, 0x00, 0x01, 0x01, + 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xfe, 0x00, 0x01, // field 0x01, 0x00, 0x00, 0x00, 0xfe, // EOF }, - {0x15, 0x00, 0x00, 0x01, 0x01, - 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xfe, 0x00, 0x01, //field + { + 0x15, 0x00, 0x00, 0x01, 0x01, + 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xfe, 0x00, 0x01, // field 0x01, 0x00, 0x00, 0x00, 0xfe, // EOF 0x00, 0x00, }, @@ -668,7 +672,7 @@ func Test_PreparedStatement(t *testing.T) { packet := protos.Packet{Payload: rawData} var private protos.ProtocolData - private = mysql.Parse(&packet, tcpTuple, dir, private) + mysql.Parse(&packet, tcpTuple, dir, private) } send(tcp.TCPDirectionOriginal, "c00000001673656c6563742064697374696e637420636f756e742864697374696e63742070757263686173656465305f2e69642920617320636f6c5f305f305f2066726f6d2070757263686173655f64656d616e642070757263686173656465305f2077686572652070757263686173656465305f2e636861696e5f6d61737465723d3f20616e642070757263686173656465305f2e6372656174655f74696d653e3d3f20616e642070757263686173656465305f2e6372656174655f74696d653c3d3f") diff --git a/packetbeat/protos/nfs/config.go b/packetbeat/protos/nfs/config.go index 639bdad525d..e23672024c8 100644 --- a/packetbeat/protos/nfs/config.go +++ b/packetbeat/protos/nfs/config.go @@ -27,10 +27,8 @@ type rpcConfig struct { config.ProtocolCommon `config:",inline"` } -var ( - defaultConfig = rpcConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: 1 * time.Minute, - }, - } -) +var defaultConfig = rpcConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: 1 * time.Minute, + }, +} diff --git a/packetbeat/protos/nfs/request_handler.go b/packetbeat/protos/nfs/request_handler.go index fea417f4dc1..1225f9f6012 100644 --- a/packetbeat/protos/nfs/request_handler.go +++ b/packetbeat/protos/nfs/request_handler.go @@ -41,9 +41,7 @@ var acceptStatus = [...]string{ "system_err", } -var ( - unmatchedRequests = monitoring.NewInt(nil, "nfs.unmatched_requests") -) +var unmatchedRequests = monitoring.NewInt(nil, "nfs.unmatched_requests") // called by Cache, when re reply seen within expected time window func (r *rpc) handleExpiredPacket(nfs *nfs) { diff --git a/packetbeat/protos/nfs/rpc.go b/packetbeat/protos/nfs/rpc.go index 9cde7ab5aac..64fffe47606 100644 --- a/packetbeat/protos/nfs/rpc.go +++ b/packetbeat/protos/nfs/rpc.go @@ -126,7 +126,6 @@ func (r *rpc) Parse( dir uint8, private protos.ProtocolData, ) protos.ProtocolData { - defer logp.Recover("ParseRPC exception") conn := ensureRPCConnection(private) @@ -140,8 +139,8 @@ func (r *rpc) Parse( // Called when the FIN flag is seen in the TCP stream. func (r *rpc) ReceivedFin(tcptuple *common.TCPTuple, dir uint8, - private protos.ProtocolData) protos.ProtocolData { - + private protos.ProtocolData, +) protos.ProtocolData { defer logp.Recover("ReceivedFinRpc exception") // forced by TCP interface @@ -151,8 +150,8 @@ func (r *rpc) ReceivedFin(tcptuple *common.TCPTuple, dir uint8, // Called when a packets are missing from the tcp // stream. func (r *rpc) GapInStream(tcptuple *common.TCPTuple, dir uint8, - nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool) { - + nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool, +) { defer logp.Recover("GapInRpcStream exception") // forced by TCP interface @@ -199,7 +198,6 @@ func (r *rpc) handleRPCFragment( tcptuple *common.TCPTuple, dir uint8, ) *rpcConnectionData { - st := conn.streams[dir] if st == nil { st = newStream(pkt, tcptuple) diff --git a/packetbeat/protos/nfs/xdr.go b/packetbeat/protos/nfs/xdr.go index de63fc755a2..168fb274cfd 100644 --- a/packetbeat/protos/nfs/xdr.go +++ b/packetbeat/protos/nfs/xdr.go @@ -40,24 +40,12 @@ func (r *xdr) size() int { return len(r.data) } -func (r *xdr) getInt() int32 { - i := int32(binary.BigEndian.Uint32(r.data[r.offset : r.offset+4])) - r.offset += 4 - return int32(i) -} - func (r *xdr) getUInt() uint32 { i := uint32(binary.BigEndian.Uint32(r.data[r.offset : r.offset+4])) r.offset += 4 return i } -func (r *xdr) getHyper() int64 { - i := int64(binary.BigEndian.Uint64(r.data[r.offset : r.offset+8])) - r.offset += 8 - return i -} - func (r *xdr) getUHyper() uint64 { i := uint64(binary.BigEndian.Uint64(r.data[r.offset : r.offset+8])) r.offset += 8 diff --git a/packetbeat/protos/pgsql/config.go b/packetbeat/protos/pgsql/config.go index 54a9a1b9e2e..13c11531409 100644 --- a/packetbeat/protos/pgsql/config.go +++ b/packetbeat/protos/pgsql/config.go @@ -28,12 +28,10 @@ type pgsqlConfig struct { MaxRows int `config:"max_rows"` } -var ( - defaultConfig = pgsqlConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - MaxRowLength: 1024, - MaxRows: 10, - } -) +var defaultConfig = pgsqlConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + MaxRowLength: 1024, + MaxRows: 10, +} diff --git a/packetbeat/protos/pgsql/parse.go b/packetbeat/protos/pgsql/parse.go index a7bcdb44770..9a302f99a18 100644 --- a/packetbeat/protos/pgsql/parse.go +++ b/packetbeat/protos/pgsql/parse.go @@ -158,7 +158,7 @@ func (pgsql *pgsqlPlugin) parseSimpleQuery(s *pgsqlStream, length int) (bool, bo m.start = s.parseOffset m.isRequest = true - s.parseOffset++ //type + s.parseOffset++ // type s.parseOffset += length m.end = s.parseOffset m.size = uint64(m.end - m.start) @@ -190,8 +190,8 @@ func (pgsql *pgsqlPlugin) parseRowDescription(s *pgsqlStream, length int) (bool, } pgsql.detailf("Fields: %s", m.fields) - s.parseOffset++ //type - s.parseOffset += length //length + s.parseOffset++ // type + s.parseOffset += length // length s.parseState = pgsqlGetDataState return pgsql.parseMessageData(s) } @@ -238,7 +238,7 @@ func (pgsql *pgsqlPlugin) parseCommandComplete(s *pgsqlStream, length int) (bool m.isOK = true m.toExport = true - s.parseOffset++ //type + s.parseOffset++ // type name, err := pgsqlString(s.data[s.parseOffset+4:], length-4) if err != nil { return false, false @@ -276,10 +276,10 @@ func (pgsql *pgsqlPlugin) parseErrorResponse(s *pgsqlStream, length int) (bool, m.isError = true m.toExport = true - s.parseOffset++ //type + s.parseOffset++ // type pgsql.parseError(s, s.data[s.parseOffset+4:s.parseOffset+length]) - s.parseOffset += length //length + s.parseOffset += length // length m.end = s.parseOffset m.size = uint64(m.end - m.start) @@ -294,7 +294,7 @@ func (pgsql *pgsqlPlugin) parseExtReq(s *pgsqlStream, length int) (bool, bool) { m.start = s.parseOffset m.isRequest = true - s.parseOffset++ //type + s.parseOffset++ // type s.parseOffset += length m.end = s.parseOffset m.size = uint64(m.end - m.start) @@ -326,7 +326,7 @@ func (pgsql *pgsqlPlugin) parseExtResp(s *pgsqlStream, length int) (bool, bool) m.isOK = true m.toExport = true - s.parseOffset++ //type + s.parseOffset++ // type s.parseOffset += length pgsql.detailf("Parse completion in an extended query response") s.parseState = pgsqlGetDataState @@ -336,7 +336,7 @@ func (pgsql *pgsqlPlugin) parseExtResp(s *pgsqlStream, length int) (bool, bool) func (pgsql *pgsqlPlugin) parseSkipMessage(s *pgsqlStream, length int) (bool, bool) { // TODO: add info from NoticeResponse in case there are warning messages for a query // ignore command - s.parseOffset++ //type + s.parseOffset++ // type s.parseOffset += length m := s.message @@ -615,21 +615,21 @@ func (pgsql *pgsqlPlugin) parseMessageExtendedQuery(s *pgsqlStream) (bool, bool) // skip type s.parseOffset++ s.parseOffset += length - //TODO: pgsql.parseBind(s) + // TODO: pgsql.parseBind(s) case 'D': // Bind -> Describe // skip type s.parseOffset++ s.parseOffset += length - //TODO: pgsql.parseDescribe(s) + // TODO: pgsql.parseDescribe(s) case 'E': // Bind(or Describe) -> Execute // skip type s.parseOffset++ s.parseOffset += length - //TODO: pgsql.parseExecute(s) + // TODO: pgsql.parseExecute(s) case 'S': // Execute -> Sync diff --git a/packetbeat/protos/pgsql/pgsql.go b/packetbeat/protos/pgsql/pgsql.go index 5ad6f6e305a..20ad2fc5461 100644 --- a/packetbeat/protos/pgsql/pgsql.go +++ b/packetbeat/protos/pgsql/pgsql.go @@ -126,13 +126,9 @@ const ( cancelRequest ) -var ( - errInvalidLength = errors.New("invalid length") -) +var errInvalidLength = errors.New("invalid length") -var ( - unmatchedResponses = monitoring.NewInt(nil, "pgsql.unmatched_responses") -) +var unmatchedResponses = monitoring.NewInt(nil, "pgsql.unmatched_responses") func init() { protos.Register("pgsql", New) @@ -240,8 +236,8 @@ func (pgsql *pgsqlPlugin) ConnectionTimeout() time.Duration { } func (pgsql *pgsqlPlugin) Parse(pkt *protos.Packet, tcptuple *common.TCPTuple, - dir uint8, private protos.ProtocolData) protos.ProtocolData { - + dir uint8, private protos.ProtocolData, +) protos.ProtocolData { defer logp.Recover("ParsePgsql exception") priv := pgsqlPrivateData{} @@ -334,8 +330,8 @@ func messageHasEnoughData(msg *pgsqlMessage) bool { // Called when there's a drop packet func (pgsql *pgsqlPlugin) GapInStream(tcptuple *common.TCPTuple, dir uint8, - nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool) { - + nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool, +) { defer logp.Recover("GapInPgsqlStream exception") if private == nil { @@ -378,8 +374,8 @@ func (pgsql *pgsqlPlugin) ReceivedFin(tcptuple *common.TCPTuple, dir uint8, } var handlePgsql = func(pgsql *pgsqlPlugin, m *pgsqlMessage, tcptuple *common.TCPTuple, - dir uint8, raw_msg []byte) { - + dir uint8, raw_msg []byte, +) { m.tcpTuple = *tcptuple m.direction = dir m.cmdlineTuple = pgsql.watcher.FindProcessesTupleTCP(tcptuple.IPPort()) @@ -433,7 +429,7 @@ func (pgsql *pgsqlPlugin) receivedPgsqlRequest(msg *pgsqlMessage) { func (pgsql *pgsqlPlugin) receivedPgsqlResponse(msg *pgsqlMessage) { tuple := msg.tcpTuple transList := pgsql.getTransaction(tuple.Hashable()) - if transList == nil || len(transList) == 0 { + if len(transList) == 0 { pgsql.debugf("Response from unknown transaction. Ignoring.") unmatchedResponses.Add(1) return @@ -511,8 +507,8 @@ func (pgsql *pgsqlPlugin) publishTransaction(t *pgsqlTransaction) { } func (pgsql *pgsqlPlugin) removeTransaction(transList []*pgsqlTransaction, - tuple common.TCPTuple, index int) *pgsqlTransaction { - + tuple common.TCPTuple, index int, +) *pgsqlTransaction { trans := transList[index] transList = append(transList[:index], transList[index+1:]...) if len(transList) == 0 { diff --git a/packetbeat/protos/pgsql/pgsql_test.go b/packetbeat/protos/pgsql/pgsql_test.go index 328b31e28c2..82075eaacae 100644 --- a/packetbeat/protos/pgsql/pgsql_test.go +++ b/packetbeat/protos/pgsql/pgsql_test.go @@ -46,10 +46,6 @@ func (e *eventStore) publish(event beat.Event) { e.events = append(e.events, event) } -func (e *eventStore) empty() bool { - return len(e.events) == 0 -} - func pgsqlModForTests(store *eventStore) *pgsqlPlugin { callback := func(beat.Event) {} if store != nil { @@ -234,11 +230,11 @@ func TestPgsqlParser_threeResponses(t *testing.T) { } var tuple common.TCPTuple var private pgsqlPrivateData - var countHandlePgsql = 0 + countHandlePgsql := 0 pgsql.handlePgsql = func(pgsql *pgsqlPlugin, m *pgsqlMessage, tcptuple *common.TCPTuple, - dir uint8, raw_msg []byte) { - + dir uint8, raw_msg []byte, + ) { countHandlePgsql++ } diff --git a/packetbeat/protos/protos.go b/packetbeat/protos/protos.go index e0343a0ee87..39dc09d8b7d 100644 --- a/packetbeat/protos/protos.go +++ b/packetbeat/protos/protos.go @@ -79,7 +79,6 @@ type Protocols interface { BpfFilter(withVlans bool, withICMP bool) string GetTCP(proto Protocol) TCPPlugin GetUDP(proto Protocol) UDPPlugin - GetAllTCP() map[Protocol]TCPPlugin GetAllUDP() map[Protocol]UDPPlugin diff --git a/packetbeat/protos/protos_test.go b/packetbeat/protos/protos_test.go index 22269a192d2..b3c1a912069 100644 --- a/packetbeat/protos/protos_test.go +++ b/packetbeat/protos/protos_test.go @@ -70,9 +70,7 @@ func (proto *UDPProtocol) GetPorts() []int { return proto.Ports } -func (proto *UDPProtocol) ParseUDP(pkt *Packet) { - return -} +func (proto *UDPProtocol) ParseUDP(pkt *Packet) {} type TCPUDPProtocol TestProtocol @@ -99,9 +97,7 @@ func (proto *TCPUDPProtocol) GapInStream(tcptuple *common.TCPTuple, dir uint8, return private, true } -func (proto *TCPUDPProtocol) ParseUDP(pkt *Packet) { - return -} +func (proto *TCPUDPProtocol) ParseUDP(pkt *Packet) {} func (proto *TCPUDPProtocol) ConnectionTimeout() time.Duration { return 0 } diff --git a/packetbeat/protos/redis/config.go b/packetbeat/protos/redis/config.go index beb1caed2e2..a1fd48f4149 100644 --- a/packetbeat/protos/redis/config.go +++ b/packetbeat/protos/redis/config.go @@ -27,14 +27,12 @@ type redisConfig struct { QueueLimits MessageQueueConfig `config:",inline"` } -var ( - defaultConfig = redisConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - QueueLimits: MessageQueueConfig{ - MaxBytes: 1024 * 1024, - MaxMessages: 20000, - }, - } -) +var defaultConfig = redisConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + QueueLimits: MessageQueueConfig{ + MaxBytes: 1024 * 1024, + MaxMessages: 20000, + }, +} diff --git a/packetbeat/protos/redis/redis.go b/packetbeat/protos/redis/redis.go index 23dd1ad8696..a219e8a14f9 100644 --- a/packetbeat/protos/redis/redis.go +++ b/packetbeat/protos/redis/redis.go @@ -140,6 +140,7 @@ func (redis *redisPlugin) Parse( } return conn } + func (redis *redisPlugin) newConnectionData() *redisConnectionData { return &redisConnectionData{ requests: NewMessageQueue(redis.queueConfig), @@ -171,7 +172,6 @@ func (redis *redisPlugin) doParse( tcptuple *common.TCPTuple, dir uint8, ) *redisConnectionData { - st := conn.streams[dir] if st == nil { st = newStream(pkt.Ts, tcptuple) @@ -339,8 +339,8 @@ func (redis *redisPlugin) newTransaction(requ, resp *redisMessage) beat.Event { } func (redis *redisPlugin) GapInStream(tcptuple *common.TCPTuple, dir uint8, - nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool) { - + nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool, +) { // tsg: being packet loss tolerant is probably not very useful for Redis, // because most requests/response tend to fit in a single packet. @@ -348,8 +348,8 @@ func (redis *redisPlugin) GapInStream(tcptuple *common.TCPTuple, dir uint8, } func (redis *redisPlugin) ReceivedFin(tcptuple *common.TCPTuple, dir uint8, - private protos.ProtocolData) protos.ProtocolData { - + private protos.ProtocolData, +) protos.ProtocolData { // TODO: check if we have pending data that we can send up the stack return private diff --git a/packetbeat/protos/sip/config.go b/packetbeat/protos/sip/config.go index 58a92606e80..309558a225f 100644 --- a/packetbeat/protos/sip/config.go +++ b/packetbeat/protos/sip/config.go @@ -29,13 +29,11 @@ type config struct { KeepOriginal bool `config:"keep_original"` } -var ( - defaultConfig = config{ - ProtocolCommon: cfg.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - ParseAuthorization: true, - ParseBody: true, - KeepOriginal: true, - } -) +var defaultConfig = config{ + ProtocolCommon: cfg.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + ParseAuthorization: true, + ParseBody: true, + KeepOriginal: true, +} diff --git a/packetbeat/protos/sip/parser.go b/packetbeat/protos/sip/parser.go index 8d49ad61742..db63f05b429 100644 --- a/packetbeat/protos/sip/parser.go +++ b/packetbeat/protos/sip/parser.go @@ -269,8 +269,7 @@ func parseVersion(s []byte) (uint8, uint8, error) { func (parser *parser) parseHeaders(pi *parsingInfo, m *message) error { // check if it isn't headers end yet with /r/n/r/n - if !(len(pi.data)-pi.parseOffset >= 2 && - bytes.Equal(pi.data[pi.parseOffset:pi.parseOffset+2], constCRLF)) { + if len(pi.data)-pi.parseOffset < 2 || !bytes.Equal(pi.data[pi.parseOffset:pi.parseOffset+2], constCRLF) { offset, err := parser.parseHeader(m, pi.data[pi.parseOffset:]) if err != nil { return err diff --git a/packetbeat/protos/tcp/tcp.go b/packetbeat/protos/tcp/tcp.go index e9db7b94897..51ac46346a0 100644 --- a/packetbeat/protos/tcp/tcp.go +++ b/packetbeat/protos/tcp/tcp.go @@ -61,9 +61,7 @@ type Processor interface { Process(flow *flows.FlowID, hdr *layers.TCP, pkt *protos.Packet) } -var ( - droppedBecauseOfGaps = monitoring.NewInt(nil, "tcp.dropped_because_of_gaps") -) +var droppedBecauseOfGaps = monitoring.NewInt(nil, "tcp.dropped_because_of_gaps") type seqCompare int @@ -271,7 +269,8 @@ func (tcp *TCP) getStream(pkt *protos.Packet) (stream TCPStream, created bool) { id: tcp.getID(), tuple: &pkt.Tuple, protocol: protocol, - tcp: tcp} + tcp: tcp, + } conn.tcptuple = common.TCPTupleFromIPPort(conn.tuple, conn.id) tcp.streams.PutWithTimeout(pkt.Tuple.Hashable(), conn, timeout) return TCPStream{conn: conn, dir: TCPDirectionOriginal}, true @@ -289,16 +288,12 @@ func tcpSeqCompare(seq1, seq2 uint32) seqCompare { } } -func tcpSeqBefore(seq1 uint32, seq2 uint32) bool { - return int32(seq1-seq2) < 0 -} - func tcpSeqBeforeEq(seq1 uint32, seq2 uint32) bool { return int32(seq1-seq2) <= 0 } func buildPortsMap(plugins map[protos.Protocol]protos.TCPPlugin) (map[uint16]protos.Protocol, error) { - var res = map[uint16]protos.Protocol{} + res := map[uint16]protos.Protocol{} for proto, protoPlugin := range plugins { for _, port := range protoPlugin.GetPorts() { diff --git a/packetbeat/protos/tcp/tcp_test.go b/packetbeat/protos/tcp/tcp_test.go index 9dd910799b6..5678924a7d6 100644 --- a/packetbeat/protos/tcp/tcp_test.go +++ b/packetbeat/protos/tcp/tcp_test.go @@ -41,9 +41,7 @@ const ( ClientIP = "10.0.0.1" ) -var ( - httpProtocol, mysqlProtocol, redisProtocol protos.Protocol -) +var httpProtocol, mysqlProtocol, redisProtocol protos.Protocol func init() { new := func(_ bool, _ protos.Reporter, _ procs.ProcessesWatcher, _ *common.Config) (protos.Plugin, error) { @@ -199,7 +197,7 @@ func (p protocols) GetUDP(proto protos.Protocol) protos.UDPPlugin { retur func (p protocols) GetAll() map[protos.Protocol]protos.Plugin { return nil } func (p protocols) GetAllTCP() map[protos.Protocol]protos.TCPPlugin { return p.tcp } func (p protocols) GetAllUDP() map[protos.Protocol]protos.UDPPlugin { return nil } -func (p protocols) Register(proto protos.Protocol, plugin protos.Plugin) { return } +func (p protocols) Register(proto protos.Protocol, plugin protos.Plugin) {} func TestTCSeqPayload(t *testing.T) { type segment struct { @@ -213,7 +211,8 @@ func TestTCSeqPayload(t *testing.T) { expectedGaps int expectedState []byte }{ - {"No overlap", + { + "No overlap", []segment{ {1, []byte{1, 2, 3, 4, 5}}, {6, []byte{6, 7, 8, 9, 10}}, @@ -221,7 +220,8 @@ func TestTCSeqPayload(t *testing.T) { 0, []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, }, - {"Gap drop state", + { + "Gap drop state", []segment{ {1, []byte{1, 2, 3, 4}}, {15, []byte{5, 6, 7, 8}}, @@ -229,7 +229,8 @@ func TestTCSeqPayload(t *testing.T) { 10, []byte{5, 6, 7, 8}, }, - {"ACK same sequence number", + { + "ACK same sequence number", []segment{ {1, []byte{1, 2}}, {3, nil}, @@ -239,7 +240,8 @@ func TestTCSeqPayload(t *testing.T) { 0, []byte{1, 2, 3, 4, 5, 6}, }, - {"ACK same sequence number 2", + { + "ACK same sequence number 2", []segment{ {1, nil}, {2, nil}, @@ -253,7 +255,8 @@ func TestTCSeqPayload(t *testing.T) { 0, []byte{1, 2, 3, 4, 5, 6, 7, 8}, }, - {"Overlap, first segment bigger", + { + "Overlap, first segment bigger", []segment{ {1, []byte{1, 2}}, {3, []byte{3, 4}}, @@ -263,7 +266,8 @@ func TestTCSeqPayload(t *testing.T) { 0, []byte{1, 2, 3, 4, 5, 6}, }, - {"Overlap, second segment bigger", + { + "Overlap, second segment bigger", []segment{ {1, []byte{1, 2}}, {3, []byte{3}}, @@ -273,7 +277,8 @@ func TestTCSeqPayload(t *testing.T) { 0, []byte{1, 2, 3, 4, 5, 6}, }, - {"Overlap, covered", + { + "Overlap, covered", []segment{ {1, []byte{1, 2, 3, 4}}, {2, []byte{2, 3}}, diff --git a/packetbeat/protos/thrift/config.go b/packetbeat/protos/thrift/config.go index f687da9ac0c..0d946a02438 100644 --- a/packetbeat/protos/thrift/config.go +++ b/packetbeat/protos/thrift/config.go @@ -34,16 +34,14 @@ type thriftConfig struct { IdlFiles []string `config:"idl_files"` } -var ( - defaultConfig = thriftConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - StringMaxSize: 200, - CollectionMaxSize: 15, - DropAfterNStructFields: 500, - TransportType: "socket", - ProtocolType: "binary", - CaptureReply: true, - } -) +var defaultConfig = thriftConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + StringMaxSize: 200, + CollectionMaxSize: 15, + DropAfterNStructFields: 500, + TransportType: "socket", + ProtocolType: "binary", + CaptureReply: true, +} diff --git a/packetbeat/protos/thrift/thrift.go b/packetbeat/protos/thrift/thrift.go index d9778031d76..04c73747f7f 100644 --- a/packetbeat/protos/thrift/thrift.go +++ b/packetbeat/protos/thrift/thrift.go @@ -656,8 +656,8 @@ func (thrift *thriftPlugin) readStruct(data []byte) (value string, ok bool, comp } func (thrift *thriftPlugin) formatStruct(fields []thriftField, resolveNames bool, - fieldnames []*string) string { - + fieldnames []*string, +) string { toJoin := []string{} for i, field := range fields { if i == thrift.collectionMaxSize { @@ -746,7 +746,7 @@ func (thrift *thriftPlugin) readField(s *thriftStream) (ok bool, complete bool, func (thrift *thriftPlugin) messageParser(s *thriftStream) (bool, bool) { var ok, complete bool - var m = s.message + m := s.message logp.Debug("thriftdetailed", "messageParser called parseState=%v offset=%v", s.parseState, s.parseOffset) @@ -860,7 +860,7 @@ func (stream *thriftStream) prepareForNewMessage(flush bool) { } else { stream.data = stream.data[stream.parseOffset:] } - //logp.Debug("thrift", "remaining data: [%s]", stream.data) + // logp.Debug("thrift", "remaining data: [%s]", stream.data) stream.parseOffset = 0 stream.message = nil stream.parseState = thriftStartState @@ -871,8 +871,8 @@ type thriftPrivateData struct { } func (thrift *thriftPlugin) messageComplete(tcptuple *common.TCPTuple, dir uint8, - stream *thriftStream, priv *thriftPrivateData) { - + stream *thriftStream, priv *thriftPrivateData, +) { flush := false if stream.message.isRequest { @@ -906,7 +906,6 @@ func (thrift *thriftPlugin) messageComplete(tcptuple *common.TCPTuple, dir uint8 // and reset message stream.prepareForNewMessage(flush) - } func (thrift *thriftPlugin) ConnectionTimeout() time.Duration { @@ -914,8 +913,8 @@ func (thrift *thriftPlugin) ConnectionTimeout() time.Duration { } func (thrift *thriftPlugin) Parse(pkt *protos.Packet, tcptuple *common.TCPTuple, dir uint8, - private protos.ProtocolData) protos.ProtocolData { - + private protos.ProtocolData, +) protos.ProtocolData { defer logp.Recover("ParseThrift exception") priv := thriftPrivateData{} @@ -1040,8 +1039,8 @@ func (thrift *thriftPlugin) receivedReply(msg *thriftMessage) { } func (thrift *thriftPlugin) ReceivedFin(tcptuple *common.TCPTuple, dir uint8, - private protos.ProtocolData) protos.ProtocolData { - + private protos.ProtocolData, +) protos.ProtocolData { trans := thrift.getTransaction(tcptuple.Hashable()) if trans != nil { if trans.request != nil && trans.reply == nil { @@ -1055,8 +1054,8 @@ func (thrift *thriftPlugin) ReceivedFin(tcptuple *common.TCPTuple, dir uint8, } func (thrift *thriftPlugin) GapInStream(tcptuple *common.TCPTuple, dir uint8, - nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool) { - + nbytes int, private protos.ProtocolData) (priv protos.ProtocolData, drop bool, +) { defer logp.Recover("GapInStream(thrift) exception") logp.Debug("thriftdetailed", "GapInStream called") diff --git a/packetbeat/protos/thrift/thrift_idl.go b/packetbeat/protos/thrift/thrift_idl.go index 82d8dedbe93..8bc8bec5b3b 100644 --- a/packetbeat/protos/thrift/thrift_idl.go +++ b/packetbeat/protos/thrift/thrift_idl.go @@ -49,7 +49,7 @@ func fieldsToArrayByID(fields []*parser.Field) []*string { } } - output := make([]*string, max+1, max+1) + output := make([]*string, max+1) for _, field := range fields { if len(field.Name) > 0 { diff --git a/packetbeat/protos/thrift/thrift_test.go b/packetbeat/protos/thrift/thrift_test.go index b5377eb4665..0938c60a3be 100644 --- a/packetbeat/protos/thrift/thrift_test.go +++ b/packetbeat/protos/thrift/thrift_test.go @@ -122,7 +122,6 @@ func TestThrift_readMessageBegin(t *testing.T) { data, _ = hex.DecodeString("800100010000000570696e6700000001") stream = thriftStream{data: data, message: new(thriftMessage)} - m = stream.message ok, complete = thrift.readMessageBegin(&stream) if !ok || complete { t.Errorf("Bad result: %v %v", ok, complete) @@ -130,7 +129,6 @@ func TestThrift_readMessageBegin(t *testing.T) { data, _ = hex.DecodeString("800100010000000570696e6700000001") stream = thriftStream{data: data, message: new(thriftMessage)} - m = stream.message ok, complete = thrift.readMessageBegin(&stream) if !ok || complete { t.Errorf("Bad result: %v %v", ok, complete) @@ -150,7 +148,6 @@ func TestThrift_readMessageBegin(t *testing.T) { data, _ = hex.DecodeString("0000000570696e670100000000") stream = thriftStream{data: data, message: new(thriftMessage)} - m = stream.message ok, complete = thrift.readMessageBegin(&stream) if !ok || complete { t.Error("Bad result:", ok, complete) diff --git a/packetbeat/protos/tls/alerts.go b/packetbeat/protos/tls/alerts.go index 4713e7e81f6..4da5c7d5b75 100644 --- a/packetbeat/protos/tls/alerts.go +++ b/packetbeat/protos/tls/alerts.go @@ -25,8 +25,10 @@ import ( "github.com/elastic/beats/v7/libbeat/logp" ) -type alertSeverity uint8 -type alertCode uint8 +type ( + alertSeverity uint8 + alertCode uint8 +) type alert struct { severity alertSeverity @@ -67,9 +69,7 @@ var alertNames = map[alertCode]string{ 115: "unknown_psk_identity", } -var ( - errRead = errors.New("Buffer read error") -) +var errRead = errors.New("Buffer read error") func (severity alertSeverity) String() string { switch severity { diff --git a/packetbeat/protos/tls/algos.go b/packetbeat/protos/tls/algos.go index b3ba6ea1867..8abd7021b67 100644 --- a/packetbeat/protos/tls/algos.go +++ b/packetbeat/protos/tls/algos.go @@ -22,11 +22,13 @@ import ( "fmt" ) -type cipherSuite uint16 -type signatureScheme uint16 -type pointsGroup uint16 -type compressionMethod uint8 -type ecPointsFormat uint8 +type ( + cipherSuite uint16 + signatureScheme uint16 + pointsGroup uint16 + compressionMethod uint8 + ecPointsFormat uint8 +) // from https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-4 var cipherSuites = map[cipherSuite]string{ @@ -440,26 +442,26 @@ var supportedGroups = map[pointsGroup]string{ } var signatureSchemes = map[signatureScheme]string{ - /* RSASSA-PKCS1-v1_5 algorithms */ + // RSASSA-PKCS1-v1_5 algorithms 0x0401: "rsa_pkcs1_sha256", 0x0501: "rsa_pkcs1_sha384", 0x0601: "rsa_pkcs1_sha512", - /* ECDSA algorithms */ + // ECDSA algorithms 0x0403: "ecdsa_secp256r1_sha256", 0x0503: "ecdsa_secp384r1_sha384", 0x0603: "ecdsa_secp521r1_sha512", - /* RSASSA-PSS algorithms */ + // RSASSA-PSS algorithms 0x0804: "rsa_pss_sha256", 0x0805: "rsa_pss_sha384", 0x0806: "rsa_pss_sha512", - /* EdDSA algorithms */ + // EdDSA algorithms 0x0807: "ed25519", 0x0808: "ed448", - /* Legacy algorithms */ + // Legacy algorithms 0x0201: "rsa_pkcs1_sha1", 0x0203: "ecdsa_sha1", } diff --git a/packetbeat/protos/tls/config.go b/packetbeat/protos/tls/config.go index 775a8f69cc1..2190ccc18dd 100644 --- a/packetbeat/protos/tls/config.go +++ b/packetbeat/protos/tls/config.go @@ -30,13 +30,11 @@ type tlsConfig struct { Fingerprints []string `config:"fingerprints"` } -var ( - defaultConfig = tlsConfig{ - ProtocolCommon: config.ProtocolCommon{ - TransactionTimeout: protos.DefaultTransactionExpiration, - }, - SendCertificates: true, - IncludeDetailedFields: true, - Fingerprints: []string{"sha1"}, - } -) +var defaultConfig = tlsConfig{ + ProtocolCommon: config.ProtocolCommon{ + TransactionTimeout: protos.DefaultTransactionExpiration, + }, + SendCertificates: true, + IncludeDetailedFields: true, + Fingerprints: []string{"sha1"}, +} diff --git a/packetbeat/protos/tls/extensions.go b/packetbeat/protos/tls/extensions.go index 0021705c7f7..1ffceb3c235 100644 --- a/packetbeat/protos/tls/extensions.go +++ b/packetbeat/protos/tls/extensions.go @@ -35,12 +35,14 @@ type Extensions struct { InOrder []ExtensionID } -type extensionParser func(reader bufferView) interface{} -type extension struct { - label string - parser extensionParser - saveRaw bool -} +type ( + extensionParser func(reader bufferView) interface{} + extension struct { + label string + parser extensionParser + saveRaw bool + } +) const ( // ExtensionSupportedGroups identifies the supported group extension @@ -72,7 +74,6 @@ var extensionMap = map[uint16]extension{ // ParseExtensions returns an Extensions object parsed from the supplied buffer func ParseExtensions(buffer bufferView) Extensions { - var extensionsLength uint16 if !buffer.read16Net(0, &extensionsLength) || extensionsLength == 0 { // No extensions diff --git a/packetbeat/protos/tls/extensions_test.go b/packetbeat/protos/tls/extensions_test.go index 23caec09019..c61937411a9 100644 --- a/packetbeat/protos/tls/extensions_test.go +++ b/packetbeat/protos/tls/extensions_test.go @@ -27,7 +27,6 @@ import ( ) func TestSni(t *testing.T) { - // Single element buf := mkBuf(t, "000d"+ // 13 bytes @@ -126,7 +125,6 @@ func TestSni(t *testing.T) { } func TestParseMaxFragmentLength(t *testing.T) { - r := parseMaxFragmentLen(*mkBuf(t, "01", 1)) assert.Equal(t, "2^9", r.(string)) r = parseMaxFragmentLen(*mkBuf(t, "04", 1)) diff --git a/packetbeat/protos/tls/fingerprint.go b/packetbeat/protos/tls/fingerprint.go index 8768ff448e7..70489b687f9 100644 --- a/packetbeat/protos/tls/fingerprint.go +++ b/packetbeat/protos/tls/fingerprint.go @@ -36,8 +36,10 @@ type FingerprintAlgorithm struct { algo AlgorithmFactory } -var hashMap = make(map[string]*FingerprintAlgorithm) -var hashNames []string +var ( + hashMap = make(map[string]*FingerprintAlgorithm) + hashNames []string +) func init() { registerAlgo(func() hash.Hash { return md5.New() }, "md5", "") diff --git a/packetbeat/protos/tls/ja3.go b/packetbeat/protos/tls/ja3.go index 6e6faf5e26c..09a0aec5ea4 100644 --- a/packetbeat/protos/tls/ja3.go +++ b/packetbeat/protos/tls/ja3.go @@ -25,7 +25,6 @@ import ( ) func getJa3Fingerprint(hello *helloMessage) (hash string, ja3str string) { - // build the array of arrays of numbers data := make([][]uint16, 5) diff --git a/packetbeat/protos/tls/parse.go b/packetbeat/protos/tls/parse.go index d0ec3be75ef..fa4515e2248 100644 --- a/packetbeat/protos/tls/parse.go +++ b/packetbeat/protos/tls/parse.go @@ -54,9 +54,9 @@ type recordType uint8 const ( recordTypeChangeCipherSpec recordType = 20 - recordTypeAlert = 21 - recordTypeHandshake = 22 - recordTypeApplicationData = 23 + recordTypeAlert recordType = 21 + recordTypeHandshake recordType = 22 + recordTypeApplicationData recordType = 23 ) type handshakeType uint8 @@ -169,8 +169,10 @@ func readHandshakeHeader(buf *streambuf.Buffer) (*handshakeHeader, error) { if len16, err = buf.ReadNetUint16At(2); err != nil { return nil, err } - return &handshakeHeader{handshakeType(typ), - int(len16) | (int(len8) << 16)}, nil + return &handshakeHeader{ + handshakeType(typ), + int(len16) | (int(len8) << 16), + }, nil } func (header *recordHeader) String() string { @@ -215,7 +217,6 @@ func (hello *helloMessage) supportedCiphers() []string { } func (parser *parser) parse(buf *streambuf.Buffer) parserResult { - for buf.Avail(recordHeaderSize) { header, err := readRecordHeader(buf) diff --git a/packetbeat/protos/tls/parse_test.go b/packetbeat/protos/tls/parse_test.go index 37f4a1b1956..f599b30c44c 100644 --- a/packetbeat/protos/tls/parse_test.go +++ b/packetbeat/protos/tls/parse_test.go @@ -125,12 +125,6 @@ func mapGet(t *testing.T, m common.MapStr, key string) interface{} { return value } -func mapInt(t *testing.T, m common.MapStr, key string) uint32 { - value, err := m.GetValue(key) - assert.NoError(t, err) - return value.(uint32) -} - func TestParseRecordHeader(t *testing.T) { if testing.Verbose() { isDebug = true @@ -173,6 +167,7 @@ func TestParseHandshakeHeader(t *testing.T) { _, err = readHandshakeHeader(sBuf(t, "112233")) assert.Error(t, err) header, err := readHandshakeHeader(sBuf(t, "11223344")) + assert.NoError(t, err) assert.Equal(t, handshakeType(0x11), header.handshakeType) assert.Equal(t, 0x223344, header.length) } @@ -202,7 +197,6 @@ func TestParserParse(t *testing.T) { // Certificate request assert.Equal(t, resultOK, parser.parse(sBuf(t, "16030300040d000000"))) assert.True(t, parser.certRequested) - } func TestParserHello(t *testing.T) { diff --git a/packetbeat/protos/tls/tls.go b/packetbeat/protos/tls/tls.go index 9db2a28f694..a785d101021 100644 --- a/packetbeat/protos/tls/tls.go +++ b/packetbeat/protos/tls/tls.go @@ -170,10 +170,9 @@ func (plugin *tlsPlugin) doParse( tcptuple *common.TCPTuple, dir uint8, ) *tlsConnectionData { - // Ignore further traffic after the handshake is completed (encrypted connection) // TODO: request/response analysis - if 0 != conn.handshakeCompleted&(1< 0 { desc = dev.Description } - r += fmt.Sprintf(" (%s)", desc) + fmt.Fprintf(&buf, " (%s)", desc) } if withIP { - ips := "Not assigned ip address" - if len(dev.Addresses) > 0 { - ips = "" - + buf.WriteString(" (") + if len(dev.Addresses) == 0 { + buf.WriteString("Not assigned ip address") + } else { for i, address := range []pcap.InterfaceAddress(dev.Addresses) { - // Add a space between the IP address. - if i > 0 { - ips += " " + if i != 0 { + buf.WriteByte(' ') } - - ips += fmt.Sprintf("%s", address.IP.String()) + fmt.Fprint(&buf, address.IP) } } - r += fmt.Sprintf(" (%s)", ips) - + buf.WriteByte(')') } - ret = append(ret, r) + names = append(names, buf.String()) } - return ret, nil + return names } func resolveDeviceName(name string) (string, error) { diff --git a/packetbeat/sniffer/device_test.go b/packetbeat/sniffer/device_test.go new file mode 100644 index 00000000000..189bc92a9cd --- /dev/null +++ b/packetbeat/sniffer/device_test.go @@ -0,0 +1,136 @@ +// Licensed to Elasticsearch B.V. under one or more contributor +// license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright +// ownership. Elasticsearch B.V. licenses this file to you under +// the Apache License, Version 2.0 (the "License"); you may +// not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +package sniffer + +import ( + "net" + "reflect" + "testing" + + "github.com/tsg/gopacket/pcap" +) + +var formatDeviceNamesTests = []struct { + name string + interfaces []pcap.Interface + withDesc bool + withIP bool + want []string +}{ + {name: "empty"}, + { + name: "loopback no withs", + interfaces: []pcap.Interface{ + { + Name: "lo", Description: "loopback", + Addresses: []pcap.InterfaceAddress{ + {IP: net.IP{127, 0, 0, 1}, Netmask: net.IPMask{255, 0, 0, 0}}, + }, + }, + }, + want: []string{ + "lo", + }, + }, + { + name: "loopback with desc", + interfaces: []pcap.Interface{ + { + Name: "lo", Description: "loopback", + Addresses: []pcap.InterfaceAddress{ + {IP: net.IP{127, 0, 0, 1}, Netmask: net.IPMask{255, 0, 0, 0}}, + }, + }, + }, + withDesc: true, + want: []string{ + "lo (loopback)", + }, + }, + { + name: "loopback with IPs", + interfaces: []pcap.Interface{ + { + Name: "lo", Description: "loopback", + Addresses: []pcap.InterfaceAddress{ + {IP: net.IP{127, 0, 0, 1}, Netmask: net.IPMask{255, 0, 0, 0}}, + }, + }, + }, + withIP: true, + want: []string{ + "lo (127.0.0.1)", + }, + }, + { + name: "loopback with the lot", + interfaces: []pcap.Interface{ + { + Name: "lo", Description: "loopback", + Addresses: []pcap.InterfaceAddress{ + {IP: net.IP{127, 0, 0, 1}, Netmask: net.IPMask{255, 0, 0, 0}}, + }, + }, + }, + withDesc: true, + withIP: true, + want: []string{ + "lo (loopback) (127.0.0.1)", + }, + }, + { + name: "two addr loopback with the lot", + interfaces: []pcap.Interface{ + { + Name: "lo", Description: "loopback", + Addresses: []pcap.InterfaceAddress{ + {IP: net.IP{127, 0, 0, 1}, Netmask: net.IPMask{255, 0, 0, 0}}, + {IP: net.IP{127, 0, 1, 1}, Netmask: net.IPMask{255, 0, 0, 0}}, + }, + }, + }, + withDesc: true, + withIP: true, + want: []string{ + "lo (loopback) (127.0.0.1 127.0.1.1)", + }, + }, + { + name: "no IP loopback with the lot", + interfaces: []pcap.Interface{ + { + Name: "lo", Description: "loopback", + }, + }, + withDesc: true, + withIP: true, + want: []string{ + "lo (loopback) (Not assigned ip address)", + }, + }, +} + +func TestFormatDevices(t *testing.T) { + for _, test := range formatDeviceNamesTests { + got := formatDeviceNames(test.interfaces, test.withDesc, test.withIP) + if !reflect.DeepEqual(got, test.want) { + t.Errorf("unexpected result for test %s:\ngot: %v\nwant:%v", + test.name, got, test.want) + } + } +} diff --git a/packetbeat/sniffer/sniffer.go b/packetbeat/sniffer/sniffer.go index bfe720c7b98..07a7e3096a9 100644 --- a/packetbeat/sniffer/sniffer.go +++ b/packetbeat/sniffer/sniffer.go @@ -39,7 +39,6 @@ import ( // to a Worker. type Sniffer struct { config config.InterfacesConfig - dumper *pcap.Dumper state atomic.Int32 // store snifferState @@ -60,7 +59,6 @@ type Worker interface { type snifferHandle interface { gopacket.PacketDataSource - LinkType() layers.LinkType Close() } diff --git a/packetbeat/sniffer/sniffer_test.go b/packetbeat/sniffer/sniffer_test.go index eea7821d889..52b0b57fb33 100644 --- a/packetbeat/sniffer/sniffer_test.go +++ b/packetbeat/sniffer/sniffer_test.go @@ -52,13 +52,16 @@ func TestSniffer_afpacketComputeSize(t *testing.T) { t.Error("Value too big", blockSize, numBlocks) } - frameSize, blockSize, numBlocks, err = afpacketComputeSize(0, 1514, 4096) + _, _, _, err = afpacketComputeSize(0, 1514, 4096) if err == nil { t.Error("Expected an error") } // 16436 is the default MTU size of the loopback interface frameSize, blockSize, numBlocks, err = afpacketComputeSize(30, 16436, 4096) + if err != nil { + t.Error(err) + } if frameSize != 4096*5 || blockSize != 4096*5*128 || numBlocks != 12 { t.Error("Bad result", frameSize, blockSize, numBlocks) } From 73a2e5533839a692206272783f5be6652b8a1a5d Mon Sep 17 00:00:00 2001 From: DeDe Morton Date: Mon, 29 Nov 2021 17:31:52 -0800 Subject: [PATCH 05/12] Add note that there is no warranty or support for generator code (#28797) * Add note that there is no warranty or support for generator code * Remove tagged region because it's no longer used --- docs/devguide/create-metricset.asciidoc | 2 ++ docs/devguide/generator-support-note.asciidoc | 13 +++++++++++++ docs/devguide/modules-dev-guide.asciidoc | 2 ++ 3 files changed, 17 insertions(+) create mode 100644 docs/devguide/generator-support-note.asciidoc diff --git a/docs/devguide/create-metricset.asciidoc b/docs/devguide/create-metricset.asciidoc index a1540be2384..fd60e25dd3a 100644 --- a/docs/devguide/create-metricset.asciidoc +++ b/docs/devguide/create-metricset.asciidoc @@ -1,6 +1,8 @@ [[creating-metricsets]] === Creating a Metricset +include::generator-support-note.asciidoc[tag=metricset-generator] + A metricset is the part of a Metricbeat module that fetches and structures the data from the remote service. Each module can have multiple metricsets. In this guide, you learn how to create your own metricset. diff --git a/docs/devguide/generator-support-note.asciidoc b/docs/devguide/generator-support-note.asciidoc new file mode 100644 index 00000000000..25579798ed2 --- /dev/null +++ b/docs/devguide/generator-support-note.asciidoc @@ -0,0 +1,13 @@ +// tag::metricset-generator[] +IMPORTANT: Elastic provides no warranty or support for the code used to generate +metricsets. The generator is mainly offered as guidance for developers who want +to create their own data shippers. + +// end::metricset-generator[] + +// tag::filebeat-generator[] +IMPORTANT: Elastic provides no warranty or support for the code used to generate +modules and filesets. The generator is mainly offered as guidance for developers +who want to create their own data shippers. + +// end::filebeat-generator[] \ No newline at end of file diff --git a/docs/devguide/modules-dev-guide.asciidoc b/docs/devguide/modules-dev-guide.asciidoc index 0936438900e..03b3179c596 100644 --- a/docs/devguide/modules-dev-guide.asciidoc +++ b/docs/devguide/modules-dev-guide.asciidoc @@ -1,6 +1,8 @@ [[filebeat-modules-devguide]] == Creating a New Filebeat Module +include::generator-support-note.asciidoc[tag=filebeat-generator] + This guide will walk you through creating a new Filebeat module. All Filebeat modules currently live in the main From af2eb730f71b686f38d2c3483864e7f0a2629373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9mi=20V=C3=A1nyi?= Date: Tue, 30 Nov 2021 10:50:09 +0100 Subject: [PATCH 06/12] Remove Journalbeat (#29131) Use journald input instead. --- .ci/packaging.groovy | 5 - CHANGELOG.next.asciidoc | 13 +- Jenkinsfile | 2 - Makefile | 2 +- README.md | 2 - auditbeat/cmd/root.go | 2 +- deploy/docker/journalbeat.docker.yml | 11 - dev-tools/cmd/update_go/update_go_version.go | 1 - dev-tools/ecs-migration.yml | 14 - filebeat/input/journald/config.go | 4 +- filebeat/input/journald/conv.go | 2 +- filebeat/input/journald/input.go | 4 +- .../input/journald}/pkg/journalfield/conv.go | 0 .../journald}/pkg/journalfield/conv_test.go | 0 .../journald}/pkg/journalfield/default.go | 0 .../pkg/journalfield/default_other.go | 0 .../journald}/pkg/journalfield/matcher.go | 0 .../pkg/journalfield/matcher_test.go | 0 .../input/journald}/pkg/journalread/mode.go | 0 .../journald}/pkg/journalread/mode_test.go | 0 .../input/journald}/pkg/journalread/reader.go | 0 journalbeat/.gitignore | 9 - journalbeat/Dockerfile | 23 - journalbeat/Makefile | 15 - journalbeat/README.md | 5 - journalbeat/_meta/config/beat.docker.yml.tmpl | 3 - .../_meta/config/beat.reference.yml.tmpl | 62 - journalbeat/_meta/config/beat.yml.tmpl | 57 - journalbeat/_meta/fields.common.yml | 329 - .../default/index-pattern/journalbeat.json | 16 - journalbeat/beater/journalbeat.go | 126 - journalbeat/checkpoint/checkpoint.go | 352 - journalbeat/checkpoint/checkpoint_test.go | 223 - journalbeat/checkpoint/file_unix.go | 27 - journalbeat/checkpoint/file_windows.go | 54 - journalbeat/cmd/instance/metrics.go | 69 - journalbeat/cmd/instance/metrics_other.go | 27 - journalbeat/cmd/root.go | 64 - journalbeat/config/config.go | 38 - journalbeat/conftest.py | 4 - journalbeat/docs/config-options.asciidoc | 251 - journalbeat/docs/configuring-howto.asciidoc | 59 - journalbeat/docs/faq.asciidoc | 10 - journalbeat/docs/fields.asciidoc | 16301 ---------------- journalbeat/docs/filtering.asciidoc | 36 - journalbeat/docs/general-options.asciidoc | 64 - journalbeat/docs/getting-started.asciidoc | 175 - journalbeat/docs/howto/howto.asciidoc | 35 - journalbeat/docs/images/coordinate-map.png | Bin 370029 -> 0 bytes journalbeat/docs/images/journald-log-data.png | Bin 215321 -> 0 bytes journalbeat/docs/index.asciidoc | 47 - journalbeat/docs/overview.asciidoc | 11 - journalbeat/docs/page_header.html | 4 - journalbeat/docs/running-on-docker.asciidoc | 1 - journalbeat/docs/setting-up-running.asciidoc | 47 - journalbeat/docs/troubleshooting.asciidoc | 31 - journalbeat/include/fields.go | 36 - journalbeat/input/config.go | 67 - journalbeat/input/input.go | 274 - journalbeat/input/input_test.go | 167 - journalbeat/journalbeat.docker.yml | 12 - journalbeat/journalbeat.reference.yml | 1561 -- journalbeat/journalbeat.yml | 217 - journalbeat/magefile.go | 171 - journalbeat/main.go | 30 - journalbeat/main_test.go | 49 - journalbeat/reader/config.go | 52 - journalbeat/reader/fields.go | 21 - journalbeat/reader/journal.go | 151 - journalbeat/reader/journal_other.go | 56 - .../tests/system/config/journalbeat.yml.j2 | 13 - journalbeat/tests/system/input/test.journal | Bin 8388608 -> 0 bytes journalbeat/tests/system/input/test.registry | 6 - journalbeat/tests/system/journalbeat.py | 12 - journalbeat/tests/system/test_base.py | 210 - libbeat/docs/getting-started.asciidoc | 2 +- libbeat/docs/overview.asciidoc | 2 +- libbeat/docs/shared-docker.asciidoc | 28 - .../docs/decode_csv_fields.asciidoc | 2 +- libbeat/scripts/Makefile | 2 - script/renamed_fields.py | 2 +- .../pkg/agent/program/program_test.go | 4 - .../testdata/journal_config-journalbeat.yml | 15 - .../spec/journalbeat.yml.disabled | 22 - x-pack/journalbeat/cmd/root.go | 21 - x-pack/journalbeat/main.go | 19 - x-pack/journalbeat/main_test.go | 33 - 87 files changed, 12 insertions(+), 21882 deletions(-) delete mode 100644 deploy/docker/journalbeat.docker.yml rename {journalbeat => filebeat/input/journald}/pkg/journalfield/conv.go (100%) rename {journalbeat => filebeat/input/journald}/pkg/journalfield/conv_test.go (100%) rename {journalbeat => filebeat/input/journald}/pkg/journalfield/default.go (100%) rename {journalbeat => filebeat/input/journald}/pkg/journalfield/default_other.go (100%) rename {journalbeat => filebeat/input/journald}/pkg/journalfield/matcher.go (100%) rename {journalbeat => filebeat/input/journald}/pkg/journalfield/matcher_test.go (100%) rename {journalbeat => filebeat/input/journald}/pkg/journalread/mode.go (100%) rename {journalbeat => filebeat/input/journald}/pkg/journalread/mode_test.go (100%) rename {journalbeat => filebeat/input/journald}/pkg/journalread/reader.go (100%) delete mode 100644 journalbeat/.gitignore delete mode 100644 journalbeat/Dockerfile delete mode 100644 journalbeat/Makefile delete mode 100644 journalbeat/README.md delete mode 100644 journalbeat/_meta/config/beat.docker.yml.tmpl delete mode 100644 journalbeat/_meta/config/beat.reference.yml.tmpl delete mode 100644 journalbeat/_meta/config/beat.yml.tmpl delete mode 100644 journalbeat/_meta/fields.common.yml delete mode 100644 journalbeat/_meta/kibana/default/index-pattern/journalbeat.json delete mode 100644 journalbeat/beater/journalbeat.go delete mode 100644 journalbeat/checkpoint/checkpoint.go delete mode 100644 journalbeat/checkpoint/checkpoint_test.go delete mode 100644 journalbeat/checkpoint/file_unix.go delete mode 100644 journalbeat/checkpoint/file_windows.go delete mode 100644 journalbeat/cmd/instance/metrics.go delete mode 100644 journalbeat/cmd/instance/metrics_other.go delete mode 100644 journalbeat/cmd/root.go delete mode 100644 journalbeat/config/config.go delete mode 100644 journalbeat/conftest.py delete mode 100644 journalbeat/docs/config-options.asciidoc delete mode 100644 journalbeat/docs/configuring-howto.asciidoc delete mode 100644 journalbeat/docs/faq.asciidoc delete mode 100644 journalbeat/docs/fields.asciidoc delete mode 100644 journalbeat/docs/filtering.asciidoc delete mode 100644 journalbeat/docs/general-options.asciidoc delete mode 100644 journalbeat/docs/getting-started.asciidoc delete mode 100644 journalbeat/docs/howto/howto.asciidoc delete mode 100644 journalbeat/docs/images/coordinate-map.png delete mode 100644 journalbeat/docs/images/journald-log-data.png delete mode 100644 journalbeat/docs/index.asciidoc delete mode 100644 journalbeat/docs/overview.asciidoc delete mode 100644 journalbeat/docs/page_header.html delete mode 100644 journalbeat/docs/running-on-docker.asciidoc delete mode 100644 journalbeat/docs/setting-up-running.asciidoc delete mode 100644 journalbeat/docs/troubleshooting.asciidoc delete mode 100644 journalbeat/include/fields.go delete mode 100644 journalbeat/input/config.go delete mode 100644 journalbeat/input/input.go delete mode 100644 journalbeat/input/input_test.go delete mode 100644 journalbeat/journalbeat.docker.yml delete mode 100644 journalbeat/journalbeat.reference.yml delete mode 100644 journalbeat/journalbeat.yml delete mode 100644 journalbeat/magefile.go delete mode 100644 journalbeat/main.go delete mode 100644 journalbeat/main_test.go delete mode 100644 journalbeat/reader/config.go delete mode 100644 journalbeat/reader/fields.go delete mode 100644 journalbeat/reader/journal.go delete mode 100644 journalbeat/reader/journal_other.go delete mode 100644 journalbeat/tests/system/config/journalbeat.yml.j2 delete mode 100644 journalbeat/tests/system/input/test.journal delete mode 100644 journalbeat/tests/system/input/test.registry delete mode 100644 journalbeat/tests/system/journalbeat.py delete mode 100644 journalbeat/tests/system/test_base.py delete mode 100644 x-pack/elastic-agent/pkg/agent/program/testdata/journal_config-journalbeat.yml delete mode 100644 x-pack/elastic-agent/spec/journalbeat.yml.disabled delete mode 100644 x-pack/journalbeat/cmd/root.go delete mode 100644 x-pack/journalbeat/main.go delete mode 100644 x-pack/journalbeat/main_test.go diff --git a/.ci/packaging.groovy b/.ci/packaging.groovy index 7c4ce7b5e8f..7be1628e138 100644 --- a/.ci/packaging.groovy +++ b/.ci/packaging.groovy @@ -101,7 +101,6 @@ pipeline { 'auditbeat', 'filebeat', 'heartbeat', - 'journalbeat', 'metricbeat', 'packetbeat', 'winlogbeat', @@ -111,7 +110,6 @@ pipeline { 'x-pack/filebeat', 'x-pack/functionbeat', 'x-pack/heartbeat', - // 'x-pack/journalbeat', 'x-pack/metricbeat', 'x-pack/osquerybeat', 'x-pack/packetbeat', @@ -199,7 +197,6 @@ pipeline { 'auditbeat', 'filebeat', 'heartbeat', - 'journalbeat', 'metricbeat', 'packetbeat', 'x-pack/auditbeat', @@ -277,8 +274,6 @@ def pushCIDockerImages(Map args = [:]) { tagAndPush(beatName: 'filebeat', arch: arch) } else if (env?.BEATS_FOLDER?.endsWith('heartbeat')) { tagAndPush(beatName: 'heartbeat', arch: arch) - } else if ("${env.BEATS_FOLDER}" == "journalbeat"){ - tagAndPush(beatName: 'journalbeat', arch: arch) } else if (env?.BEATS_FOLDER?.endsWith('metricbeat')) { tagAndPush(beatName: 'metricbeat', arch: arch) } else if (env?.BEATS_FOLDER?.endsWith('osquerybeat')) { diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 00383fb51cf..b8bb5c5d542 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -28,6 +28,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Index template's default_fields setting is only populated with ECS fields. {pull}28596[28596] {issue}28215[28215] - Remove deprecated `--template` and `--ilm-policy` flags. Use `--index-management` instead. {pull}28870[28870] - Remove options `logging.files.suffix` and default to datetime endings. {pull}28927[28927] +- Remove Journalbeat. Use `journald` input of Filebeat instead. {pull}29131[29131] *Auditbeat* @@ -69,11 +70,6 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d *Heartbeat* - Change behavior in case of duplicate monitor IDs in configs to be last monitor wins. {pull}29041[29041] -*Journalbeat* - -- Rename field `journald.process.capabilites` to `journald.process.capabilities` to fix spelling. {pull}28065[28065] -- Rename field `log.syslog.facility.name` to `log.syslog.facility.code` because the value is numeric rather than the facility name. {pull}28065[28065] - *Metricbeat* - Add Linux pressure metricset {pull}27355[27355] @@ -203,9 +199,6 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Remove accidentally included cups library in docker images. {pull}28853[pull] - Fix broken monitors with newer versions of image relying on dup3. {pull}28938[pull] -*Journalbeat* - - *Metricbeat* - Fix checking tagsFilter using length in cloudwatch metricset. {pull}14525[14525] @@ -359,8 +352,6 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Experimental 'run once' mode. {pull}25972[25972] - Add `keyword` multi-field mapping for `synthetics.step.name`. {pull}28452[28452] -*Journalbeat* - *Metricbeat* - Move the windows pdh implementation from perfmon to a shared location in order for future modules/metricsets to make use of. {pull}15503[15503] @@ -405,8 +396,6 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d *Heartbeat* -*Journalbeat* - *Metricbeat* diff --git a/Jenkinsfile b/Jenkinsfile index 9d52f95553f..9d5aca6a4ce 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -431,8 +431,6 @@ def pushCIDockerImages(Map args = [:]) { tagAndPush(beatName: 'filebeat', arch: arch) } else if (beatsFolder.endsWith('heartbeat')) { tagAndPush(beatName: 'heartbeat', arch: arch) - } else if ("${beatsFolder}" == "journalbeat"){ - tagAndPush(beatName: 'journalbeat', arch: arch) } else if (beatsFolder.endsWith('metricbeat')) { tagAndPush(beatName: 'metricbeat', arch: arch) } else if ("${beatsFolder}" == "packetbeat"){ diff --git a/Makefile b/Makefile index 1975bac3165..40b081bf3ed 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ BUILD_DIR=$(CURDIR)/build COVERAGE_DIR=$(BUILD_DIR)/coverage -BEATS?=auditbeat filebeat heartbeat journalbeat metricbeat packetbeat winlogbeat x-pack/functionbeat x-pack/elastic-agent x-pack/osquerybeat +BEATS?=auditbeat filebeat heartbeat metricbeat packetbeat winlogbeat x-pack/functionbeat x-pack/elastic-agent x-pack/osquerybeat PROJECTS=libbeat $(BEATS) PROJECTS_ENV=libbeat filebeat metricbeat PYTHON_ENV?=$(BUILD_DIR)/python-env diff --git a/README.md b/README.md index 32d411d74ac..6707fced374 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,6 @@ Beat | Description [Filebeat](https://github.com/elastic/beats/tree/master/filebeat) | Tails and ships log files [Functionbeat](https://github.com/elastic/beats/tree/master/x-pack/functionbeat) | Read and ships events from serverless infrastructure. [Heartbeat](https://github.com/elastic/beats/tree/master/heartbeat) | Ping remote services for availability -[Journalbeat](https://github.com/elastic/beats/tree/master/journalbeat) | Read and ships event from Journald. [Metricbeat](https://github.com/elastic/beats/tree/master/metricbeat) | Fetches sets of metrics from the operating system and services [Packetbeat](https://github.com/elastic/beats/tree/master/packetbeat) | Monitors the network and applications by sniffing packets [Winlogbeat](https://github.com/elastic/beats/tree/master/winlogbeat) | Fetches and ships Windows Event logs @@ -45,7 +44,6 @@ on the [elastic.co site](https://www.elastic.co/guide/): * [Filebeat](https://www.elastic.co/guide/en/beats/filebeat/current/index.html) * [Functionbeat](https://www.elastic.co/guide/en/beats/functionbeat/current/index.html) * [Heartbeat](https://www.elastic.co/guide/en/beats/heartbeat/current/index.html) -* [Journalbeat](https://www.elastic.co/guide/en/beats/journalbeat/current/index.html) * [Metricbeat](https://www.elastic.co/guide/en/beats/metricbeat/current/index.html) * [Packetbeat](https://www.elastic.co/guide/en/beats/packetbeat/current/index.html) * [Winlogbeat](https://www.elastic.co/guide/en/beats/winlogbeat/current/index.html) diff --git a/auditbeat/cmd/root.go b/auditbeat/cmd/root.go index 35fa18ecad0..aa5b523e976 100644 --- a/auditbeat/cmd/root.go +++ b/auditbeat/cmd/root.go @@ -63,7 +63,7 @@ func AuditbeatSettings() instance.Settings { } } -// Initialize initializes the entrypoint commands for journalbeat +// Initialize initializes the entrypoint commands for auditbeat func Initialize(settings instance.Settings) *cmd.BeatsRootCmd { create := beater.Creator( beater.WithModuleOptions( diff --git a/deploy/docker/journalbeat.docker.yml b/deploy/docker/journalbeat.docker.yml deleted file mode 100644 index a1e67c0d961..00000000000 --- a/deploy/docker/journalbeat.docker.yml +++ /dev/null @@ -1,11 +0,0 @@ -journalbeat.inputs: -- paths: [] - seek: cursor - -processors: -- add_cloud_metadata: ~ - -output.elasticsearch: - hosts: '${ELASTICSEARCH_HOSTS:elasticsearch:9200}' - username: '${ELASTICSEARCH_USERNAME:}' - password: '${ELASTICSEARCH_PASSWORD:}' diff --git a/dev-tools/cmd/update_go/update_go_version.go b/dev-tools/cmd/update_go/update_go_version.go index 9ab0fa8a4a4..f589abc756d 100644 --- a/dev-tools/cmd/update_go/update_go_version.go +++ b/dev-tools/cmd/update_go/update_go_version.go @@ -30,7 +30,6 @@ var files = []string{ "auditbeat/Dockerfile", "filebeat/Dockerfile", "heartbeat/Dockerfile", - "journalbeat/Dockerfile", "libbeat/Dockerfile", "libbeat/docs/version.asciidoc", "metricbeat/Dockerfile", diff --git a/dev-tools/ecs-migration.yml b/dev-tools/ecs-migration.yml index 39bc4950564..0ea295b2d7e 100644 --- a/dev-tools/ecs-migration.yml +++ b/dev-tools/ecs-migration.yml @@ -1954,20 +1954,6 @@ alias: true beat: heartbeat -# Journalbeat -- from: host.name - to: host.hostname - alias: false - beat: journalbeat - comment: This field should not be renamed as it would cause issue some Beats and Journalbeat does not have dashboards - # This field should not be renamed as it would cause issue some Beats and Journalbeat does not have dashboards - rename: false - -- from: read_timestamp - to: event.created - alias: true - beat: journalbeat - ## Winlogbeat # Alias to ECS fields diff --git a/filebeat/input/journald/config.go b/filebeat/input/journald/config.go index 6704dabfc02..e3bf6bdd509 100644 --- a/filebeat/input/journald/config.go +++ b/filebeat/input/journald/config.go @@ -24,8 +24,8 @@ import ( "errors" "time" - "github.com/elastic/beats/v7/journalbeat/pkg/journalfield" - "github.com/elastic/beats/v7/journalbeat/pkg/journalread" + "github.com/elastic/beats/v7/filebeat/input/journald/pkg/journalfield" + "github.com/elastic/beats/v7/filebeat/input/journald/pkg/journalread" ) // Config stores the options of a journald input. diff --git a/filebeat/input/journald/conv.go b/filebeat/input/journald/conv.go index a9785cf49f6..a1bf52f3000 100644 --- a/filebeat/input/journald/conv.go +++ b/filebeat/input/journald/conv.go @@ -23,7 +23,7 @@ package journald import ( "time" - "github.com/elastic/beats/v7/journalbeat/pkg/journalfield" + "github.com/elastic/beats/v7/filebeat/input/journald/pkg/journalfield" "github.com/elastic/beats/v7/libbeat/beat" "github.com/elastic/beats/v7/libbeat/logp" ) diff --git a/filebeat/input/journald/input.go b/filebeat/input/journald/input.go index 74bd0983d23..7c8f5085dea 100644 --- a/filebeat/input/journald/input.go +++ b/filebeat/input/journald/input.go @@ -26,10 +26,10 @@ import ( "github.com/coreos/go-systemd/v22/sdjournal" "github.com/urso/sderr" + "github.com/elastic/beats/v7/filebeat/input/journald/pkg/journalfield" + "github.com/elastic/beats/v7/filebeat/input/journald/pkg/journalread" input "github.com/elastic/beats/v7/filebeat/input/v2" cursor "github.com/elastic/beats/v7/filebeat/input/v2/input-cursor" - "github.com/elastic/beats/v7/journalbeat/pkg/journalfield" - "github.com/elastic/beats/v7/journalbeat/pkg/journalread" "github.com/elastic/beats/v7/libbeat/common" "github.com/elastic/beats/v7/libbeat/common/backoff" "github.com/elastic/beats/v7/libbeat/feature" diff --git a/journalbeat/pkg/journalfield/conv.go b/filebeat/input/journald/pkg/journalfield/conv.go similarity index 100% rename from journalbeat/pkg/journalfield/conv.go rename to filebeat/input/journald/pkg/journalfield/conv.go diff --git a/journalbeat/pkg/journalfield/conv_test.go b/filebeat/input/journald/pkg/journalfield/conv_test.go similarity index 100% rename from journalbeat/pkg/journalfield/conv_test.go rename to filebeat/input/journald/pkg/journalfield/conv_test.go diff --git a/journalbeat/pkg/journalfield/default.go b/filebeat/input/journald/pkg/journalfield/default.go similarity index 100% rename from journalbeat/pkg/journalfield/default.go rename to filebeat/input/journald/pkg/journalfield/default.go diff --git a/journalbeat/pkg/journalfield/default_other.go b/filebeat/input/journald/pkg/journalfield/default_other.go similarity index 100% rename from journalbeat/pkg/journalfield/default_other.go rename to filebeat/input/journald/pkg/journalfield/default_other.go diff --git a/journalbeat/pkg/journalfield/matcher.go b/filebeat/input/journald/pkg/journalfield/matcher.go similarity index 100% rename from journalbeat/pkg/journalfield/matcher.go rename to filebeat/input/journald/pkg/journalfield/matcher.go diff --git a/journalbeat/pkg/journalfield/matcher_test.go b/filebeat/input/journald/pkg/journalfield/matcher_test.go similarity index 100% rename from journalbeat/pkg/journalfield/matcher_test.go rename to filebeat/input/journald/pkg/journalfield/matcher_test.go diff --git a/journalbeat/pkg/journalread/mode.go b/filebeat/input/journald/pkg/journalread/mode.go similarity index 100% rename from journalbeat/pkg/journalread/mode.go rename to filebeat/input/journald/pkg/journalread/mode.go diff --git a/journalbeat/pkg/journalread/mode_test.go b/filebeat/input/journald/pkg/journalread/mode_test.go similarity index 100% rename from journalbeat/pkg/journalread/mode_test.go rename to filebeat/input/journald/pkg/journalread/mode_test.go diff --git a/journalbeat/pkg/journalread/reader.go b/filebeat/input/journald/pkg/journalread/reader.go similarity index 100% rename from journalbeat/pkg/journalread/reader.go rename to filebeat/input/journald/pkg/journalread/reader.go diff --git a/journalbeat/.gitignore b/journalbeat/.gitignore deleted file mode 100644 index 504279e50ee..00000000000 --- a/journalbeat/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -/.idea -/build -.DS_Store -.journalbeat_position -/journalbeat -/journalbeat.test -*.pyc -data/meta.json -/*.journal diff --git a/journalbeat/Dockerfile b/journalbeat/Dockerfile deleted file mode 100644 index 6c461fcb01a..00000000000 --- a/journalbeat/Dockerfile +++ /dev/null @@ -1,23 +0,0 @@ -FROM golang:1.17.2 - -RUN \ - apt-get update \ - && apt-get install -y --no-install-recommends \ - libsystemd-dev \ - libc6-dev-i386 \ - gcc-arm-linux-gnueabi \ - python3 \ - python3-pip \ - python3-venv \ - && rm -rf /var/lib/apt/lists/* - -RUN pip3 install --upgrade pip==20.1.1 -RUN pip3 install --upgrade setuptools==47.3.2 -RUN pip3 install --upgrade docker-compose==1.23.2 - -# Setup work environment -ENV JOURNALBEAT_PATH /go/src/github.com/elastic/beats/journalbeat - -RUN mkdir -p $JOURNALBEAT_PATH/build/coverage -WORKDIR $JOURNALBEAT_PATH -HEALTHCHECK CMD exit 0 diff --git a/journalbeat/Makefile b/journalbeat/Makefile deleted file mode 100644 index 85049183d4e..00000000000 --- a/journalbeat/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -BEAT_NAME=journalbeat -BEAT_TITLE=Journalbeat -SYSTEM_TESTS=true -TEST_ENVIRONMENT=false -ES_BEATS?=.. - -# Path to the libbeat Makefile --include $(ES_BEATS)/libbeat/scripts/Makefile - -.PHONY: before-build -before-build: - -# Collects all dependencies and then calls update -.PHONY: collect -collect: diff --git a/journalbeat/README.md b/journalbeat/README.md deleted file mode 100644 index 69fccb38f90..00000000000 --- a/journalbeat/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Journalbeat - -Journalbeat is an open source data collector to read and forward journal entries from Linuxes with systemd. - -## Getting started diff --git a/journalbeat/_meta/config/beat.docker.yml.tmpl b/journalbeat/_meta/config/beat.docker.yml.tmpl deleted file mode 100644 index 20ae6ee130d..00000000000 --- a/journalbeat/_meta/config/beat.docker.yml.tmpl +++ /dev/null @@ -1,3 +0,0 @@ -journalbeat.inputs: -- paths: [] - seek: cursor diff --git a/journalbeat/_meta/config/beat.reference.yml.tmpl b/journalbeat/_meta/config/beat.reference.yml.tmpl deleted file mode 100644 index 8da73b6bf07..00000000000 --- a/journalbeat/_meta/config/beat.reference.yml.tmpl +++ /dev/null @@ -1,62 +0,0 @@ -###################### Journalbeat Configuration Example ######################### - -# This file is an example configuration file highlighting only the most common -# options. The journalbeat.reference.yml file from the same directory contains all the -# supported options with more comments. You can use it as a reference. -# -# You can find the full configuration reference here: -# https://www.elastic.co/guide/en/beats/journalbeat/index.html - -# For more available modules and options, please see the journalbeat.reference.yml sample -# configuration file. - -{{header "Journalbeat inputs"}} - -journalbeat.inputs: - # Paths that should be crawled and fetched. Possible values files and directories. - # When setting a directory, all journals under it are merged. - # When empty starts to read from local journal. -- paths: [] - - # An optional unique identifier for the input. By providing a unique `id` you - # can operate multiple inputs on the same journal. This allows each input's - # cursor to be persisted independently in the registry file. - #id: "" - - # The number of seconds to wait before trying to read again from journals. - #backoff: 1s - # The maximum number of seconds to wait before attempting to read again from journals. - #max_backoff: 20s - - # Position to start reading from journal. Valid values: head, tail, cursor - seek: cursor - # Fallback position if no cursor data is available. - #cursor_seek_fallback: head - - # Exact matching for field values of events. - # Matching for nginx entries: "systemd.unit=nginx" - #include_matches: [] - - # Set the option to preserve the remote hostname in entries from a remote journal. - # It is only needed when used with add_host_metadata, so the original host name - # does not get overwritten by the processor. - #save_remote_hostname: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - -{{header "Journalbeat global options"}} -#journalbeat: - # Name of the registry file. If a relative path is used, it is considered relative to the - # data path. - #registry_file: registry - -{{header "Elasticsearch template setting"}} -setup.template.settings: - index.number_of_shards: 1 - #index.codec: best_compression - #_source.enabled: false diff --git a/journalbeat/_meta/config/beat.yml.tmpl b/journalbeat/_meta/config/beat.yml.tmpl deleted file mode 100644 index a4f7d5d4c31..00000000000 --- a/journalbeat/_meta/config/beat.yml.tmpl +++ /dev/null @@ -1,57 +0,0 @@ -###################### Journalbeat Configuration Example ######################### - -# This file is an example configuration file highlighting only the most common -# options. The journalbeat.reference.yml file from the same directory contains all the -# supported options with more comments. You can use it as a reference. -# -# You can find the full configuration reference here: -# https://www.elastic.co/guide/en/beats/journalbeat/index.html - -# For more available modules and options, please see the journalbeat.reference.yml sample -# configuration file. - -{{header "Journalbeat inputs"}} - -journalbeat.inputs: - # Paths that should be crawled and fetched. Possible values files and directories. - # When setting a directory, all journals under it are merged. - # When empty starts to read from local journal. -- paths: [] - - # An optional unique identifier for the input. By providing a unique `id` you - # can operate multiple inputs on the same journal. This allows each input's - # cursor to be persisted independently in the registry file. - #id: "" - - # The number of seconds to wait before trying to read again from journals. - #backoff: 1s - # The maximum number of seconds to wait before attempting to read again from journals. - #max_backoff: 20s - - # Position to start reading from journal. Valid values: head, tail, cursor - seek: cursor - # Fallback position if no cursor data is available. - #cursor_seek_fallback: head - - # Exact matching for field values of events. - # Matching for nginx entries: "systemd.unit=nginx" - #include_matches: [] - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - -{{header "Journalbeat global options"}} -#journalbeat: - # Name of the registry file. If a relative path is used, it is considered relative to the - # data path. - #registry_file: registry - -{{header "Elasticsearch template setting"}} -setup.template.settings: - index.number_of_shards: 1 - #index.codec: best_compression - #_source.enabled: false diff --git a/journalbeat/_meta/fields.common.yml b/journalbeat/_meta/fields.common.yml deleted file mode 100644 index b06081ae19b..00000000000 --- a/journalbeat/_meta/fields.common.yml +++ /dev/null @@ -1,329 +0,0 @@ -- key: common - title: "Common Journalbeat" - description: > - Contains common fields available in all event types. - fields: - - name: coredump - type: group - description: > - Fields used by systemd-coredump kernel helper. - fields: - - name: unit - type: keyword - description: > - Annotations of messages containing coredumps from system units. - - name: user_unit - type: keyword - description: > - Annotations of messages containing coredumps from user units. - - name: journald - type: group - description: > - Fields provided by journald. - fields: - - name: object - type: group - description: > - Fields to log on behalf of a different program. - fields: - - name: audit - type: group - description: > - Audit fields of event. - fields: - - name: login_uid - type: long - required: false - example: 1000 - description: > - The login UID of the object process. - - name: session - type: long - required: false - example: 3 - description: > - The audit session of the object process. - - name: process.command_line - type: keyword - required: false - example: "/lib/systemd/systemd --user" - description: > - The command line of the process. - - name: process.name - type: keyword - required: false - example: "/lib/systemd/systemd" - description: > - Name of the executable. - - name: process.executable - type: keyword - required: false - description: > - Path to the the executable. - example: "/lib/systemd/systemd" - - name: uid - type: long - required: false - description: > - UID of the object process. - - name: gid - type: long - required: false - description: > - GID of the object process. - - name: pid - type: long - required: false - description: > - PID of the object process. - - name: systemd - type: group - description: > - Systemd fields of event. - fields: - - name: owner_uid - type: long - required: false - description: > - The UID of the owner. - - name: session - type: keyword - required: false - description: > - The ID of the systemd session. - - name: unit - type: keyword - required: false - description: > - The name of the systemd unit. - - name: user_unit - type: keyword - required: false - description: > - The name of the systemd user unit. - - name: kernel - type: group - description: > - Fields to log on behalf of a different program. - fields: - - name: device - type: keyword - required: false - description: > - The kernel device name. - - name: subsystem - type: keyword - required: false - description: > - The kernel subsystem name. - - name: device_symlinks - type: keyword - required: false - description: > - Additional symlink names pointing to the device node in /dev. - - name: device_node_path - type: keyword - required: false - description: > - The device node path of this device in /dev. - - name: device_name - type: keyword - required: false - description: > - The kernel device name as it shows up in the device tree below /sys. - - name: code - type: group - description: > - Fields of the code generating the event. - fields: - - name: file - type: keyword - required: false - example: "../src/core/manager.c" - description: > - The name of the source file where the log is generated. - - name: function - type: keyword - required: false - example: "job_log_status_message" - description: > - The name of the function which generated the log message. - - name: line - type: long - required: false - example: 123 - description: > - The line number of the code which generated the log message. - - name: process - type: group - description: > - Fields to log on behalf of a different program. - fields: - - name: audit - type: group - description: > - Audit fields of event. - fields: - - name: loginuid - type: long - required: false - example: 1000 - description: > - The login UID of the source process. - - name: session - type: long - required: false - example: 3 - description: > - The audit session of the source process. - - name: command_line - type: keyword - required: false - example: "/lib/systemd/systemd --user" - description: > - The command line of the process. - - name: name - type: keyword - required: false - example: "/lib/systemd/systemd" - description: > - Name of the executable. - - name: executable - type: keyword - required: false - description: > - Path to the the executable. - example: "/lib/systemd/systemd" - - name: pid - type: long - required: false - example: 1 - description: > - The ID of the process which logged the message. - - name: gid - type: long - required: false - example: 1 - description: > - The ID of the group which runs the process. - - name: uid - type: long - required: false - example: 1 - description: > - The ID of the user which runs the process. - - name: capabilities - required: false - description: > - The effective capabilities of the process. - - name: systemd - type: group - description: > - Fields of systemd. - fields: - - name: invocation_id - type: keyword - required: false - example: "8450f1672de646c88cd133aadd4f2d70" - description: > - The invocation ID for the runtime cycle of the unit the message was generated in. - - name: cgroup - type: keyword - required: false - example: "/user.slice/user-1234.slice/session-2.scope" - description: > - The control group path in the systemd hierarchy. - - name: owner_uid - type: long - required: false - description: > - The owner UID of the systemd user unit or systemd session. - - name: session - type: keyword - required: false - description: > - The ID of the systemd session. - - name: slice - type: keyword - required: false - example: "user-1234.slice" - description: > - The systemd slice unit. - - name: user_slice - type: keyword - required: false - description: > - The systemd user slice unit. - - name: unit - type: keyword - required: false - example: "nginx.service" - description: > - The name of the systemd unit. - - name: user_unit - type: keyword - required: false - example: "user-1234.slice" - description: > - The name of the systemd user unit. - - name: transport - type: keyword - required: true - example: "syslog" - description: > - How the log message was received by journald. - - name: host - type: group - description: > - Fields of the host. - fields: - - name: boot_id - type: keyword - required: false - example: "dd8c974asdf01dbe2ef26d7fasdf264c9" - description: > - The boot ID for the boot the log was generated in. - - name: syslog - type: group - description: > - Fields of the code generating the event. - fields: - - name: priority - type: long - required: false - example: 1 - description: > - The priority of the message. A syslog compatibility field. - - name: facility - type: long - required: false - example: 1 - description: > - The facility of the message. A syslog compatibility field. - - name: identifier - type: keyword - required: false - example: "su" - description: > - The identifier of the message. A syslog compatibility field. - - name: custom - type: nested - required: false - description: > - Arbitrary fields coming from processes. - - - name: read_timestamp - type: alias - path: event.created - migration: true - - - name: container - type: group - fields: - - name: log - type: group - fields: - - name: tag - type: keyword - description: > - User defined tag of a container. diff --git a/journalbeat/_meta/kibana/default/index-pattern/journalbeat.json b/journalbeat/_meta/kibana/default/index-pattern/journalbeat.json deleted file mode 100644 index 55e70bd81d1..00000000000 --- a/journalbeat/_meta/kibana/default/index-pattern/journalbeat.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "version": "7.0.0-alpha1", - "objects": [ - { - "attributes": { - "fields": "[{\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.hostname\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.timezone\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"beat.version\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"@timestamp\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"date\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"tags\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"fields\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"error.message\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"error.code\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"error.type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.provider\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.instance_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.instance_name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.machine_type\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.availability_zone\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.project_id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"meta.cloud.region\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.id\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.image\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"docker.container.labels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.pod.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.namespace\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.labels\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.annotations\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.name\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"kubernetes.container.image\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"counter\", \"searchable\": true, \"indexed\": true, \"doc_values\": true, \"type\": \"number\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"_id\", \"searchable\": false, \"indexed\": false, \"doc_values\": false, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": true, \"name\": \"_type\", \"searchable\": true, \"indexed\": false, \"doc_values\": false, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"_index\", \"searchable\": false, \"indexed\": false, \"doc_values\": false, \"type\": \"string\", \"scripted\": false}, {\"count\": 0, \"analyzed\": false, \"aggregatable\": false, \"name\": \"_score\", \"searchable\": false, \"indexed\": false, \"doc_values\": false, \"type\": \"number\", \"scripted\": false}]", - "fieldFormatMap": "{\"@timestamp\": {\"id\": \"date\"}}", - "timeFieldName": "@timestamp", - "title": "journalbeat-*" - }, - "version": 1, - "type": "index-pattern", - "id": "journalbeat-*" - } - ] -} \ No newline at end of file diff --git a/journalbeat/beater/journalbeat.go b/journalbeat/beater/journalbeat.go deleted file mode 100644 index 6694dbd8a9a..00000000000 --- a/journalbeat/beater/journalbeat.go +++ /dev/null @@ -1,126 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package beater - -import ( - "fmt" - "sync" - "time" - - "github.com/elastic/beats/v7/journalbeat/checkpoint" - "github.com/elastic/beats/v7/journalbeat/cmd/instance" - "github.com/elastic/beats/v7/journalbeat/input" - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/common/acker" - "github.com/elastic/beats/v7/libbeat/common/cfgwarn" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/libbeat/publisher/pipetool" - - "github.com/elastic/beats/v7/journalbeat/config" - _ "github.com/elastic/beats/v7/journalbeat/include" - - // Add dedicated processors - _ "github.com/elastic/beats/v7/libbeat/processors/decode_csv_fields" -) - -// Journalbeat instance -type Journalbeat struct { - inputs []*input.Input - done chan struct{} - config config.Config - - pipeline beat.Pipeline - checkpoint *checkpoint.Checkpoint - logger *logp.Logger -} - -// New returns a new Journalbeat instance -func New(b *beat.Beat, cfg *common.Config) (beat.Beater, error) { - cfgwarn.Experimental("Journalbeat is experimental.") - - config := config.DefaultConfig - if err := cfg.Unpack(&config); err != nil { - return nil, fmt.Errorf("error reading config file: %v", err) - } - - done := make(chan struct{}) - cp, err := checkpoint.NewCheckpoint(config.RegistryFile, 10, 1*time.Second) - if err != nil { - return nil, err - } - - instance.SetupJournalMetrics() - - var inputs []*input.Input - for _, c := range config.Inputs { - i, err := input.New(c, b.Info, done, cp.States()) - if err != nil { - return nil, err - } - inputs = append(inputs, i) - } - - bt := &Journalbeat{ - inputs: inputs, - done: done, - config: config, - pipeline: b.Publisher, - checkpoint: cp, - logger: logp.NewLogger("journalbeat"), - } - - return bt, nil -} - -// Run sets up the ACK handler and starts inputs to read and forward events to outputs. -func (bt *Journalbeat) Run(b *beat.Beat) error { - bt.logger.Info("journalbeat is running! Hit CTRL-C to stop it.") - defer bt.logger.Info("journalbeat is stopping") - - defer bt.checkpoint.Shutdown() - - pipeline := pipetool.WithACKer(b.Publisher, acker.LastEventPrivateReporter(func(_ int, private interface{}) { - if st, ok := private.(checkpoint.JournalState); ok { - bt.checkpoint.PersistState(st) - } - })) - - var wg sync.WaitGroup - for _, i := range bt.inputs { - wg.Add(1) - go bt.runInput(i, &wg, pipeline) - } - - wg.Wait() - - return nil -} - -func (bt *Journalbeat) runInput(i *input.Input, wg *sync.WaitGroup, pipeline beat.Pipeline) { - defer wg.Done() - i.Run(pipeline) -} - -// Stop stops the beat and its inputs. -func (bt *Journalbeat) Stop() { - close(bt.done) - for _, i := range bt.inputs { - i.Stop() - } -} diff --git a/journalbeat/checkpoint/checkpoint.go b/journalbeat/checkpoint/checkpoint.go deleted file mode 100644 index 2ba4140182a..00000000000 --- a/journalbeat/checkpoint/checkpoint.go +++ /dev/null @@ -1,352 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -// Package checkpoint persists event log state information to disk so that -// event log monitoring can resume from the last read event in the case of a -// restart or unexpected interruption. -package checkpoint - -import ( - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "sort" - "sync" - "time" - - "gopkg.in/yaml.v2" - - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/libbeat/paths" -) - -// Checkpoint persists event log state information to disk. -type Checkpoint struct { - wg sync.WaitGroup // WaitGroup used to wait on the shutdown of the checkpoint worker. - done chan struct{} // Channel for shutting down the checkpoint worker. - once sync.Once // Used to guarantee shutdown happens once. - file string // File where the state is persisted. - fileLock sync.RWMutex // Lock that protects concurrent reads/writes to file. - numUpdates int // Number of updates received since last persisting to disk. - maxUpdates int // Maximum number of updates to buffer before persisting to disk. - flushInterval time.Duration // Maximum time interval that can pass before persisting to disk. - sort []string // Slice used for sorting states map (store to save on mallocs). - - lock sync.RWMutex - states map[string]JournalState - - save chan JournalState -} - -// PersistedState represents the format of the data persisted to disk. -type PersistedState struct { - UpdateTime time.Time `yaml:"update_time"` - States []JournalState `yaml:"journal_entries"` -} - -// JournalState represents the state of an individual event log. -type JournalState struct { - Path string `yaml:"path"` - Cursor string `yaml:"cursor"` - RealtimeTimestamp uint64 `yaml:"realtime_timestamp"` - MonotonicTimestamp uint64 `yaml:"monotonic_timestamp"` -} - -// NewCheckpoint creates and returns a new Checkpoint. This method loads state -// information from disk if it exists and starts a goroutine for persisting -// state information to disk. Shutdown should be called when finished to -// guarantee any in-memory state information is flushed to disk. -// -// file is the name of the file where event log state is persisted as YAML. -// maxUpdates is the maximum number of updates checkpoint will accept before -// triggering a flush to disk. interval is maximum amount of time that can -// pass since the last flush before triggering a flush to disk (minimum value -// is 1s). -func NewCheckpoint(file string, maxUpdates int, interval time.Duration) (*Checkpoint, error) { - c := &Checkpoint{ - done: make(chan struct{}), - file: file, - maxUpdates: maxUpdates, - flushInterval: interval, - sort: make([]string, 0, 10), - states: make(map[string]JournalState), - save: make(chan JournalState, 1), - } - - err := c.findRegistryFile() - if err != nil { - return nil, fmt.Errorf("error locating the proper registry file: %+v", err) - } - - // Minimum batch size. - if c.maxUpdates < 1 { - c.maxUpdates = 1 - } - - // Minimum flush interval. - if c.flushInterval < time.Second { - c.flushInterval = time.Second - } - - // Read existing state information: - ps, err := c.read() - if err != nil { - return nil, err - } - - if ps != nil { - for _, state := range ps.States { - c.states[state.Path] = state - } - } - - // Write the state file to verify we have have permissions. - err = c.flush() - if err != nil { - return nil, err - } - - c.wg.Add(1) - go c.run() - return c, nil -} - -// Previously the registry file was written to the root folder. It was fixed on -// 7.x but not on 6.x. Thus, migration is needed, so users avoid losing state info. -func (c *Checkpoint) findRegistryFile() error { - migratedPath := paths.Resolve(paths.Data, c.file) - - fs, err := os.Stat(c.file) - if os.IsNotExist(err) { - c.file = migratedPath - return nil - } else if err != nil { - return fmt.Errorf("error accessing previous registry file: %+v", err) - } - - // if two files are the same, do not do anything - migratedFs, err := os.Stat(migratedPath) - if err == nil { - if os.SameFile(fs, migratedFs) { - return nil - } - } - - f, err := os.Open(c.file) - if err != nil { - return err - } - defer f.Close() - - target, err := os.OpenFile(migratedPath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, fs.Mode()) - if err != nil { - return err - } - defer target.Close() - - if _, err := io.Copy(target, f); err != nil { - return err - } - - err = target.Sync() - if err != nil { - return fmt.Errorf("error while syncing new registry file to disk: %+v", err) - } - - c.file = migratedPath - - p := filepath.Dir(migratedPath) - pf, err := os.Open(p) - if err != nil { - return nil - } - defer pf.Close() - pf.Sync() - - return nil -} - -// run is worker loop that reads incoming state information from the save -// channel and persists it when the number of changes reaches maxEvents or -// the amount of time since the last disk write reaches flushInterval. -func (c *Checkpoint) run() { - defer c.wg.Done() - defer c.persist() - - flushTimer := time.NewTimer(c.flushInterval) - defer flushTimer.Stop() -loop: - for { - select { - case <-c.done: - break loop - case s := <-c.save: - c.lock.Lock() - c.states[s.Path] = s - c.lock.Unlock() - c.numUpdates++ - if c.numUpdates < c.maxUpdates { - continue - } - case <-flushTimer.C: - } - - c.persist() - flushTimer.Reset(c.flushInterval) - } -} - -// Shutdown stops the checkpoint worker (which persists any state to disk as -// it stops). This method blocks until the checkpoint worker shutdowns. Calling -// this method more once is safe and has no effect. -func (c *Checkpoint) Shutdown() { - c.once.Do(func() { - close(c.done) - c.wg.Wait() - }) -} - -// States returns the current in-memory event log state. This state information -// is bootstrapped with any data found on disk at creation time. -func (c *Checkpoint) States() map[string]JournalState { - c.lock.RLock() - defer c.lock.RUnlock() - - copy := make(map[string]JournalState) - for k, v := range c.states { - copy[k] = v - } - - return copy -} - -// Persist queues the given event log state information to be written to disk. -func (c *Checkpoint) Persist(path, cursor string, realTs, monotonicTs uint64) { - c.PersistState(JournalState{ - Path: path, - Cursor: cursor, - RealtimeTimestamp: realTs, - MonotonicTimestamp: monotonicTs, - }) -} - -// PersistState queues the given event log state to be written to disk. -func (c *Checkpoint) PersistState(st JournalState) { - c.save <- st -} - -// persist writes the current state to disk if the in-memory state is dirty. -func (c *Checkpoint) persist() bool { - if c.numUpdates == 0 { - return false - } - - err := c.flush() - if err != nil { - return false - } - - logp.Debug("checkpoint", "Checkpoint saved to disk. numUpdates=%d", - c.numUpdates) - c.numUpdates = 0 - return true -} - -// flush writes the current state to disk. -func (c *Checkpoint) flush() error { - c.fileLock.Lock() - defer c.fileLock.Unlock() - - tempFile := c.file + ".new" - file, err := create(tempFile) - if os.IsNotExist(err) { - // Try to create directory if it does not exist. - if createDirErr := c.createDir(); createDirErr == nil { - file, err = create(tempFile) - } - } - - if err != nil { - return fmt.Errorf("Failed to flush state to disk. %v", err) - } - - // Sort persisted eventLogs by name. - c.sort = c.sort[:0] - for k := range c.states { - c.sort = append(c.sort, k) - } - sort.Strings(c.sort) - - ps := PersistedState{ - UpdateTime: time.Now().UTC(), - States: make([]JournalState, len(c.sort)), - } - for i, name := range c.sort { - ps.States[i] = c.states[name] - } - - data, err := yaml.Marshal(ps) - if err != nil { - file.Close() - return fmt.Errorf("Failed to flush state to disk. Could not marshal "+ - "data to YAML. %v", err) - } - - _, err = file.Write(data) - if err != nil { - file.Close() - return fmt.Errorf("Failed to flush state to disk. Could not write to "+ - "%s. %v", tempFile, err) - } - - file.Close() - err = os.Rename(tempFile, c.file) - return err -} - -// read loads the persisted state from disk. If the file does not exists then -// the method returns nil and no error. -func (c *Checkpoint) read() (*PersistedState, error) { - c.fileLock.RLock() - defer c.fileLock.RUnlock() - - contents, err := ioutil.ReadFile(c.file) - if err != nil { - if os.IsNotExist(err) { - err = nil - } - return nil, err - } - - ps := &PersistedState{} - err = yaml.Unmarshal(contents, ps) - if err != nil { - return nil, err - } - - return ps, nil -} - -// createDir creates the directory in which the state file will reside if the -// directory does not already exist. -func (c *Checkpoint) createDir() error { - dir := filepath.Dir(c.file) - logp.Info("Creating %s if it does not exist.", dir) - return os.MkdirAll(dir, os.FileMode(0750)) -} diff --git a/journalbeat/checkpoint/checkpoint_test.go b/journalbeat/checkpoint/checkpoint_test.go deleted file mode 100644 index 6f6aa780d9a..00000000000 --- a/journalbeat/checkpoint/checkpoint_test.go +++ /dev/null @@ -1,223 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -//go:build !integration -// +build !integration - -package checkpoint - -import ( - "io/ioutil" - "os" - "path/filepath" - "runtime" - "testing" - "time" - - "github.com/stretchr/testify/assert" -) - -func eventually(t *testing.T, predicate func() (bool, error), timeout time.Duration) { - const minInterval = time.Millisecond * 5 - const maxInterval = time.Millisecond * 500 - - checkInterval := timeout / 100 - if checkInterval < minInterval { - checkInterval = minInterval - } - if checkInterval > maxInterval { - checkInterval = maxInterval - } - for deadline, first := time.Now().Add(timeout), true; first || time.Now().Before(deadline); first = false { - ok, err := predicate() - if err != nil { - t.Fatal("predicate failed with error:", err) - return - } - if ok { - return - } - time.Sleep(checkInterval) - } - t.Fatal("predicate is not true after", timeout) -} - -// Test that a write is triggered when the maximum number of updates is reached. -func TestWriteMaxUpdates(t *testing.T) { - t.Skip("Duplicate of winlogbeat/checkpoint") - dir, err := ioutil.TempDir("", "wlb-checkpoint-test") - if err != nil { - t.Fatal(err) - } - defer func() { - err := os.RemoveAll(dir) - if err != nil { - t.Fatal(err) - } - }() - - file := filepath.Join(dir, "some", "new", "dir", ".winlogbeat.yml") - if !assert.False(t, fileExists(file), "%s should not exist", file) { - return - } - - cp, err := NewCheckpoint(file, 2, time.Hour) - if err != nil { - t.Fatal(err) - } - defer cp.Shutdown() - - // Send update - it's not written to disk but it's in memory. - cp.Persist("", "", 123456, 123456) - found := false - eventually(t, func() (bool, error) { - _, found = cp.States()[""] - return found, nil - }, time.Second*15) - assert.True(t, found) - - ps, err := cp.read() - if err != nil { - t.Fatal("read failed", err) - } - assert.Len(t, ps.States, 0) - - // Send update - it is written to disk. - cp.Persist("", "", 123456, 123456) - eventually(t, func() (bool, error) { - ps, err = cp.read() - return ps != nil && len(ps.States) > 0, err - }, time.Second*15) - - if assert.Len(t, ps.States, 1, "state not written, could be a flush timing issue, retry") { - assert.Equal(t, "", ps.States[0].Path) - assert.Equal(t, "", ps.States[0].Cursor) - } -} - -// Test that a write is triggered when the maximum time period since the last -// write is reached. -func TestWriteTimedFlush(t *testing.T) { - t.Skip("Duplicate of winlogbeat/checkpoint") - dir, err := ioutil.TempDir("", "wlb-checkpoint-test") - if err != nil { - t.Fatal(err) - } - defer func() { - err := os.RemoveAll(dir) - if err != nil { - t.Fatal(err) - } - }() - - file := filepath.Join(dir, ".winlogbeat.yml") - if !assert.False(t, fileExists(file), "%s should not exist", file) { - return - } - - cp, err := NewCheckpoint(file, 100, time.Second) - if err != nil { - t.Fatal(err) - } - defer cp.Shutdown() - - // Send update then wait longer than the flush interval and it should be - // on disk. - cp.Persist("", "cursor", 123456, 123456) - eventually(t, func() (bool, error) { - ps, err := cp.read() - return ps != nil && len(ps.States) > 0, err - }, time.Second*15) - - ps, err := cp.read() - if err != nil { - t.Fatal("read failed", err) - } - if assert.Len(t, ps.States, 1) { - assert.Equal(t, "", ps.States[0].Path) - assert.Equal(t, "cursor", ps.States[0].Cursor) - } -} - -// Test that createDir creates the directory with 0750 permissions. -func TestCreateDir(t *testing.T) { - t.Skip("Duplicate of winlogbeat/checkpoint") - dir, err := ioutil.TempDir("", "wlb-checkpoint-test") - if err != nil { - t.Fatal(err) - } - defer func() { - err := os.RemoveAll(dir) - if err != nil { - t.Fatal(err) - } - }() - - stateDir := filepath.Join(dir, "state", "dir", "does", "not", "exists") - file := filepath.Join(stateDir, ".winlogbeat.yml") - cp := &Checkpoint{file: file} - - if !assert.False(t, fileExists(file), "%s should not exist", file) { - return - } - if err = cp.createDir(); err != nil { - t.Fatal("createDir", err) - } - if !assert.True(t, fileExists(stateDir), "%s should exist", file) { - return - } - - // mkdir on Windows does not pass the POSIX mode to the CreateDirectory - // syscall so doesn't test the mode. - if runtime.GOOS != "windows" { - fileInfo, err := os.Stat(stateDir) - if assert.NoError(t, err) { - assert.Equal(t, true, fileInfo.IsDir()) - assert.Equal(t, os.FileMode(0750), fileInfo.Mode().Perm()) - } - } -} - -// Test createDir when the directory already exists to verify that no error is -// returned. -func TestCreateDirAlreadyExists(t *testing.T) { - t.Skip("Duplicate of winlogbeat/checkpoint") - dir, err := ioutil.TempDir("", "wlb-checkpoint-test") - if err != nil { - t.Fatal(err) - } - defer func() { - err := os.RemoveAll(dir) - if err != nil { - t.Fatal(err) - } - }() - - file := filepath.Join(dir, ".winlogbeat.yml") - cp := &Checkpoint{file: file} - - if !assert.True(t, fileExists(dir), "%s should exist", file) { - return - } - assert.NoError(t, cp.createDir()) -} - -// fileExists returns true if the specified file exists. -func fileExists(file string) bool { - _, err := os.Stat(file) - return !os.IsNotExist(err) -} diff --git a/journalbeat/checkpoint/file_unix.go b/journalbeat/checkpoint/file_unix.go deleted file mode 100644 index 248b5301955..00000000000 --- a/journalbeat/checkpoint/file_unix.go +++ /dev/null @@ -1,27 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -//go:build !windows -// +build !windows - -package checkpoint - -import "os" - -func create(path string) (*os.File, error) { - return os.OpenFile(path, os.O_RDWR|os.O_CREATE|os.O_TRUNC|os.O_SYNC, 0600) -} diff --git a/journalbeat/checkpoint/file_windows.go b/journalbeat/checkpoint/file_windows.go deleted file mode 100644 index 267086398f3..00000000000 --- a/journalbeat/checkpoint/file_windows.go +++ /dev/null @@ -1,54 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package checkpoint - -import ( - "os" - "syscall" -) - -const ( - _FILE_FLAG_WRITE_THROUGH = 0x80000000 -) - -func create(path string) (*os.File, error) { - return createWriteThroughFile(path) -} - -// createWriteThroughFile creates a file whose write operations do not go -// through any intermediary cache, they go directly to disk. -func createWriteThroughFile(path string) (*os.File, error) { - if len(path) == 0 { - return nil, syscall.ERROR_FILE_NOT_FOUND - } - pathp, err := syscall.UTF16PtrFromString(path) - if err != nil { - return nil, err - } - - h, err := syscall.CreateFile( - pathp, // Path - syscall.GENERIC_READ|syscall.GENERIC_WRITE, // Access Mode - uint32(syscall.FILE_SHARE_READ|syscall.FILE_SHARE_WRITE), // Share Mode - nil, // Security Attributes - syscall.CREATE_ALWAYS, // Create Mode - uint32(syscall.FILE_ATTRIBUTE_NORMAL|_FILE_FLAG_WRITE_THROUGH), // Flags and Attributes - 0) // Template File - - return os.NewFile(uintptr(h), path), err -} diff --git a/journalbeat/cmd/instance/metrics.go b/journalbeat/cmd/instance/metrics.go deleted file mode 100644 index 3d75426c809..00000000000 --- a/journalbeat/cmd/instance/metrics.go +++ /dev/null @@ -1,69 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -//go:build linux && cgo -// +build linux,cgo - -package instance - -import ( - "fmt" - - "github.com/coreos/go-systemd/v22/sdjournal" - - "github.com/elastic/beats/v7/libbeat/monitoring" -) - -var ( - metrics *monitoring.Registry - journals map[string]*sdjournal.Journal -) - -// SetupJournalMetrics initializes and registers monitoring functions. -func SetupJournalMetrics() { - metrics = monitoring.Default.NewRegistry("journalbeat") - journals = make(map[string]*sdjournal.Journal) - - monitoring.NewFunc(metrics, "journals", reportJournalSizes, monitoring.Report) -} - -// AddJournalToMonitor adds a new journal which has to be monitored. -func AddJournalToMonitor(path string, journal *sdjournal.Journal) { - journals[path] = journal -} - -// StopMonitoringJournal stops monitoring the journal under the path. -func StopMonitoringJournal(path string) { - delete(journals, path) -} - -func reportJournalSizes(m monitoring.Mode, V monitoring.Visitor) { - i := 0 - for path, journal := range journals { - s, err := journal.GetUsage() - if err != nil { - continue - } - - ns := fmt.Sprintf("journal_%d", i) - monitoring.ReportNamespace(V, ns, func() { - monitoring.ReportString(V, "path", path) - monitoring.ReportInt(V, "size_in_bytes", int64(s)) - }) - i++ - } -} diff --git a/journalbeat/cmd/instance/metrics_other.go b/journalbeat/cmd/instance/metrics_other.go deleted file mode 100644 index 990d5f06b09..00000000000 --- a/journalbeat/cmd/instance/metrics_other.go +++ /dev/null @@ -1,27 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -//go:build !linux || !cgo -// +build !linux !cgo - -package instance - -// SetupJournalMetrics initializes and registers monitoring functions. -func SetupJournalMetrics() {} - -// StopMonitoringJournal stops monitoring the journal under the path. -func StopMonitoringJournal(path string) {} diff --git a/journalbeat/cmd/root.go b/journalbeat/cmd/root.go deleted file mode 100644 index a7a2d8ddcaa..00000000000 --- a/journalbeat/cmd/root.go +++ /dev/null @@ -1,64 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package cmd - -import ( - "github.com/elastic/beats/v7/journalbeat/beater" - "github.com/elastic/beats/v7/libbeat/cmd" - "github.com/elastic/beats/v7/libbeat/cmd/instance" - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/ecs" - "github.com/elastic/beats/v7/libbeat/publisher/processing" - - // Import processors. - _ "github.com/elastic/beats/v7/libbeat/processors/script" - _ "github.com/elastic/beats/v7/libbeat/processors/timestamp" -) - -const ( - // Name of this beat. - Name = "journalbeat" -) - -// withECSVersion is a modifier that adds ecs.version to events. -var withECSVersion = processing.WithFields(common.MapStr{ - "ecs": common.MapStr{ - "version": ecs.Version, - }, -}) - -// RootCmd to handle beats cli -var RootCmd *cmd.BeatsRootCmd - -// JournalbeatSettings contains the default settings for journalbeat -func JournalbeatSettings() instance.Settings { - return instance.Settings{ - Name: Name, - HasDashboards: false, - Processing: processing.MakeDefaultSupport(true, withECSVersion, processing.WithHost, processing.WithAgentMeta()), - } -} - -// Initialize initializes the entrypoint commands for journalbeat -func Initialize(settings instance.Settings) *cmd.BeatsRootCmd { - return cmd.GenRootCmdWithSettings(beater.New, settings) -} - -func init() { - RootCmd = Initialize(JournalbeatSettings()) -} diff --git a/journalbeat/config/config.go b/journalbeat/config/config.go deleted file mode 100644 index 1771a2a4e7c..00000000000 --- a/journalbeat/config/config.go +++ /dev/null @@ -1,38 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -// Config is put into a different package to prevent cyclic imports in case -// it is needed in several locations - -package config - -import ( - "github.com/elastic/beats/v7/libbeat/common" -) - -// Config stores the configuration of Journalbeat -type Config struct { - Inputs []*common.Config `config:"inputs"` - RegistryFile string `config:"registry_file"` -} - -var ( - // DefaultConfig are the defaults of a Journalbeat instance - DefaultConfig = Config{ - RegistryFile: "registry", - } -) diff --git a/journalbeat/conftest.py b/journalbeat/conftest.py deleted file mode 100644 index 2f3f8199559..00000000000 --- a/journalbeat/conftest.py +++ /dev/null @@ -1,4 +0,0 @@ -import os -import sys - -sys.path.append(os.path.join(os.path.dirname(__file__), '../libbeat/tests/system')) diff --git a/journalbeat/docs/config-options.asciidoc b/journalbeat/docs/config-options.asciidoc deleted file mode 100644 index 106318ceb6d..00000000000 --- a/journalbeat/docs/config-options.asciidoc +++ /dev/null @@ -1,251 +0,0 @@ -[id="configuration-{beatname_lc}-options"] -== Configure inputs - -++++ -Inputs -++++ - -By default, {beatname_uc} reads log events from the default systemd journals. To -specify other journal files, set the <<{beatname_lc}-paths,`paths`>> option in -the +{beatname_lc}.inputs+ section of the +{beatname_lc}.yml+ file. Each path -can be a directory path (to collect events from all journals in a directory), or -a file path. For example: - -["source","sh",subs="attributes"] ----- -{beatname_lc}.inputs: -- paths: - - "/dev/log" - - "/var/log/messages/my-journal-file.journal" ----- - -Within the configuration file, you can also specify options that control how -{beatname_uc} reads the journal files and which fields are sent to the -configured output. See <<{beatname_lc}-options>> for a list of available -options. - -The following examples show how to configure {beatname_uc} for some common use -cases. - -[[monitor-multiple-journals]] -.Example 1: Monitor multiple journals under the same directory -This example configures {beatname_uc} to read from multiple journals that are -stored under the same directory. {beatname_uc} merges all journals under the -directory into a single event stream and reads the events. With `seek` set to -`cursor`, {beatname_uc} starts reading at the beginning of the journal, but will -continue reading at the last known position after a reload or restart. -["source","sh",subs="attributes"] ----- -{beatname_lc}.inputs: -- paths: ["/path/to/journal/directory"] - seek: cursor ----- - -[[filter-using-field-names]] -.Example 2: Fetch log events for Redis running on Docker (uses field names from systemd) -This example configures {beatname_uc} to fetch log events for Redis running in a -Docker container. The fields are matched using field names from the systemd -journal. -["source","sh",subs="attributes"] ----- -{beatname_lc}.inputs: -- paths: [] - include_matches: - - "CONTAINER_TAG=redis" - - "_COMM=redis" ----- - -[[filter-using-translated-names]] -.Example 3: Fetch log events for Redis running on Docker (uses translated field names) -This example also configures {beatname_uc} to fetch log events for Redis running -in a Docker container. However, in this example the fields are matched using the -<> provided by {beatname_uc}. -["source","sh",subs="attributes"] ----- -{beatname_lc}.inputs: -- paths: [] - include_matches: - - "container.image.tag=redis" - - "process.name=redis" ----- - -[id="{beatname_lc}-options"] -[float] -=== Configuration options -You can specify the following options to configure how {beatname_uc} reads the -journal files. - -[float] -[id="{beatname_lc}-id"] -==== `id` - -An optional unique identifier for the input. By providing a unique `id` you can -operate multiple inputs on the same journal. This allows each input's cursor -to be persisted independently in the registry file. - ----- -{beatname_lc}.inputs: -- id: consul.service - paths: [] - include_matches: - - _SYSTEMD_UNIT=consul.service - -- id: vault.service - paths: [] - include_matches: - - _SYSTEMD_UNIT=vault.service ----- - -[float] -[id="{beatname_lc}-paths"] -==== `paths` - -A list of paths that will be crawled and fetched. Each path can be a directory -path (to collect events from all journals in a directory), or a file path. If -you specify a directory, {beatname_uc} merges all journals under the directory -into a single journal and reads them. - -If no paths are specified, {beatname_uc} reads from the default journal. - -[float] -[id="{beatname_lc}-backoff"] -==== `backoff` - -The number of seconds to wait before trying to read again from journals. The -default is 1s. - -[float] -[id="{beatname_lc}-max-backoff"] -==== `max_backoff` - -The maximum number of seconds to wait before attempting to read again from -journals. The default is 60s. - -[float] -[id="seek"] -==== `seek` - -The position to start reading the journal from. Valid settings are: - -* `head`: Starts reading at the beginning of the journal. After a restart, -{beatname_uc} resends all log messages in the journal. -* `tail`: Starts reading at the end of the journal. After a restart, -{beatname_uc} resends the last message, which might result in duplicates. If -multiple log messages are written to a journal while {beatname_uc} is down, -only the last log message is sent on restart. -* `cursor`: On first read, starts reading at the beginning of the journal. After a -reload or restart, continues reading at the last known position. - -When specified under `paths`, the `seek` setting applies to all journals under -the configured paths. When specified directly under the +{beatname_lc}+ -namespace, the setting applies to all journals read by {beatname_uc}. - -If you have old log files and want to skip lines, start {beatname_uc} with -`seek: tail` specified. Then stop {beatname_uc}, set `seek: cursor`, and restart -{beatname_uc}. - -[float] -[id="include-matches"] -==== `include_matches` - -A list of filter expressions used to match fields. The format of the expression -is `field=value`. {beatname_uc} fetches all events that exactly match the -expressions. Pattern matching is not supported. - -To reference fields, use one of the following: - -* The field name used by the systemd journal. For example, -`CONTAINER_TAG=redis` (<>). -* The <> used by -{beatname_uc}. For example, `container.image.tag=redis` -(<>). {beatname_uc} -does not translate all fields from the journal. For custom fields, use the name -specified in the systemd journal. - -When specified under `paths`, the `include_matches` filter is applied to all -journals under the configured paths. When specified directly under the -+{beatname_lc}+ namespace, the setting applies to all journals read by -{beatname_uc}. - -[float] -[[translated-fields]] -=== Translated field names - -You can use the following translated names in filter expressions to reference -journald fields: - -[horizontal] -*Journald field name*:: *Translated name* -`COREDUMP_UNIT`:: `journald.coredump.unit` -`COREDUMP_USER_UNIT`:: `journald.coredump.user_unit` -`OBJECT_AUDIT_LOGINUID`:: `journald.object.audit.login_uid` -`OBJECT_AUDIT_SESSION`:: `journald.object.audit.session` -`OBJECT_CMDLINE`:: `journald.object.cmd` -`OBJECT_COMM`:: `journald.object.name` -`OBJECT_EXE`:: `journald.object.executable` -`OBJECT_GID`:: `journald.object.gid` -`OBJECT_PID`:: `journald.object.pid` -`OBJECT_SYSTEMD_OWNER_UID`:: `journald.object.systemd.owner_uid` -`OBJECT_SYSTEMD_SESSION`:: `journald.object.systemd.session` -`OBJECT_SYSTEMD_UNIT`:: `journald.object.systemd.unit` -`OBJECT_SYSTEMD_USER_UNIT`:: `journald.object.systemd.user_unit` -`OBJECT_UID`:: `journald.object.uid` -`_AUDIT_LOGINUID`:: `process.audit.login_uid` -`_AUDIT_SESSION`:: `process.audit.session` -`_BOOT_ID`:: `host.boot_id` -`_CAP_EFFECTIVE`:: `process.capabilites` -`_CMDLINE`:: `process.cmd` -`_CODE_FILE`:: `journald.code.file` -`_CODE_FUNC`:: `journald.code.func` -`_CODE_LINE`:: `journald.code.line` -`_COMM`:: `process.name` -`_EXE`:: `process.executable` -`_GID`:: `process.uid` -`_HOSTNAME`:: `host.name` -`_KERNEL_DEVICE`:: `journald.kernel.device` -`_KERNEL_SUBSYSTEM`:: `journald.kernel.subsystem` -`_MACHINE_ID`:: `host.id` -`_MESSAGE`:: `message` -`_PID`:: `process.pid` -`_PRIORITY`:: `syslog.priority` -`_SYSLOG_FACILITY`:: `syslog.facility` -`_SYSLOG_IDENTIFIER`:: `syslog.identifier` -`_SYSLOG_PID`:: `syslog.pid` -`_SYSTEMD_CGROUP`:: `systemd.cgroup` -`_SYSTEMD_INVOCATION_ID`:: `systemd.invocation_id` -`_SYSTEMD_OWNER_UID`:: `systemd.owner_uid` -`_SYSTEMD_SESSION`:: `systemd.session` -`_SYSTEMD_SLICE`:: `systemd.slice` -`_SYSTEMD_UNIT`:: `systemd.unit` -`_SYSTEMD_USER_SLICE`:: `systemd.user_slice` -`_SYSTEMD_USER_UNIT`:: `systemd.user_unit` -`_TRANSPORT`:: `systemd.transport` -`_UDEV_DEVLINK`:: `journald.kernel.device_symlinks` -`_UDEV_DEVNODE`:: `journald.kernel.device_node_path` -`_UDEV_SYSNAME`:: `journald.kernel.device_name` -`_UID`:: `process.uid` - - -The following translated fields for -https://docs.docker.com/config/containers/logging/journald/[Docker] are also -available: - -[horizontal] -`CONTAINER_ID`:: `container.id_truncated` -`CONTAINER_ID_FULL`:: `container.id` -`CONTAINER_NAME`:: `container.name` -`CONTAINER_PARTIAL_MESSAGE`:: `container.partial` -`CONTAINER_TAG`:: `container.image.tag` - -[float] -[id="index"] -==== `index` - -If present, this formatted string overrides the index for events from this input -(for elasticsearch outputs), or sets the `raw_index` field of the event's -metadata (for other outputs). This string can only refer to the agent name and -version and the event timestamp; for access to dynamic fields, use -`output.elasticsearch.index` or a processor. - -Example value: `"%{[agent.name]}-myindex-%{+yyyy.MM.dd}"` might -expand to `"journalbeat-myindex-2019.12.13"`. diff --git a/journalbeat/docs/configuring-howto.asciidoc b/journalbeat/docs/configuring-howto.asciidoc deleted file mode 100644 index 246880468e3..00000000000 --- a/journalbeat/docs/configuring-howto.asciidoc +++ /dev/null @@ -1,59 +0,0 @@ -[id="configuring-howto-{beatname_lc}"] -= Configure {beatname_uc} - -[partintro] --- -++++ -Configure -++++ - -include::{libbeat-dir}/shared/configuring-intro.asciidoc[] - -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <<{beatname_lc}-reference-yml>> - --- - -include::./config-options.asciidoc[] - -include::./general-options.asciidoc[] - -include::{libbeat-dir}/shared-path-config.asciidoc[] - -include::{libbeat-dir}/outputconfig.asciidoc[] - -ifndef::no_kerberos[] -include::{libbeat-dir}/shared-kerberos-config.asciidoc[] -endif::[] - -include::{libbeat-dir}/shared-ssl-config.asciidoc[] - -include::{libbeat-dir}/shared-ilm.asciidoc[] - -include::{libbeat-dir}/setup-config.asciidoc[] - -include::./filtering.asciidoc[] - -include::{libbeat-dir}/queueconfig.asciidoc[] - -include::{libbeat-dir}/loggingconfig.asciidoc[] - -include::{libbeat-dir}/http-endpoint.asciidoc[] - -include::{libbeat-dir}/regexp.asciidoc[] - -include::{libbeat-dir}/shared-instrumentation.asciidoc[] - -include::{libbeat-dir}/reference-yml.asciidoc[] diff --git a/journalbeat/docs/faq.asciidoc b/journalbeat/docs/faq.asciidoc deleted file mode 100644 index bbe89a61c72..00000000000 --- a/journalbeat/docs/faq.asciidoc +++ /dev/null @@ -1,10 +0,0 @@ -[[faq]] -== Common problems - -This section describes common problems you might encounter with -{beatname_uc}. Also check out the -https://discuss.elastic.co/c/beats/{beatname_lc}[{beatname_uc} discussion forum]. - -include::{libbeat-dir}/faq-limit-bandwidth.asciidoc[] - -include::{libbeat-dir}/shared-faq.asciidoc[] diff --git a/journalbeat/docs/fields.asciidoc b/journalbeat/docs/fields.asciidoc deleted file mode 100644 index f69b2225c1f..00000000000 --- a/journalbeat/docs/fields.asciidoc +++ /dev/null @@ -1,16301 +0,0 @@ - -//// -This file is generated! See _meta/fields.yml and scripts/generate_fields_docs.py -//// - -[[exported-fields]] -= Exported fields - -[partintro] - --- -This document describes the fields that are exported by Journalbeat. They are -grouped in the following categories: - -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> -* <> - --- -[[exported-fields-beat-common]] -== Beat fields - -Contains common beat fields available in all event types. - - - -*`agent.hostname`*:: -+ --- -Deprecated - use agent.name or agent.id to identify an agent. - - -type: alias - -alias to: agent.name - --- - -*`beat.timezone`*:: -+ --- -type: alias - -alias to: event.timezone - --- - -*`fields`*:: -+ --- -Contains user configurable fields. - - -type: object - --- - -*`beat.name`*:: -+ --- -type: alias - -alias to: host.name - --- - -*`beat.hostname`*:: -+ --- -type: alias - -alias to: agent.name - --- - -*`timeseries.instance`*:: -+ --- -Time series instance id - -type: keyword - --- - -[[exported-fields-cloud]] -== Cloud provider metadata fields - -Metadata from cloud providers added by the add_cloud_metadata processor. - - - -*`cloud.image.id`*:: -+ --- -Image ID for the cloud instance. - - -example: ami-abcd1234 - --- - -*`meta.cloud.provider`*:: -+ --- -type: alias - -alias to: cloud.provider - --- - -*`meta.cloud.instance_id`*:: -+ --- -type: alias - -alias to: cloud.instance.id - --- - -*`meta.cloud.instance_name`*:: -+ --- -type: alias - -alias to: cloud.instance.name - --- - -*`meta.cloud.machine_type`*:: -+ --- -type: alias - -alias to: cloud.machine.type - --- - -*`meta.cloud.availability_zone`*:: -+ --- -type: alias - -alias to: cloud.availability_zone - --- - -*`meta.cloud.project_id`*:: -+ --- -type: alias - -alias to: cloud.project.id - --- - -*`meta.cloud.region`*:: -+ --- -type: alias - -alias to: cloud.region - --- - -[[exported-fields-common]] -== Common Journalbeat fields - -Contains common fields available in all event types. - - - -[float] -=== coredump - -Fields used by systemd-coredump kernel helper. - - - -*`coredump.unit`*:: -+ --- -Annotations of messages containing coredumps from system units. - - -type: keyword - --- - -*`coredump.user_unit`*:: -+ --- -Annotations of messages containing coredumps from user units. - - -type: keyword - --- - -[float] -=== journald - -Fields provided by journald. - - - -[float] -=== object - -Fields to log on behalf of a different program. - - - -[float] -=== audit - -Audit fields of event. - - - -*`journald.object.audit.login_uid`*:: -+ --- -The login UID of the object process. - - -type: long - -example: 1000 - -required: False - --- - -*`journald.object.audit.session`*:: -+ --- -The audit session of the object process. - - -type: long - -example: 3 - -required: False - --- - -*`journald.object.process.command_line`*:: -+ --- -The command line of the process. - - -type: keyword - -example: /lib/systemd/systemd --user - -required: False - --- - -*`journald.object.process.name`*:: -+ --- -Name of the executable. - - -type: keyword - -example: /lib/systemd/systemd - -required: False - --- - -*`journald.object.process.executable`*:: -+ --- -Path to the the executable. - - -type: keyword - -example: /lib/systemd/systemd - -required: False - --- - -*`journald.object.uid`*:: -+ --- -UID of the object process. - - -type: long - -required: False - --- - -*`journald.object.gid`*:: -+ --- -GID of the object process. - - -type: long - -required: False - --- - -*`journald.object.pid`*:: -+ --- -PID of the object process. - - -type: long - -required: False - --- - -[float] -=== systemd - -Systemd fields of event. - - - -*`journald.object.systemd.owner_uid`*:: -+ --- -The UID of the owner. - - -type: long - -required: False - --- - -*`journald.object.systemd.session`*:: -+ --- -The ID of the systemd session. - - -type: keyword - -required: False - --- - -*`journald.object.systemd.unit`*:: -+ --- -The name of the systemd unit. - - -type: keyword - -required: False - --- - -*`journald.object.systemd.user_unit`*:: -+ --- -The name of the systemd user unit. - - -type: keyword - -required: False - --- - -[float] -=== kernel - -Fields to log on behalf of a different program. - - - -*`journald.kernel.device`*:: -+ --- -The kernel device name. - - -type: keyword - -required: False - --- - -*`journald.kernel.subsystem`*:: -+ --- -The kernel subsystem name. - - -type: keyword - -required: False - --- - -*`journald.kernel.device_symlinks`*:: -+ --- -Additional symlink names pointing to the device node in /dev. - - -type: keyword - -required: False - --- - -*`journald.kernel.device_node_path`*:: -+ --- -The device node path of this device in /dev. - - -type: keyword - -required: False - --- - -*`journald.kernel.device_name`*:: -+ --- -The kernel device name as it shows up in the device tree below /sys. - - -type: keyword - -required: False - --- - -[float] -=== code - -Fields of the code generating the event. - - - -*`journald.code.file`*:: -+ --- -The name of the source file where the log is generated. - - -type: keyword - -example: ../src/core/manager.c - -required: False - --- - -*`journald.code.function`*:: -+ --- -The name of the function which generated the log message. - - -type: keyword - -example: job_log_status_message - -required: False - --- - -*`journald.code.line`*:: -+ --- -The line number of the code which generated the log message. - - -type: long - -example: 123 - -required: False - --- - -[float] -=== process - -Fields to log on behalf of a different program. - - - -[float] -=== audit - -Audit fields of event. - - - -*`journald.process.audit.loginuid`*:: -+ --- -The login UID of the source process. - - -type: long - -example: 1000 - -required: False - --- - -*`journald.process.audit.session`*:: -+ --- -The audit session of the source process. - - -type: long - -example: 3 - -required: False - --- - -*`journald.process.command_line`*:: -+ --- -The command line of the process. - - -type: keyword - -example: /lib/systemd/systemd --user - -required: False - --- - -*`journald.process.name`*:: -+ --- -Name of the executable. - - -type: keyword - -example: /lib/systemd/systemd - -required: False - --- - -*`journald.process.executable`*:: -+ --- -Path to the the executable. - - -type: keyword - -example: /lib/systemd/systemd - -required: False - --- - -*`journald.process.pid`*:: -+ --- -The ID of the process which logged the message. - - -type: long - -example: 1 - -required: False - --- - -*`journald.process.gid`*:: -+ --- -The ID of the group which runs the process. - - -type: long - -example: 1 - -required: False - --- - -*`journald.process.uid`*:: -+ --- -The ID of the user which runs the process. - - -type: long - -example: 1 - -required: False - --- - -*`journald.process.capabilities`*:: -+ --- -The effective capabilities of the process. - - -required: False - --- - -[float] -=== systemd - -Fields of systemd. - - - -*`systemd.invocation_id`*:: -+ --- -The invocation ID for the runtime cycle of the unit the message was generated in. - - -type: keyword - -example: 8450f1672de646c88cd133aadd4f2d70 - -required: False - --- - -*`systemd.cgroup`*:: -+ --- -The control group path in the systemd hierarchy. - - -type: keyword - -example: /user.slice/user-1234.slice/session-2.scope - -required: False - --- - -*`systemd.owner_uid`*:: -+ --- -The owner UID of the systemd user unit or systemd session. - - -type: long - -required: False - --- - -*`systemd.session`*:: -+ --- -The ID of the systemd session. - - -type: keyword - -required: False - --- - -*`systemd.slice`*:: -+ --- -The systemd slice unit. - - -type: keyword - -example: user-1234.slice - -required: False - --- - -*`systemd.user_slice`*:: -+ --- -The systemd user slice unit. - - -type: keyword - -required: False - --- - -*`systemd.unit`*:: -+ --- -The name of the systemd unit. - - -type: keyword - -example: nginx.service - -required: False - --- - -*`systemd.user_unit`*:: -+ --- -The name of the systemd user unit. - - -type: keyword - -example: user-1234.slice - -required: False - --- - -*`systemd.transport`*:: -+ --- -How the log message was received by journald. - - -type: keyword - -example: syslog - -required: True - --- - -[float] -=== host - -Fields of the host. - - - -*`host.boot_id`*:: -+ --- -The boot ID for the boot the log was generated in. - - -type: keyword - -example: dd8c974asdf01dbe2ef26d7fasdf264c9 - -required: False - --- - -[float] -=== syslog - -Fields of the code generating the event. - - - -*`syslog.priority`*:: -+ --- -The priority of the message. A syslog compatibility field. - - -type: long - -example: 1 - -required: False - --- - -*`syslog.facility`*:: -+ --- -The facility of the message. A syslog compatibility field. - - -type: long - -example: 1 - -required: False - --- - -*`syslog.identifier`*:: -+ --- -The identifier of the message. A syslog compatibility field. - - -type: keyword - -example: su - -required: False - --- - -*`custom`*:: -+ --- -Arbitrary fields coming from processes. - - -type: nested - -required: False - --- - -*`read_timestamp`*:: -+ --- -type: alias - -alias to: event.created - --- - - - -*`container.log.tag`*:: -+ --- -User defined tag of a container. - - -type: keyword - --- - -[[exported-fields-docker-processor]] -== Docker fields - -Docker stats collected from Docker. - - - - -*`docker.container.id`*:: -+ --- -type: alias - -alias to: container.id - --- - -*`docker.container.image`*:: -+ --- -type: alias - -alias to: container.image.name - --- - -*`docker.container.name`*:: -+ --- -type: alias - -alias to: container.name - --- - -*`docker.container.labels`*:: -+ --- -Image labels. - - -type: object - --- - -[[exported-fields-ecs]] -== ECS fields - - -This section defines Elastic Common Schema (ECS) fields—a common set of fields -to be used when storing event data in {es}. - -This is an exhaustive list, and fields listed here are not necessarily used by {beatname_uc}. -The goal of ECS is to enable and encourage users of {es} to normalize their event data, -so that they can better analyze, visualize, and correlate the data represented in their events. - -See the {ecs-ref}[ECS reference] for more information. - -*`@timestamp`*:: -+ --- -Date/time when the event originated. -This is the date/time extracted from the event, typically representing when the event was generated by the source. -If the event source has no original timestamp, this value is typically populated by the first time the event was received by the pipeline. -Required field for all events. - -type: date - -example: 2016-05-23T08:05:34.853Z - -required: True - --- - -*`labels`*:: -+ --- -Custom key/value pairs. -Can be used to add meta information to events. Should not contain nested objects. All values are stored as keyword. -Example: `docker` and `k8s` labels. - -type: object - -example: {"application": "foo-bar", "env": "production"} - --- - -*`message`*:: -+ --- -For log events the message field contains the log message, optimized for viewing in a log viewer. -For structured logs without an original message field, other fields can be concatenated to form a human-readable summary of the event. -If multiple messages exist, they can be combined into one message. - -type: match_only_text - -example: Hello World - --- - -*`tags`*:: -+ --- -List of keywords used to tag each event. - -type: keyword - -example: ["production", "env2"] - --- - -[float] -=== agent - -The agent fields contain the data about the software entity, if any, that collects, detects, or observes events on a host, or takes measurements on a host. -Examples include Beats. Agents may also run on observers. ECS agent.* fields shall be populated with details of the agent running on the host or observer where the event happened or the measurement was taken. - - -*`agent.build.original`*:: -+ --- -Extended build information for the agent. -This field is intended to contain any build information that a data source may provide, no specific formatting is required. - -type: keyword - -example: metricbeat version 7.6.0 (amd64), libbeat 7.6.0 [6a23e8f8f30f5001ba344e4e54d8d9cb82cb107c built 2020-02-05 23:10:10 +0000 UTC] - --- - -*`agent.ephemeral_id`*:: -+ --- -Ephemeral identifier of this agent (if one exists). -This id normally changes across restarts, but `agent.id` does not. - -type: keyword - -example: 8a4f500f - --- - -*`agent.id`*:: -+ --- -Unique identifier of this agent (if one exists). -Example: For Beats this would be beat.id. - -type: keyword - -example: 8a4f500d - --- - -*`agent.name`*:: -+ --- -Custom name of the agent. -This is a name that can be given to an agent. This can be helpful if for example two Filebeat instances are running on the same host but a human readable separation is needed on which Filebeat instance data is coming from. -If no name is given, the name is often left empty. - -type: keyword - -example: foo - --- - -*`agent.type`*:: -+ --- -Type of the agent. -The agent type always stays the same and should be given by the agent used. In case of Filebeat the agent would always be Filebeat also if two Filebeat instances are run on the same machine. - -type: keyword - -example: filebeat - --- - -*`agent.version`*:: -+ --- -Version of the agent. - -type: keyword - -example: 6.0.0-rc2 - --- - -[float] -=== as - -An autonomous system (AS) is a collection of connected Internet Protocol (IP) routing prefixes under the control of one or more network operators on behalf of a single administrative entity or domain that presents a common, clearly defined routing policy to the internet. - - -*`as.number`*:: -+ --- -Unique number allocated to the autonomous system. The autonomous system number (ASN) uniquely identifies each network on the Internet. - -type: long - -example: 15169 - --- - -*`as.organization.name`*:: -+ --- -Organization name. - -type: keyword - -example: Google LLC - --- - -*`as.organization.name.text`*:: -+ --- -type: match_only_text - --- - -[float] -=== client - -A client is defined as the initiator of a network connection for events regarding sessions, connections, or bidirectional flow records. -For TCP events, the client is the initiator of the TCP connection that sends the SYN packet(s). For other protocols, the client is generally the initiator or requestor in the network transaction. Some systems use the term "originator" to refer the client in TCP connections. The client fields describe details about the system acting as the client in the network event. Client fields are usually populated in conjunction with server fields. Client fields are generally not populated for packet-level events. -Client / server representations can add semantic context to an exchange, which is helpful to visualize the data in certain situations. If your context falls in that category, you should still ensure that source and destination are filled appropriately. - - -*`client.address`*:: -+ --- -Some event client addresses are defined ambiguously. The event will sometimes list an IP, a domain or a unix socket. You should always store the raw address in the `.address` field. -Then it should be duplicated to `.ip` or `.domain`, depending on which one it is. - -type: keyword - --- - -*`client.as.number`*:: -+ --- -Unique number allocated to the autonomous system. The autonomous system number (ASN) uniquely identifies each network on the Internet. - -type: long - -example: 15169 - --- - -*`client.as.organization.name`*:: -+ --- -Organization name. - -type: keyword - -example: Google LLC - --- - -*`client.as.organization.name.text`*:: -+ --- -type: match_only_text - --- - -*`client.bytes`*:: -+ --- -Bytes sent from the client to the server. - -type: long - -example: 184 - -format: bytes - --- - -*`client.domain`*:: -+ --- -Client domain. - -type: keyword - --- - -*`client.geo.city_name`*:: -+ --- -City name. - -type: keyword - -example: Montreal - --- - -*`client.geo.continent_code`*:: -+ --- -Two-letter code representing continent's name. - -type: keyword - -example: NA - --- - -*`client.geo.continent_name`*:: -+ --- -Name of the continent. - -type: keyword - -example: North America - --- - -*`client.geo.country_iso_code`*:: -+ --- -Country ISO code. - -type: keyword - -example: CA - --- - -*`client.geo.country_name`*:: -+ --- -Country name. - -type: keyword - -example: Canada - --- - -*`client.geo.location`*:: -+ --- -Longitude and latitude. - -type: geo_point - -example: { "lon": -73.614830, "lat": 45.505918 } - --- - -*`client.geo.name`*:: -+ --- -User-defined description of a location, at the level of granularity they care about. -Could be the name of their data centers, the floor number, if this describes a local physical entity, city names. -Not typically used in automated geolocation. - -type: keyword - -example: boston-dc - --- - -*`client.geo.postal_code`*:: -+ --- -Postal code associated with the location. -Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. - -type: keyword - -example: 94040 - --- - -*`client.geo.region_iso_code`*:: -+ --- -Region ISO code. - -type: keyword - -example: CA-QC - --- - -*`client.geo.region_name`*:: -+ --- -Region name. - -type: keyword - -example: Quebec - --- - -*`client.geo.timezone`*:: -+ --- -The time zone of the location, such as IANA time zone name. - -type: keyword - -example: America/Argentina/Buenos_Aires - --- - -*`client.ip`*:: -+ --- -IP address of the client (IPv4 or IPv6). - -type: ip - --- - -*`client.mac`*:: -+ --- -MAC address of the client. -The notation format from RFC 7042 is suggested: Each octet (that is, 8-bit byte) is represented by two [uppercase] hexadecimal digits giving the value of the octet as an unsigned integer. Successive octets are separated by a hyphen. - -type: keyword - -example: 00-00-5E-00-53-23 - --- - -*`client.nat.ip`*:: -+ --- -Translated IP of source based NAT sessions (e.g. internal client to internet). -Typically connections traversing load balancers, firewalls, or routers. - -type: ip - --- - -*`client.nat.port`*:: -+ --- -Translated port of source based NAT sessions (e.g. internal client to internet). -Typically connections traversing load balancers, firewalls, or routers. - -type: long - -format: string - --- - -*`client.packets`*:: -+ --- -Packets sent from the client to the server. - -type: long - -example: 12 - --- - -*`client.port`*:: -+ --- -Port of the client. - -type: long - -format: string - --- - -*`client.registered_domain`*:: -+ --- -The highest registered client domain, stripped of the subdomain. -For example, the registered domain for "foo.example.com" is "example.com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last two labels will not work well for TLDs such as "co.uk". - -type: keyword - -example: example.com - --- - -*`client.subdomain`*:: -+ --- -The subdomain portion of a fully qualified domain name includes all of the names except the host name under the registered_domain. In a partially qualified domain, or if the the qualification level of the full name cannot be determined, subdomain contains all of the names below the registered domain. -For example the subdomain portion of "www.east.mydomain.co.uk" is "east". If the domain has multiple levels of subdomain, such as "sub2.sub1.example.com", the subdomain field should contain "sub2.sub1", with no trailing period. - -type: keyword - -example: east - --- - -*`client.top_level_domain`*:: -+ --- -The effective top level domain (eTLD), also known as the domain suffix, is the last part of the domain name. For example, the top level domain for example.com is "com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last label will not work well for effective TLDs such as "co.uk". - -type: keyword - -example: co.uk - --- - -*`client.user.domain`*:: -+ --- -Name of the directory the user is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`client.user.email`*:: -+ --- -User email address. - -type: keyword - --- - -*`client.user.full_name`*:: -+ --- -User's full name, if available. - -type: keyword - -example: Albert Einstein - --- - -*`client.user.full_name.text`*:: -+ --- -type: match_only_text - --- - -*`client.user.group.domain`*:: -+ --- -Name of the directory the group is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`client.user.group.id`*:: -+ --- -Unique identifier for the group on the system/platform. - -type: keyword - --- - -*`client.user.group.name`*:: -+ --- -Name of the group. - -type: keyword - --- - -*`client.user.hash`*:: -+ --- -Unique user hash to correlate information for a user in anonymized form. -Useful if `user.id` or `user.name` contain confidential information and cannot be used. - -type: keyword - --- - -*`client.user.id`*:: -+ --- -Unique identifier of the user. - -type: keyword - -example: S-1-5-21-202424912787-2692429404-2351956786-1000 - --- - -*`client.user.name`*:: -+ --- -Short name or login of the user. - -type: keyword - -example: a.einstein - --- - -*`client.user.name.text`*:: -+ --- -type: match_only_text - --- - -*`client.user.roles`*:: -+ --- -Array of user roles at the time of the event. - -type: keyword - -example: ["kibana_admin", "reporting_user"] - --- - -[float] -=== cloud - -Fields related to the cloud or infrastructure the events are coming from. - - -*`cloud.account.id`*:: -+ --- -The cloud account or organization id used to identify different entities in a multi-tenant environment. -Examples: AWS account id, Google Cloud ORG Id, or other unique identifier. - -type: keyword - -example: 666777888999 - --- - -*`cloud.account.name`*:: -+ --- -The cloud account name or alias used to identify different entities in a multi-tenant environment. -Examples: AWS account name, Google Cloud ORG display name. - -type: keyword - -example: elastic-dev - --- - -*`cloud.availability_zone`*:: -+ --- -Availability zone in which this host, resource, or service is located. - -type: keyword - -example: us-east-1c - --- - -*`cloud.instance.id`*:: -+ --- -Instance ID of the host machine. - -type: keyword - -example: i-1234567890abcdef0 - --- - -*`cloud.instance.name`*:: -+ --- -Instance name of the host machine. - -type: keyword - --- - -*`cloud.machine.type`*:: -+ --- -Machine type of the host machine. - -type: keyword - -example: t2.medium - --- - -*`cloud.origin.account.id`*:: -+ --- -The cloud account or organization id used to identify different entities in a multi-tenant environment. -Examples: AWS account id, Google Cloud ORG Id, or other unique identifier. - -type: keyword - -example: 666777888999 - --- - -*`cloud.origin.account.name`*:: -+ --- -The cloud account name or alias used to identify different entities in a multi-tenant environment. -Examples: AWS account name, Google Cloud ORG display name. - -type: keyword - -example: elastic-dev - --- - -*`cloud.origin.availability_zone`*:: -+ --- -Availability zone in which this host, resource, or service is located. - -type: keyword - -example: us-east-1c - --- - -*`cloud.origin.instance.id`*:: -+ --- -Instance ID of the host machine. - -type: keyword - -example: i-1234567890abcdef0 - --- - -*`cloud.origin.instance.name`*:: -+ --- -Instance name of the host machine. - -type: keyword - --- - -*`cloud.origin.machine.type`*:: -+ --- -Machine type of the host machine. - -type: keyword - -example: t2.medium - --- - -*`cloud.origin.project.id`*:: -+ --- -The cloud project identifier. -Examples: Google Cloud Project id, Azure Project id. - -type: keyword - -example: my-project - --- - -*`cloud.origin.project.name`*:: -+ --- -The cloud project name. -Examples: Google Cloud Project name, Azure Project name. - -type: keyword - -example: my project - --- - -*`cloud.origin.provider`*:: -+ --- -Name of the cloud provider. Example values are aws, azure, gcp, or digitalocean. - -type: keyword - -example: aws - --- - -*`cloud.origin.region`*:: -+ --- -Region in which this host, resource, or service is located. - -type: keyword - -example: us-east-1 - --- - -*`cloud.origin.service.name`*:: -+ --- -The cloud service name is intended to distinguish services running on different platforms within a provider, eg AWS EC2 vs Lambda, GCP GCE vs App Engine, Azure VM vs App Server. -Examples: app engine, app service, cloud run, fargate, lambda. - -type: keyword - -example: lambda - --- - -*`cloud.project.id`*:: -+ --- -The cloud project identifier. -Examples: Google Cloud Project id, Azure Project id. - -type: keyword - -example: my-project - --- - -*`cloud.project.name`*:: -+ --- -The cloud project name. -Examples: Google Cloud Project name, Azure Project name. - -type: keyword - -example: my project - --- - -*`cloud.provider`*:: -+ --- -Name of the cloud provider. Example values are aws, azure, gcp, or digitalocean. - -type: keyword - -example: aws - --- - -*`cloud.region`*:: -+ --- -Region in which this host, resource, or service is located. - -type: keyword - -example: us-east-1 - --- - -*`cloud.service.name`*:: -+ --- -The cloud service name is intended to distinguish services running on different platforms within a provider, eg AWS EC2 vs Lambda, GCP GCE vs App Engine, Azure VM vs App Server. -Examples: app engine, app service, cloud run, fargate, lambda. - -type: keyword - -example: lambda - --- - -*`cloud.target.account.id`*:: -+ --- -The cloud account or organization id used to identify different entities in a multi-tenant environment. -Examples: AWS account id, Google Cloud ORG Id, or other unique identifier. - -type: keyword - -example: 666777888999 - --- - -*`cloud.target.account.name`*:: -+ --- -The cloud account name or alias used to identify different entities in a multi-tenant environment. -Examples: AWS account name, Google Cloud ORG display name. - -type: keyword - -example: elastic-dev - --- - -*`cloud.target.availability_zone`*:: -+ --- -Availability zone in which this host, resource, or service is located. - -type: keyword - -example: us-east-1c - --- - -*`cloud.target.instance.id`*:: -+ --- -Instance ID of the host machine. - -type: keyword - -example: i-1234567890abcdef0 - --- - -*`cloud.target.instance.name`*:: -+ --- -Instance name of the host machine. - -type: keyword - --- - -*`cloud.target.machine.type`*:: -+ --- -Machine type of the host machine. - -type: keyword - -example: t2.medium - --- - -*`cloud.target.project.id`*:: -+ --- -The cloud project identifier. -Examples: Google Cloud Project id, Azure Project id. - -type: keyword - -example: my-project - --- - -*`cloud.target.project.name`*:: -+ --- -The cloud project name. -Examples: Google Cloud Project name, Azure Project name. - -type: keyword - -example: my project - --- - -*`cloud.target.provider`*:: -+ --- -Name of the cloud provider. Example values are aws, azure, gcp, or digitalocean. - -type: keyword - -example: aws - --- - -*`cloud.target.region`*:: -+ --- -Region in which this host, resource, or service is located. - -type: keyword - -example: us-east-1 - --- - -*`cloud.target.service.name`*:: -+ --- -The cloud service name is intended to distinguish services running on different platforms within a provider, eg AWS EC2 vs Lambda, GCP GCE vs App Engine, Azure VM vs App Server. -Examples: app engine, app service, cloud run, fargate, lambda. - -type: keyword - -example: lambda - --- - -[float] -=== code_signature - -These fields contain information about binary code signatures. - - -*`code_signature.digest_algorithm`*:: -+ --- -The hashing algorithm used to sign the process. -This value can distinguish signatures when a file is signed multiple times by the same signer but with a different digest algorithm. - -type: keyword - -example: sha256 - --- - -*`code_signature.exists`*:: -+ --- -Boolean to capture if a signature is present. - -type: boolean - -example: true - --- - -*`code_signature.signing_id`*:: -+ --- -The identifier used to sign the process. -This is used to identify the application manufactured by a software vendor. The field is relevant to Apple *OS only. - -type: keyword - -example: com.apple.xpc.proxy - --- - -*`code_signature.status`*:: -+ --- -Additional information about the certificate status. -This is useful for logging cryptographic errors with the certificate validity or trust status. Leave unpopulated if the validity or trust of the certificate was unchecked. - -type: keyword - -example: ERROR_UNTRUSTED_ROOT - --- - -*`code_signature.subject_name`*:: -+ --- -Subject name of the code signer - -type: keyword - -example: Microsoft Corporation - --- - -*`code_signature.team_id`*:: -+ --- -The team identifier used to sign the process. -This is used to identify the team or vendor of a software product. The field is relevant to Apple *OS only. - -type: keyword - -example: EQHXZ8M8AV - --- - -*`code_signature.timestamp`*:: -+ --- -Date and time when the code signature was generated and signed. - -type: date - -example: 2021-01-01T12:10:30Z - --- - -*`code_signature.trusted`*:: -+ --- -Stores the trust status of the certificate chain. -Validating the trust of the certificate chain may be complicated, and this field should only be populated by tools that actively check the status. - -type: boolean - -example: true - --- - -*`code_signature.valid`*:: -+ --- -Boolean to capture if the digital signature is verified against the binary content. -Leave unpopulated if a certificate was unchecked. - -type: boolean - -example: true - --- - -[float] -=== container - -Container fields are used for meta information about the specific container that is the source of information. -These fields help correlate data based containers from any runtime. - - -*`container.id`*:: -+ --- -Unique container id. - -type: keyword - --- - -*`container.image.name`*:: -+ --- -Name of the image the container was built on. - -type: keyword - --- - -*`container.image.tag`*:: -+ --- -Container image tags. - -type: keyword - --- - -*`container.labels`*:: -+ --- -Image labels. - -type: object - --- - -*`container.name`*:: -+ --- -Container name. - -type: keyword - --- - -*`container.runtime`*:: -+ --- -Runtime managing this container. - -type: keyword - -example: docker - --- - -[float] -=== data_stream - -The data_stream fields take part in defining the new data stream naming scheme. -In the new data stream naming scheme the value of the data stream fields combine to the name of the actual data stream in the following manner: `{data_stream.type}-{data_stream.dataset}-{data_stream.namespace}`. This means the fields can only contain characters that are valid as part of names of data streams. More details about this can be found in this https://www.elastic.co/blog/an-introduction-to-the-elastic-data-stream-naming-scheme[blog post]. -An Elasticsearch data stream consists of one or more backing indices, and a data stream name forms part of the backing indices names. Due to this convention, data streams must also follow index naming restrictions. For example, data stream names cannot include `\`, `/`, `*`, `?`, `"`, `<`, `>`, `|`, ` ` (space character), `,`, or `#`. Please see the Elasticsearch reference for additional https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-create-index.html#indices-create-api-path-params[restrictions]. - - -*`data_stream.dataset`*:: -+ --- -The field can contain anything that makes sense to signify the source of the data. -Examples include `nginx.access`, `prometheus`, `endpoint` etc. For data streams that otherwise fit, but that do not have dataset set we use the value "generic" for the dataset value. `event.dataset` should have the same value as `data_stream.dataset`. -Beyond the Elasticsearch data stream naming criteria noted above, the `dataset` value has additional restrictions: - * Must not contain `-` - * No longer than 100 characters - -type: constant_keyword - -example: nginx.access - --- - -*`data_stream.namespace`*:: -+ --- -A user defined namespace. Namespaces are useful to allow grouping of data. -Many users already organize their indices this way, and the data stream naming scheme now provides this best practice as a default. Many users will populate this field with `default`. If no value is used, it falls back to `default`. -Beyond the Elasticsearch index naming criteria noted above, `namespace` value has the additional restrictions: - * Must not contain `-` - * No longer than 100 characters - -type: constant_keyword - -example: production - --- - -*`data_stream.type`*:: -+ --- -An overarching type for the data stream. -Currently allowed values are "logs" and "metrics". We expect to also add "traces" and "synthetics" in the near future. - -type: constant_keyword - -example: logs - --- - -[float] -=== destination - -Destination fields capture details about the receiver of a network exchange/packet. These fields are populated from a network event, packet, or other event containing details of a network transaction. -Destination fields are usually populated in conjunction with source fields. The source and destination fields are considered the baseline and should always be filled if an event contains source and destination details from a network transaction. If the event also contains identification of the client and server roles, then the client and server fields should also be populated. - - -*`destination.address`*:: -+ --- -Some event destination addresses are defined ambiguously. The event will sometimes list an IP, a domain or a unix socket. You should always store the raw address in the `.address` field. -Then it should be duplicated to `.ip` or `.domain`, depending on which one it is. - -type: keyword - --- - -*`destination.as.number`*:: -+ --- -Unique number allocated to the autonomous system. The autonomous system number (ASN) uniquely identifies each network on the Internet. - -type: long - -example: 15169 - --- - -*`destination.as.organization.name`*:: -+ --- -Organization name. - -type: keyword - -example: Google LLC - --- - -*`destination.as.organization.name.text`*:: -+ --- -type: match_only_text - --- - -*`destination.bytes`*:: -+ --- -Bytes sent from the destination to the source. - -type: long - -example: 184 - -format: bytes - --- - -*`destination.domain`*:: -+ --- -Destination domain. - -type: keyword - --- - -*`destination.geo.city_name`*:: -+ --- -City name. - -type: keyword - -example: Montreal - --- - -*`destination.geo.continent_code`*:: -+ --- -Two-letter code representing continent's name. - -type: keyword - -example: NA - --- - -*`destination.geo.continent_name`*:: -+ --- -Name of the continent. - -type: keyword - -example: North America - --- - -*`destination.geo.country_iso_code`*:: -+ --- -Country ISO code. - -type: keyword - -example: CA - --- - -*`destination.geo.country_name`*:: -+ --- -Country name. - -type: keyword - -example: Canada - --- - -*`destination.geo.location`*:: -+ --- -Longitude and latitude. - -type: geo_point - -example: { "lon": -73.614830, "lat": 45.505918 } - --- - -*`destination.geo.name`*:: -+ --- -User-defined description of a location, at the level of granularity they care about. -Could be the name of their data centers, the floor number, if this describes a local physical entity, city names. -Not typically used in automated geolocation. - -type: keyword - -example: boston-dc - --- - -*`destination.geo.postal_code`*:: -+ --- -Postal code associated with the location. -Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. - -type: keyword - -example: 94040 - --- - -*`destination.geo.region_iso_code`*:: -+ --- -Region ISO code. - -type: keyword - -example: CA-QC - --- - -*`destination.geo.region_name`*:: -+ --- -Region name. - -type: keyword - -example: Quebec - --- - -*`destination.geo.timezone`*:: -+ --- -The time zone of the location, such as IANA time zone name. - -type: keyword - -example: America/Argentina/Buenos_Aires - --- - -*`destination.ip`*:: -+ --- -IP address of the destination (IPv4 or IPv6). - -type: ip - --- - -*`destination.mac`*:: -+ --- -MAC address of the destination. -The notation format from RFC 7042 is suggested: Each octet (that is, 8-bit byte) is represented by two [uppercase] hexadecimal digits giving the value of the octet as an unsigned integer. Successive octets are separated by a hyphen. - -type: keyword - -example: 00-00-5E-00-53-23 - --- - -*`destination.nat.ip`*:: -+ --- -Translated ip of destination based NAT sessions (e.g. internet to private DMZ) -Typically used with load balancers, firewalls, or routers. - -type: ip - --- - -*`destination.nat.port`*:: -+ --- -Port the source session is translated to by NAT Device. -Typically used with load balancers, firewalls, or routers. - -type: long - -format: string - --- - -*`destination.packets`*:: -+ --- -Packets sent from the destination to the source. - -type: long - -example: 12 - --- - -*`destination.port`*:: -+ --- -Port of the destination. - -type: long - -format: string - --- - -*`destination.registered_domain`*:: -+ --- -The highest registered destination domain, stripped of the subdomain. -For example, the registered domain for "foo.example.com" is "example.com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last two labels will not work well for TLDs such as "co.uk". - -type: keyword - -example: example.com - --- - -*`destination.subdomain`*:: -+ --- -The subdomain portion of a fully qualified domain name includes all of the names except the host name under the registered_domain. In a partially qualified domain, or if the the qualification level of the full name cannot be determined, subdomain contains all of the names below the registered domain. -For example the subdomain portion of "www.east.mydomain.co.uk" is "east". If the domain has multiple levels of subdomain, such as "sub2.sub1.example.com", the subdomain field should contain "sub2.sub1", with no trailing period. - -type: keyword - -example: east - --- - -*`destination.top_level_domain`*:: -+ --- -The effective top level domain (eTLD), also known as the domain suffix, is the last part of the domain name. For example, the top level domain for example.com is "com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last label will not work well for effective TLDs such as "co.uk". - -type: keyword - -example: co.uk - --- - -*`destination.user.domain`*:: -+ --- -Name of the directory the user is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`destination.user.email`*:: -+ --- -User email address. - -type: keyword - --- - -*`destination.user.full_name`*:: -+ --- -User's full name, if available. - -type: keyword - -example: Albert Einstein - --- - -*`destination.user.full_name.text`*:: -+ --- -type: match_only_text - --- - -*`destination.user.group.domain`*:: -+ --- -Name of the directory the group is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`destination.user.group.id`*:: -+ --- -Unique identifier for the group on the system/platform. - -type: keyword - --- - -*`destination.user.group.name`*:: -+ --- -Name of the group. - -type: keyword - --- - -*`destination.user.hash`*:: -+ --- -Unique user hash to correlate information for a user in anonymized form. -Useful if `user.id` or `user.name` contain confidential information and cannot be used. - -type: keyword - --- - -*`destination.user.id`*:: -+ --- -Unique identifier of the user. - -type: keyword - -example: S-1-5-21-202424912787-2692429404-2351956786-1000 - --- - -*`destination.user.name`*:: -+ --- -Short name or login of the user. - -type: keyword - -example: a.einstein - --- - -*`destination.user.name.text`*:: -+ --- -type: match_only_text - --- - -*`destination.user.roles`*:: -+ --- -Array of user roles at the time of the event. - -type: keyword - -example: ["kibana_admin", "reporting_user"] - --- - -[float] -=== dll - -These fields contain information about code libraries dynamically loaded into processes. - -Many operating systems refer to "shared code libraries" with different names, but this field set refers to all of the following: -* Dynamic-link library (`.dll`) commonly used on Windows -* Shared Object (`.so`) commonly used on Unix-like operating systems -* Dynamic library (`.dylib`) commonly used on macOS - - -*`dll.code_signature.digest_algorithm`*:: -+ --- -The hashing algorithm used to sign the process. -This value can distinguish signatures when a file is signed multiple times by the same signer but with a different digest algorithm. - -type: keyword - -example: sha256 - --- - -*`dll.code_signature.exists`*:: -+ --- -Boolean to capture if a signature is present. - -type: boolean - -example: true - --- - -*`dll.code_signature.signing_id`*:: -+ --- -The identifier used to sign the process. -This is used to identify the application manufactured by a software vendor. The field is relevant to Apple *OS only. - -type: keyword - -example: com.apple.xpc.proxy - --- - -*`dll.code_signature.status`*:: -+ --- -Additional information about the certificate status. -This is useful for logging cryptographic errors with the certificate validity or trust status. Leave unpopulated if the validity or trust of the certificate was unchecked. - -type: keyword - -example: ERROR_UNTRUSTED_ROOT - --- - -*`dll.code_signature.subject_name`*:: -+ --- -Subject name of the code signer - -type: keyword - -example: Microsoft Corporation - --- - -*`dll.code_signature.team_id`*:: -+ --- -The team identifier used to sign the process. -This is used to identify the team or vendor of a software product. The field is relevant to Apple *OS only. - -type: keyword - -example: EQHXZ8M8AV - --- - -*`dll.code_signature.timestamp`*:: -+ --- -Date and time when the code signature was generated and signed. - -type: date - -example: 2021-01-01T12:10:30Z - --- - -*`dll.code_signature.trusted`*:: -+ --- -Stores the trust status of the certificate chain. -Validating the trust of the certificate chain may be complicated, and this field should only be populated by tools that actively check the status. - -type: boolean - -example: true - --- - -*`dll.code_signature.valid`*:: -+ --- -Boolean to capture if the digital signature is verified against the binary content. -Leave unpopulated if a certificate was unchecked. - -type: boolean - -example: true - --- - -*`dll.hash.md5`*:: -+ --- -MD5 hash. - -type: keyword - --- - -*`dll.hash.sha1`*:: -+ --- -SHA1 hash. - -type: keyword - --- - -*`dll.hash.sha256`*:: -+ --- -SHA256 hash. - -type: keyword - --- - -*`dll.hash.sha512`*:: -+ --- -SHA512 hash. - -type: keyword - --- - -*`dll.hash.ssdeep`*:: -+ --- -SSDEEP hash. - -type: keyword - --- - -*`dll.name`*:: -+ --- -Name of the library. -This generally maps to the name of the file on disk. - -type: keyword - -example: kernel32.dll - --- - -*`dll.path`*:: -+ --- -Full file path of the library. - -type: keyword - -example: C:\Windows\System32\kernel32.dll - --- - -*`dll.pe.architecture`*:: -+ --- -CPU architecture target for the file. - -type: keyword - -example: x64 - --- - -*`dll.pe.company`*:: -+ --- -Internal company name of the file, provided at compile-time. - -type: keyword - -example: Microsoft Corporation - --- - -*`dll.pe.description`*:: -+ --- -Internal description of the file, provided at compile-time. - -type: keyword - -example: Paint - --- - -*`dll.pe.file_version`*:: -+ --- -Internal version of the file, provided at compile-time. - -type: keyword - -example: 6.3.9600.17415 - --- - -*`dll.pe.imphash`*:: -+ --- -A hash of the imports in a PE file. An imphash -- or import hash -- can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. -Learn more at https://www.fireeye.com/blog/threat-research/2014/01/tracking-malware-import-hashing.html. - -type: keyword - -example: 0c6803c4e922103c4dca5963aad36ddf - --- - -*`dll.pe.original_file_name`*:: -+ --- -Internal name of the file, provided at compile-time. - -type: keyword - -example: MSPAINT.EXE - --- - -*`dll.pe.product`*:: -+ --- -Internal product name of the file, provided at compile-time. - -type: keyword - -example: Microsoft® Windows® Operating System - --- - -[float] -=== dns - -Fields describing DNS queries and answers. -DNS events should either represent a single DNS query prior to getting answers (`dns.type:query`) or they should represent a full exchange and contain the query details as well as all of the answers that were provided for this query (`dns.type:answer`). - - -*`dns.answers`*:: -+ --- -An array containing an object for each answer section returned by the server. -The main keys that should be present in these objects are defined by ECS. Records that have more information may contain more keys than what ECS defines. -Not all DNS data sources give all details about DNS answers. At minimum, answer objects must contain the `data` key. If more information is available, map as much of it to ECS as possible, and add any additional fields to the answer objects as custom fields. - -type: object - --- - -*`dns.answers.class`*:: -+ --- -The class of DNS data contained in this resource record. - -type: keyword - -example: IN - --- - -*`dns.answers.data`*:: -+ --- -The data describing the resource. -The meaning of this data depends on the type and class of the resource record. - -type: keyword - -example: 10.10.10.10 - --- - -*`dns.answers.name`*:: -+ --- -The domain name to which this resource record pertains. -If a chain of CNAME is being resolved, each answer's `name` should be the one that corresponds with the answer's `data`. It should not simply be the original `question.name` repeated. - -type: keyword - -example: www.example.com - --- - -*`dns.answers.ttl`*:: -+ --- -The time interval in seconds that this resource record may be cached before it should be discarded. Zero values mean that the data should not be cached. - -type: long - -example: 180 - --- - -*`dns.answers.type`*:: -+ --- -The type of data contained in this resource record. - -type: keyword - -example: CNAME - --- - -*`dns.header_flags`*:: -+ --- -Array of 2 letter DNS header flags. -Expected values are: AA, TC, RD, RA, AD, CD, DO. - -type: keyword - -example: ["RD", "RA"] - --- - -*`dns.id`*:: -+ --- -The DNS packet identifier assigned by the program that generated the query. The identifier is copied to the response. - -type: keyword - -example: 62111 - --- - -*`dns.op_code`*:: -+ --- -The DNS operation code that specifies the kind of query in the message. This value is set by the originator of a query and copied into the response. - -type: keyword - -example: QUERY - --- - -*`dns.question.class`*:: -+ --- -The class of records being queried. - -type: keyword - -example: IN - --- - -*`dns.question.name`*:: -+ --- -The name being queried. -If the name field contains non-printable characters (below 32 or above 126), those characters should be represented as escaped base 10 integers (\DDD). Back slashes and quotes should be escaped. Tabs, carriage returns, and line feeds should be converted to \t, \r, and \n respectively. - -type: keyword - -example: www.example.com - --- - -*`dns.question.registered_domain`*:: -+ --- -The highest registered domain, stripped of the subdomain. -For example, the registered domain for "foo.example.com" is "example.com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last two labels will not work well for TLDs such as "co.uk". - -type: keyword - -example: example.com - --- - -*`dns.question.subdomain`*:: -+ --- -The subdomain is all of the labels under the registered_domain. -If the domain has multiple levels of subdomain, such as "sub2.sub1.example.com", the subdomain field should contain "sub2.sub1", with no trailing period. - -type: keyword - -example: www - --- - -*`dns.question.top_level_domain`*:: -+ --- -The effective top level domain (eTLD), also known as the domain suffix, is the last part of the domain name. For example, the top level domain for example.com is "com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last label will not work well for effective TLDs such as "co.uk". - -type: keyword - -example: co.uk - --- - -*`dns.question.type`*:: -+ --- -The type of record being queried. - -type: keyword - -example: AAAA - --- - -*`dns.resolved_ip`*:: -+ --- -Array containing all IPs seen in `answers.data`. -The `answers` array can be difficult to use, because of the variety of data formats it can contain. Extracting all IP addresses seen in there to `dns.resolved_ip` makes it possible to index them as IP addresses, and makes them easier to visualize and query for. - -type: ip - -example: ["10.10.10.10", "10.10.10.11"] - --- - -*`dns.response_code`*:: -+ --- -The DNS response code. - -type: keyword - -example: NOERROR - --- - -*`dns.type`*:: -+ --- -The type of DNS event captured, query or answer. -If your source of DNS events only gives you DNS queries, you should only create dns events of type `dns.type:query`. -If your source of DNS events gives you answers as well, you should create one event per query (optionally as soon as the query is seen). And a second event containing all query details as well as an array of answers. - -type: keyword - -example: answer - --- - -[float] -=== ecs - -Meta-information specific to ECS. - - -*`ecs.version`*:: -+ --- -ECS version this event conforms to. `ecs.version` is a required field and must exist in all events. -When querying across multiple indices -- which may conform to slightly different ECS versions -- this field lets integrations adjust to the schema version of the events. - -type: keyword - -example: 1.0.0 - -required: True - --- - -[float] -=== elf - -These fields contain Linux Executable Linkable Format (ELF) metadata. - - -*`elf.architecture`*:: -+ --- -Machine architecture of the ELF file. - -type: keyword - -example: x86-64 - --- - -*`elf.byte_order`*:: -+ --- -Byte sequence of ELF file. - -type: keyword - -example: Little Endian - --- - -*`elf.cpu_type`*:: -+ --- -CPU type of the ELF file. - -type: keyword - -example: Intel - --- - -*`elf.creation_date`*:: -+ --- -Extracted when possible from the file's metadata. Indicates when it was built or compiled. It can also be faked by malware creators. - -type: date - --- - -*`elf.exports`*:: -+ --- -List of exported element names and types. - -type: flattened - --- - -*`elf.header.abi_version`*:: -+ --- -Version of the ELF Application Binary Interface (ABI). - -type: keyword - --- - -*`elf.header.class`*:: -+ --- -Header class of the ELF file. - -type: keyword - --- - -*`elf.header.data`*:: -+ --- -Data table of the ELF header. - -type: keyword - --- - -*`elf.header.entrypoint`*:: -+ --- -Header entrypoint of the ELF file. - -type: long - -format: string - --- - -*`elf.header.object_version`*:: -+ --- -"0x1" for original ELF files. - -type: keyword - --- - -*`elf.header.os_abi`*:: -+ --- -Application Binary Interface (ABI) of the Linux OS. - -type: keyword - --- - -*`elf.header.type`*:: -+ --- -Header type of the ELF file. - -type: keyword - --- - -*`elf.header.version`*:: -+ --- -Version of the ELF header. - -type: keyword - --- - -*`elf.imports`*:: -+ --- -List of imported element names and types. - -type: flattened - --- - -*`elf.sections`*:: -+ --- -An array containing an object for each section of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.sections.*`. - -type: nested - --- - -*`elf.sections.chi2`*:: -+ --- -Chi-square probability distribution of the section. - -type: long - -format: number - --- - -*`elf.sections.entropy`*:: -+ --- -Shannon entropy calculation from the section. - -type: long - -format: number - --- - -*`elf.sections.flags`*:: -+ --- -ELF Section List flags. - -type: keyword - --- - -*`elf.sections.name`*:: -+ --- -ELF Section List name. - -type: keyword - --- - -*`elf.sections.physical_offset`*:: -+ --- -ELF Section List offset. - -type: keyword - --- - -*`elf.sections.physical_size`*:: -+ --- -ELF Section List physical size. - -type: long - -format: bytes - --- - -*`elf.sections.type`*:: -+ --- -ELF Section List type. - -type: keyword - --- - -*`elf.sections.virtual_address`*:: -+ --- -ELF Section List virtual address. - -type: long - -format: string - --- - -*`elf.sections.virtual_size`*:: -+ --- -ELF Section List virtual size. - -type: long - -format: string - --- - -*`elf.segments`*:: -+ --- -An array containing an object for each segment of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.segments.*`. - -type: nested - --- - -*`elf.segments.sections`*:: -+ --- -ELF object segment sections. - -type: keyword - --- - -*`elf.segments.type`*:: -+ --- -ELF object segment type. - -type: keyword - --- - -*`elf.shared_libraries`*:: -+ --- -List of shared libraries used by this ELF object. - -type: keyword - --- - -*`elf.telfhash`*:: -+ --- -telfhash symbol hash for ELF file. - -type: keyword - --- - -[float] -=== error - -These fields can represent errors of any kind. -Use them for errors that happen while fetching events or in cases where the event itself contains an error. - - -*`error.code`*:: -+ --- -Error code describing the error. - -type: keyword - --- - -*`error.id`*:: -+ --- -Unique identifier for the error. - -type: keyword - --- - -*`error.message`*:: -+ --- -Error message. - -type: match_only_text - --- - -*`error.stack_trace`*:: -+ --- -The stack trace of this error in plain text. - -type: wildcard - --- - -*`error.stack_trace.text`*:: -+ --- -type: match_only_text - --- - -*`error.type`*:: -+ --- -The type of the error, for example the class name of the exception. - -type: keyword - -example: java.lang.NullPointerException - --- - -[float] -=== event - -The event fields are used for context information about the log or metric event itself. -A log is defined as an event containing details of something that happened. Log events must include the time at which the thing happened. Examples of log events include a process starting on a host, a network packet being sent from a source to a destination, or a network connection between a client and a server being initiated or closed. A metric is defined as an event containing one or more numerical measurements and the time at which the measurement was taken. Examples of metric events include memory pressure measured on a host and device temperature. See the `event.kind` definition in this section for additional details about metric and state events. - - -*`event.action`*:: -+ --- -The action captured by the event. -This describes the information in the event. It is more specific than `event.category`. Examples are `group-add`, `process-started`, `file-created`. The value is normally defined by the implementer. - -type: keyword - -example: user-password-change - --- - -*`event.agent_id_status`*:: -+ --- -Agents are normally responsible for populating the `agent.id` field value. If the system receiving events is capable of validating the value based on authentication information for the client then this field can be used to reflect the outcome of that validation. -For example if the agent's connection is authenticated with mTLS and the client cert contains the ID of the agent to which the cert was issued then the `agent.id` value in events can be checked against the certificate. If the values match then `event.agent_id_status: verified` is added to the event, otherwise one of the other allowed values should be used. -If no validation is performed then the field should be omitted. -The allowed values are: -`verified` - The `agent.id` field value matches expected value obtained from auth metadata. -`mismatch` - The `agent.id` field value does not match the expected value obtained from auth metadata. -`missing` - There was no `agent.id` field in the event to validate. -`auth_metadata_missing` - There was no auth metadata or it was missing information about the agent ID. - -type: keyword - -example: verified - --- - -*`event.category`*:: -+ --- -This is one of four ECS Categorization Fields, and indicates the second level in the ECS category hierarchy. -`event.category` represents the "big buckets" of ECS categories. For example, filtering on `event.category:process` yields all events relating to process activity. This field is closely related to `event.type`, which is used as a subcategory. -This field is an array. This will allow proper categorization of some events that fall in multiple categories. - -type: keyword - -example: authentication - --- - -*`event.code`*:: -+ --- -Identification code for this event, if one exists. -Some event sources use event codes to identify messages unambiguously, regardless of message language or wording adjustments over time. An example of this is the Windows Event ID. - -type: keyword - -example: 4648 - --- - -*`event.created`*:: -+ --- -event.created contains the date/time when the event was first read by an agent, or by your pipeline. -This field is distinct from @timestamp in that @timestamp typically contain the time extracted from the original event. -In most situations, these two timestamps will be slightly different. The difference can be used to calculate the delay between your source generating an event, and the time when your agent first processed it. This can be used to monitor your agent's or pipeline's ability to keep up with your event source. -In case the two timestamps are identical, @timestamp should be used. - -type: date - -example: 2016-05-23T08:05:34.857Z - --- - -*`event.dataset`*:: -+ --- -Name of the dataset. -If an event source publishes more than one type of log or events (e.g. access log, error log), the dataset is used to specify which one the event comes from. -It's recommended but not required to start the dataset name with the module name, followed by a dot, then the dataset name. - -type: keyword - -example: apache.access - --- - -*`event.duration`*:: -+ --- -Duration of the event in nanoseconds. -If event.start and event.end are known this value should be the difference between the end and start time. - -type: long - -format: duration - --- - -*`event.end`*:: -+ --- -event.end contains the date when the event ended or when the activity was last observed. - -type: date - --- - -*`event.hash`*:: -+ --- -Hash (perhaps logstash fingerprint) of raw field to be able to demonstrate log integrity. - -type: keyword - -example: 123456789012345678901234567890ABCD - --- - -*`event.id`*:: -+ --- -Unique ID to describe the event. - -type: keyword - -example: 8a4f500d - --- - -*`event.ingested`*:: -+ --- -Timestamp when an event arrived in the central data store. -This is different from `@timestamp`, which is when the event originally occurred. It's also different from `event.created`, which is meant to capture the first time an agent saw the event. -In normal conditions, assuming no tampering, the timestamps should chronologically look like this: `@timestamp` < `event.created` < `event.ingested`. - -type: date - -example: 2016-05-23T08:05:35.101Z - --- - -*`event.kind`*:: -+ --- -This is one of four ECS Categorization Fields, and indicates the highest level in the ECS category hierarchy. -`event.kind` gives high-level information about what type of information the event contains, without being specific to the contents of the event. For example, values of this field distinguish alert events from metric events. -The value of this field can be used to inform how these kinds of events should be handled. They may warrant different retention, different access control, it may also help understand whether the data coming in at a regular interval or not. - -type: keyword - -example: alert - --- - -*`event.module`*:: -+ --- -Name of the module this data is coming from. -If your monitoring agent supports the concept of modules or plugins to process events of a given source (e.g. Apache logs), `event.module` should contain the name of this module. - -type: keyword - -example: apache - --- - -*`event.original`*:: -+ --- -Raw text message of entire event. Used to demonstrate log integrity or where the full log message (before splitting it up in multiple parts) may be required, e.g. for reindex. -This field is not indexed and doc_values are disabled. It cannot be searched, but it can be retrieved from `_source`. If users wish to override this and index this field, please see `Field data types` in the `Elasticsearch Reference`. - -type: keyword - -example: Sep 19 08:26:10 host CEF:0|Security| threatmanager|1.0|100| worm successfully stopped|10|src=10.0.0.1 dst=2.1.2.2spt=1232 - -Field is not indexed. - --- - -*`event.outcome`*:: -+ --- -This is one of four ECS Categorization Fields, and indicates the lowest level in the ECS category hierarchy. -`event.outcome` simply denotes whether the event represents a success or a failure from the perspective of the entity that produced the event. -Note that when a single transaction is described in multiple events, each event may populate different values of `event.outcome`, according to their perspective. -Also note that in the case of a compound event (a single event that contains multiple logical events), this field should be populated with the value that best captures the overall success or failure from the perspective of the event producer. -Further note that not all events will have an associated outcome. For example, this field is generally not populated for metric events, events with `event.type:info`, or any events for which an outcome does not make logical sense. - -type: keyword - -example: success - --- - -*`event.provider`*:: -+ --- -Source of the event. -Event transports such as Syslog or the Windows Event Log typically mention the source of an event. It can be the name of the software that generated the event (e.g. Sysmon, httpd), or of a subsystem of the operating system (kernel, Microsoft-Windows-Security-Auditing). - -type: keyword - -example: kernel - --- - -*`event.reason`*:: -+ --- -Reason why this event happened, according to the source. -This describes the why of a particular action or outcome captured in the event. Where `event.action` captures the action from the event, `event.reason` describes why that action was taken. For example, a web proxy with an `event.action` which denied the request may also populate `event.reason` with the reason why (e.g. `blocked site`). - -type: keyword - -example: Terminated an unexpected process - --- - -*`event.reference`*:: -+ --- -Reference URL linking to additional information about this event. -This URL links to a static definition of this event. Alert events, indicated by `event.kind:alert`, are a common use case for this field. - -type: keyword - -example: https://system.example.com/event/#0001234 - --- - -*`event.risk_score`*:: -+ --- -Risk score or priority of the event (e.g. security solutions). Use your system's original value here. - -type: float - --- - -*`event.risk_score_norm`*:: -+ --- -Normalized risk score or priority of the event, on a scale of 0 to 100. -This is mainly useful if you use more than one system that assigns risk scores, and you want to see a normalized value across all systems. - -type: float - --- - -*`event.sequence`*:: -+ --- -Sequence number of the event. -The sequence number is a value published by some event sources, to make the exact ordering of events unambiguous, regardless of the timestamp precision. - -type: long - -format: string - --- - -*`event.severity`*:: -+ --- -The numeric severity of the event according to your event source. -What the different severity values mean can be different between sources and use cases. It's up to the implementer to make sure severities are consistent across events from the same source. -The Syslog severity belongs in `log.syslog.severity.code`. `event.severity` is meant to represent the severity according to the event source (e.g. firewall, IDS). If the event source does not publish its own severity, you may optionally copy the `log.syslog.severity.code` to `event.severity`. - -type: long - -example: 7 - -format: string - --- - -*`event.start`*:: -+ --- -event.start contains the date when the event started or when the activity was first observed. - -type: date - --- - -*`event.timezone`*:: -+ --- -This field should be populated when the event's timestamp does not include timezone information already (e.g. default Syslog timestamps). It's optional otherwise. -Acceptable timezone formats are: a canonical ID (e.g. "Europe/Amsterdam"), abbreviated (e.g. "EST") or an HH:mm differential (e.g. "-05:00"). - -type: keyword - --- - -*`event.type`*:: -+ --- -This is one of four ECS Categorization Fields, and indicates the third level in the ECS category hierarchy. -`event.type` represents a categorization "sub-bucket" that, when used along with the `event.category` field values, enables filtering events down to a level appropriate for single visualization. -This field is an array. This will allow proper categorization of some events that fall in multiple event types. - -type: keyword - --- - -*`event.url`*:: -+ --- -URL linking to an external system to continue investigation of this event. -This URL links to another system where in-depth investigation of the specific occurrence of this event can take place. Alert events, indicated by `event.kind:alert`, are a common use case for this field. - -type: keyword - -example: https://mysystem.example.com/alert/5271dedb-f5b0-4218-87f0-4ac4870a38fe - --- - -[float] -=== faas - -The user fields describe information about the function as a service that is relevant to the event. - - -*`faas.coldstart`*:: -+ --- -Boolean value indicating a cold start of a function. - -type: boolean - --- - -*`faas.execution`*:: -+ --- -The execution ID of the current function execution. - -type: keyword - -example: af9d5aa4-a685-4c5f-a22b-444f80b3cc28 - --- - -*`faas.trigger`*:: -+ --- -Details about the function trigger. - -type: nested - --- - -*`faas.trigger.request_id`*:: -+ --- -The ID of the trigger request , message, event, etc. - -type: keyword - -example: 123456789 - --- - -*`faas.trigger.type`*:: -+ --- -The trigger for the function execution. -Expected values are: - * http - * pubsub - * datasource - * timer - * other - -type: keyword - -example: http - --- - -[float] -=== file - -A file is defined as a set of information that has been created on, or has existed on a filesystem. -File objects can be associated with host events, network events, and/or file events (e.g., those produced by File Integrity Monitoring [FIM] products or services). File fields provide details about the affected file associated with the event or metric. - - -*`file.accessed`*:: -+ --- -Last time the file was accessed. -Note that not all filesystems keep track of access time. - -type: date - --- - -*`file.attributes`*:: -+ --- -Array of file attributes. -Attributes names will vary by platform. Here's a non-exhaustive list of values that are expected in this field: archive, compressed, directory, encrypted, execute, hidden, read, readonly, system, write. - -type: keyword - -example: ["readonly", "system"] - --- - -*`file.code_signature.digest_algorithm`*:: -+ --- -The hashing algorithm used to sign the process. -This value can distinguish signatures when a file is signed multiple times by the same signer but with a different digest algorithm. - -type: keyword - -example: sha256 - --- - -*`file.code_signature.exists`*:: -+ --- -Boolean to capture if a signature is present. - -type: boolean - -example: true - --- - -*`file.code_signature.signing_id`*:: -+ --- -The identifier used to sign the process. -This is used to identify the application manufactured by a software vendor. The field is relevant to Apple *OS only. - -type: keyword - -example: com.apple.xpc.proxy - --- - -*`file.code_signature.status`*:: -+ --- -Additional information about the certificate status. -This is useful for logging cryptographic errors with the certificate validity or trust status. Leave unpopulated if the validity or trust of the certificate was unchecked. - -type: keyword - -example: ERROR_UNTRUSTED_ROOT - --- - -*`file.code_signature.subject_name`*:: -+ --- -Subject name of the code signer - -type: keyword - -example: Microsoft Corporation - --- - -*`file.code_signature.team_id`*:: -+ --- -The team identifier used to sign the process. -This is used to identify the team or vendor of a software product. The field is relevant to Apple *OS only. - -type: keyword - -example: EQHXZ8M8AV - --- - -*`file.code_signature.timestamp`*:: -+ --- -Date and time when the code signature was generated and signed. - -type: date - -example: 2021-01-01T12:10:30Z - --- - -*`file.code_signature.trusted`*:: -+ --- -Stores the trust status of the certificate chain. -Validating the trust of the certificate chain may be complicated, and this field should only be populated by tools that actively check the status. - -type: boolean - -example: true - --- - -*`file.code_signature.valid`*:: -+ --- -Boolean to capture if the digital signature is verified against the binary content. -Leave unpopulated if a certificate was unchecked. - -type: boolean - -example: true - --- - -*`file.created`*:: -+ --- -File creation time. -Note that not all filesystems store the creation time. - -type: date - --- - -*`file.ctime`*:: -+ --- -Last time the file attributes or metadata changed. -Note that changes to the file content will update `mtime`. This implies `ctime` will be adjusted at the same time, since `mtime` is an attribute of the file. - -type: date - --- - -*`file.device`*:: -+ --- -Device that is the source of the file. - -type: keyword - -example: sda - --- - -*`file.directory`*:: -+ --- -Directory where the file is located. It should include the drive letter, when appropriate. - -type: keyword - -example: /home/alice - --- - -*`file.drive_letter`*:: -+ --- -Drive letter where the file is located. This field is only relevant on Windows. -The value should be uppercase, and not include the colon. - -type: keyword - -example: C - --- - -*`file.elf.architecture`*:: -+ --- -Machine architecture of the ELF file. - -type: keyword - -example: x86-64 - --- - -*`file.elf.byte_order`*:: -+ --- -Byte sequence of ELF file. - -type: keyword - -example: Little Endian - --- - -*`file.elf.cpu_type`*:: -+ --- -CPU type of the ELF file. - -type: keyword - -example: Intel - --- - -*`file.elf.creation_date`*:: -+ --- -Extracted when possible from the file's metadata. Indicates when it was built or compiled. It can also be faked by malware creators. - -type: date - --- - -*`file.elf.exports`*:: -+ --- -List of exported element names and types. - -type: flattened - --- - -*`file.elf.header.abi_version`*:: -+ --- -Version of the ELF Application Binary Interface (ABI). - -type: keyword - --- - -*`file.elf.header.class`*:: -+ --- -Header class of the ELF file. - -type: keyword - --- - -*`file.elf.header.data`*:: -+ --- -Data table of the ELF header. - -type: keyword - --- - -*`file.elf.header.entrypoint`*:: -+ --- -Header entrypoint of the ELF file. - -type: long - -format: string - --- - -*`file.elf.header.object_version`*:: -+ --- -"0x1" for original ELF files. - -type: keyword - --- - -*`file.elf.header.os_abi`*:: -+ --- -Application Binary Interface (ABI) of the Linux OS. - -type: keyword - --- - -*`file.elf.header.type`*:: -+ --- -Header type of the ELF file. - -type: keyword - --- - -*`file.elf.header.version`*:: -+ --- -Version of the ELF header. - -type: keyword - --- - -*`file.elf.imports`*:: -+ --- -List of imported element names and types. - -type: flattened - --- - -*`file.elf.sections`*:: -+ --- -An array containing an object for each section of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.sections.*`. - -type: nested - --- - -*`file.elf.sections.chi2`*:: -+ --- -Chi-square probability distribution of the section. - -type: long - -format: number - --- - -*`file.elf.sections.entropy`*:: -+ --- -Shannon entropy calculation from the section. - -type: long - -format: number - --- - -*`file.elf.sections.flags`*:: -+ --- -ELF Section List flags. - -type: keyword - --- - -*`file.elf.sections.name`*:: -+ --- -ELF Section List name. - -type: keyword - --- - -*`file.elf.sections.physical_offset`*:: -+ --- -ELF Section List offset. - -type: keyword - --- - -*`file.elf.sections.physical_size`*:: -+ --- -ELF Section List physical size. - -type: long - -format: bytes - --- - -*`file.elf.sections.type`*:: -+ --- -ELF Section List type. - -type: keyword - --- - -*`file.elf.sections.virtual_address`*:: -+ --- -ELF Section List virtual address. - -type: long - -format: string - --- - -*`file.elf.sections.virtual_size`*:: -+ --- -ELF Section List virtual size. - -type: long - -format: string - --- - -*`file.elf.segments`*:: -+ --- -An array containing an object for each segment of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.segments.*`. - -type: nested - --- - -*`file.elf.segments.sections`*:: -+ --- -ELF object segment sections. - -type: keyword - --- - -*`file.elf.segments.type`*:: -+ --- -ELF object segment type. - -type: keyword - --- - -*`file.elf.shared_libraries`*:: -+ --- -List of shared libraries used by this ELF object. - -type: keyword - --- - -*`file.elf.telfhash`*:: -+ --- -telfhash symbol hash for ELF file. - -type: keyword - --- - -*`file.extension`*:: -+ --- -File extension, excluding the leading dot. -Note that when the file name has multiple extensions (example.tar.gz), only the last one should be captured ("gz", not "tar.gz"). - -type: keyword - -example: png - --- - -*`file.fork_name`*:: -+ --- -A fork is additional data associated with a filesystem object. -On Linux, a resource fork is used to store additional data with a filesystem object. A file always has at least one fork for the data portion, and additional forks may exist. -On NTFS, this is analogous to an Alternate Data Stream (ADS), and the default data stream for a file is just called $DATA. Zone.Identifier is commonly used by Windows to track contents downloaded from the Internet. An ADS is typically of the form: `C:\path\to\filename.extension:some_fork_name`, and `some_fork_name` is the value that should populate `fork_name`. `filename.extension` should populate `file.name`, and `extension` should populate `file.extension`. The full path, `file.path`, will include the fork name. - -type: keyword - -example: Zone.Identifer - --- - -*`file.gid`*:: -+ --- -Primary group ID (GID) of the file. - -type: keyword - -example: 1001 - --- - -*`file.group`*:: -+ --- -Primary group name of the file. - -type: keyword - -example: alice - --- - -*`file.hash.md5`*:: -+ --- -MD5 hash. - -type: keyword - --- - -*`file.hash.sha1`*:: -+ --- -SHA1 hash. - -type: keyword - --- - -*`file.hash.sha256`*:: -+ --- -SHA256 hash. - -type: keyword - --- - -*`file.hash.sha512`*:: -+ --- -SHA512 hash. - -type: keyword - --- - -*`file.hash.ssdeep`*:: -+ --- -SSDEEP hash. - -type: keyword - --- - -*`file.inode`*:: -+ --- -Inode representing the file in the filesystem. - -type: keyword - -example: 256383 - --- - -*`file.mime_type`*:: -+ --- -MIME type should identify the format of the file or stream of bytes using https://www.iana.org/assignments/media-types/media-types.xhtml[IANA official types], where possible. When more than one type is applicable, the most specific type should be used. - -type: keyword - --- - -*`file.mode`*:: -+ --- -Mode of the file in octal representation. - -type: keyword - -example: 0640 - --- - -*`file.mtime`*:: -+ --- -Last time the file content was modified. - -type: date - --- - -*`file.name`*:: -+ --- -Name of the file including the extension, without the directory. - -type: keyword - -example: example.png - --- - -*`file.owner`*:: -+ --- -File owner's username. - -type: keyword - -example: alice - --- - -*`file.path`*:: -+ --- -Full path to the file, including the file name. It should include the drive letter, when appropriate. - -type: keyword - -example: /home/alice/example.png - --- - -*`file.path.text`*:: -+ --- -type: match_only_text - --- - -*`file.pe.architecture`*:: -+ --- -CPU architecture target for the file. - -type: keyword - -example: x64 - --- - -*`file.pe.company`*:: -+ --- -Internal company name of the file, provided at compile-time. - -type: keyword - -example: Microsoft Corporation - --- - -*`file.pe.description`*:: -+ --- -Internal description of the file, provided at compile-time. - -type: keyword - -example: Paint - --- - -*`file.pe.file_version`*:: -+ --- -Internal version of the file, provided at compile-time. - -type: keyword - -example: 6.3.9600.17415 - --- - -*`file.pe.imphash`*:: -+ --- -A hash of the imports in a PE file. An imphash -- or import hash -- can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. -Learn more at https://www.fireeye.com/blog/threat-research/2014/01/tracking-malware-import-hashing.html. - -type: keyword - -example: 0c6803c4e922103c4dca5963aad36ddf - --- - -*`file.pe.original_file_name`*:: -+ --- -Internal name of the file, provided at compile-time. - -type: keyword - -example: MSPAINT.EXE - --- - -*`file.pe.product`*:: -+ --- -Internal product name of the file, provided at compile-time. - -type: keyword - -example: Microsoft® Windows® Operating System - --- - -*`file.size`*:: -+ --- -File size in bytes. -Only relevant when `file.type` is "file". - -type: long - -example: 16384 - --- - -*`file.target_path`*:: -+ --- -Target path for symlinks. - -type: keyword - --- - -*`file.target_path.text`*:: -+ --- -type: match_only_text - --- - -*`file.type`*:: -+ --- -File type (file, dir, or symlink). - -type: keyword - -example: file - --- - -*`file.uid`*:: -+ --- -The user ID (UID) or security identifier (SID) of the file owner. - -type: keyword - -example: 1001 - --- - -*`file.x509.alternative_names`*:: -+ --- -List of subject alternative names (SAN). Name types vary by certificate authority and certificate type but commonly contain IP addresses, DNS names (and wildcards), and email addresses. - -type: keyword - -example: *.elastic.co - --- - -*`file.x509.issuer.common_name`*:: -+ --- -List of common name (CN) of issuing certificate authority. - -type: keyword - -example: Example SHA2 High Assurance Server CA - --- - -*`file.x509.issuer.country`*:: -+ --- -List of country (C) codes - -type: keyword - -example: US - --- - -*`file.x509.issuer.distinguished_name`*:: -+ --- -Distinguished name (DN) of issuing certificate authority. - -type: keyword - -example: C=US, O=Example Inc, OU=www.example.com, CN=Example SHA2 High Assurance Server CA - --- - -*`file.x509.issuer.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: Mountain View - --- - -*`file.x509.issuer.organization`*:: -+ --- -List of organizations (O) of issuing certificate authority. - -type: keyword - -example: Example Inc - --- - -*`file.x509.issuer.organizational_unit`*:: -+ --- -List of organizational units (OU) of issuing certificate authority. - -type: keyword - -example: www.example.com - --- - -*`file.x509.issuer.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`file.x509.not_after`*:: -+ --- -Time at which the certificate is no longer considered valid. - -type: date - -example: 2020-07-16 03:15:39+00:00 - --- - -*`file.x509.not_before`*:: -+ --- -Time at which the certificate is first considered valid. - -type: date - -example: 2019-08-16 01:40:25+00:00 - --- - -*`file.x509.public_key_algorithm`*:: -+ --- -Algorithm used to generate the public key. - -type: keyword - -example: RSA - --- - -*`file.x509.public_key_curve`*:: -+ --- -The curve used by the elliptic curve public key algorithm. This is algorithm specific. - -type: keyword - -example: nistp521 - --- - -*`file.x509.public_key_exponent`*:: -+ --- -Exponent used to derive the public key. This is algorithm specific. - -type: long - -example: 65537 - -Field is not indexed. - --- - -*`file.x509.public_key_size`*:: -+ --- -The size of the public key space in bits. - -type: long - -example: 2048 - --- - -*`file.x509.serial_number`*:: -+ --- -Unique serial number issued by the certificate authority. For consistency, if this value is alphanumeric, it should be formatted without colons and uppercase characters. - -type: keyword - -example: 55FBB9C7DEBF09809D12CCAA - --- - -*`file.x509.signature_algorithm`*:: -+ --- -Identifier for certificate signature algorithm. We recommend using names found in Go Lang Crypto library. See https://github.com/golang/go/blob/go1.14/src/crypto/x509/x509.go#L337-L353. - -type: keyword - -example: SHA256-RSA - --- - -*`file.x509.subject.common_name`*:: -+ --- -List of common names (CN) of subject. - -type: keyword - -example: shared.global.example.net - --- - -*`file.x509.subject.country`*:: -+ --- -List of country (C) code - -type: keyword - -example: US - --- - -*`file.x509.subject.distinguished_name`*:: -+ --- -Distinguished name (DN) of the certificate subject entity. - -type: keyword - -example: C=US, ST=California, L=San Francisco, O=Example, Inc., CN=shared.global.example.net - --- - -*`file.x509.subject.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: San Francisco - --- - -*`file.x509.subject.organization`*:: -+ --- -List of organizations (O) of subject. - -type: keyword - -example: Example, Inc. - --- - -*`file.x509.subject.organizational_unit`*:: -+ --- -List of organizational units (OU) of subject. - -type: keyword - --- - -*`file.x509.subject.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`file.x509.version_number`*:: -+ --- -Version of x509 format. - -type: keyword - -example: 3 - --- - -[float] -=== geo - -Geo fields can carry data about a specific location related to an event. -This geolocation information can be derived from techniques such as Geo IP, or be user-supplied. - - -*`geo.city_name`*:: -+ --- -City name. - -type: keyword - -example: Montreal - --- - -*`geo.continent_code`*:: -+ --- -Two-letter code representing continent's name. - -type: keyword - -example: NA - --- - -*`geo.continent_name`*:: -+ --- -Name of the continent. - -type: keyword - -example: North America - --- - -*`geo.country_iso_code`*:: -+ --- -Country ISO code. - -type: keyword - -example: CA - --- - -*`geo.country_name`*:: -+ --- -Country name. - -type: keyword - -example: Canada - --- - -*`geo.location`*:: -+ --- -Longitude and latitude. - -type: geo_point - -example: { "lon": -73.614830, "lat": 45.505918 } - --- - -*`geo.name`*:: -+ --- -User-defined description of a location, at the level of granularity they care about. -Could be the name of their data centers, the floor number, if this describes a local physical entity, city names. -Not typically used in automated geolocation. - -type: keyword - -example: boston-dc - --- - -*`geo.postal_code`*:: -+ --- -Postal code associated with the location. -Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. - -type: keyword - -example: 94040 - --- - -*`geo.region_iso_code`*:: -+ --- -Region ISO code. - -type: keyword - -example: CA-QC - --- - -*`geo.region_name`*:: -+ --- -Region name. - -type: keyword - -example: Quebec - --- - -*`geo.timezone`*:: -+ --- -The time zone of the location, such as IANA time zone name. - -type: keyword - -example: America/Argentina/Buenos_Aires - --- - -[float] -=== group - -The group fields are meant to represent groups that are relevant to the event. - - -*`group.domain`*:: -+ --- -Name of the directory the group is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`group.id`*:: -+ --- -Unique identifier for the group on the system/platform. - -type: keyword - --- - -*`group.name`*:: -+ --- -Name of the group. - -type: keyword - --- - -[float] -=== hash - -The hash fields represent different bitwise hash algorithms and their values. -Field names for common hashes (e.g. MD5, SHA1) are predefined. Add fields for other hashes by lowercasing the hash algorithm name and using underscore separators as appropriate (snake case, e.g. sha3_512). -Note that this fieldset is used for common hashes that may be computed over a range of generic bytes. Entity-specific hashes such as ja3 or imphash are placed in the fieldsets to which they relate (tls and pe, respectively). - - -*`hash.md5`*:: -+ --- -MD5 hash. - -type: keyword - --- - -*`hash.sha1`*:: -+ --- -SHA1 hash. - -type: keyword - --- - -*`hash.sha256`*:: -+ --- -SHA256 hash. - -type: keyword - --- - -*`hash.sha512`*:: -+ --- -SHA512 hash. - -type: keyword - --- - -*`hash.ssdeep`*:: -+ --- -SSDEEP hash. - -type: keyword - --- - -[float] -=== host - -A host is defined as a general computing instance. -ECS host.* fields should be populated with details about the host on which the event happened, or from which the measurement was taken. Host types include hardware, virtual machines, Docker containers, and Kubernetes nodes. - - -*`host.architecture`*:: -+ --- -Operating system architecture. - -type: keyword - -example: x86_64 - --- - -*`host.cpu.usage`*:: -+ --- -Percent CPU used which is normalized by the number of CPU cores and it ranges from 0 to 1. -Scaling factor: 1000. -For example: For a two core host, this value should be the average of the two cores, between 0 and 1. - -type: scaled_float - --- - -*`host.disk.read.bytes`*:: -+ --- -The total number of bytes (gauge) read successfully (aggregated from all disks) since the last metric collection. - -type: long - --- - -*`host.disk.write.bytes`*:: -+ --- -The total number of bytes (gauge) written successfully (aggregated from all disks) since the last metric collection. - -type: long - --- - -*`host.domain`*:: -+ --- -Name of the domain of which the host is a member. -For example, on Windows this could be the host's Active Directory domain or NetBIOS domain name. For Linux this could be the domain of the host's LDAP provider. - -type: keyword - -example: CONTOSO - --- - -*`host.geo.city_name`*:: -+ --- -City name. - -type: keyword - -example: Montreal - --- - -*`host.geo.continent_code`*:: -+ --- -Two-letter code representing continent's name. - -type: keyword - -example: NA - --- - -*`host.geo.continent_name`*:: -+ --- -Name of the continent. - -type: keyword - -example: North America - --- - -*`host.geo.country_iso_code`*:: -+ --- -Country ISO code. - -type: keyword - -example: CA - --- - -*`host.geo.country_name`*:: -+ --- -Country name. - -type: keyword - -example: Canada - --- - -*`host.geo.location`*:: -+ --- -Longitude and latitude. - -type: geo_point - -example: { "lon": -73.614830, "lat": 45.505918 } - --- - -*`host.geo.name`*:: -+ --- -User-defined description of a location, at the level of granularity they care about. -Could be the name of their data centers, the floor number, if this describes a local physical entity, city names. -Not typically used in automated geolocation. - -type: keyword - -example: boston-dc - --- - -*`host.geo.postal_code`*:: -+ --- -Postal code associated with the location. -Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. - -type: keyword - -example: 94040 - --- - -*`host.geo.region_iso_code`*:: -+ --- -Region ISO code. - -type: keyword - -example: CA-QC - --- - -*`host.geo.region_name`*:: -+ --- -Region name. - -type: keyword - -example: Quebec - --- - -*`host.geo.timezone`*:: -+ --- -The time zone of the location, such as IANA time zone name. - -type: keyword - -example: America/Argentina/Buenos_Aires - --- - -*`host.hostname`*:: -+ --- -Hostname of the host. -It normally contains what the `hostname` command returns on the host machine. - -type: keyword - --- - -*`host.id`*:: -+ --- -Unique host id. -As hostname is not always unique, use values that are meaningful in your environment. -Example: The current usage of `beat.name`. - -type: keyword - --- - -*`host.ip`*:: -+ --- -Host ip addresses. - -type: ip - --- - -*`host.mac`*:: -+ --- -Host MAC addresses. -The notation format from RFC 7042 is suggested: Each octet (that is, 8-bit byte) is represented by two [uppercase] hexadecimal digits giving the value of the octet as an unsigned integer. Successive octets are separated by a hyphen. - -type: keyword - -example: ["00-00-5E-00-53-23", "00-00-5E-00-53-24"] - --- - -*`host.name`*:: -+ --- -Name of the host. -It can contain what `hostname` returns on Unix systems, the fully qualified domain name, or a name specified by the user. The sender decides which value to use. - -type: keyword - --- - -*`host.network.egress.bytes`*:: -+ --- -The number of bytes (gauge) sent out on all network interfaces by the host since the last metric collection. - -type: long - --- - -*`host.network.egress.packets`*:: -+ --- -The number of packets (gauge) sent out on all network interfaces by the host since the last metric collection. - -type: long - --- - -*`host.network.ingress.bytes`*:: -+ --- -The number of bytes received (gauge) on all network interfaces by the host since the last metric collection. - -type: long - --- - -*`host.network.ingress.packets`*:: -+ --- -The number of packets (gauge) received on all network interfaces by the host since the last metric collection. - -type: long - --- - -*`host.os.family`*:: -+ --- -OS family (such as redhat, debian, freebsd, windows). - -type: keyword - -example: debian - --- - -*`host.os.full`*:: -+ --- -Operating system name, including the version or code name. - -type: keyword - -example: Mac OS Mojave - --- - -*`host.os.full.text`*:: -+ --- -type: match_only_text - --- - -*`host.os.kernel`*:: -+ --- -Operating system kernel version as a raw string. - -type: keyword - -example: 4.4.0-112-generic - --- - -*`host.os.name`*:: -+ --- -Operating system name, without the version. - -type: keyword - -example: Mac OS X - --- - -*`host.os.name.text`*:: -+ --- -type: match_only_text - --- - -*`host.os.platform`*:: -+ --- -Operating system platform (such centos, ubuntu, windows). - -type: keyword - -example: darwin - --- - -*`host.os.type`*:: -+ --- -Use the `os.type` field to categorize the operating system into one of the broad commercial families. -One of these following values should be used (lowercase): linux, macos, unix, windows. -If the OS you're dealing with is not in the list, the field should not be populated. Please let us know by opening an issue with ECS, to propose its addition. - -type: keyword - -example: macos - --- - -*`host.os.version`*:: -+ --- -Operating system version as a raw string. - -type: keyword - -example: 10.14.1 - --- - -*`host.type`*:: -+ --- -Type of host. -For Cloud providers this can be the machine type like `t2.medium`. If vm, this could be the container, for example, or other information meaningful in your environment. - -type: keyword - --- - -*`host.uptime`*:: -+ --- -Seconds the host has been up. - -type: long - -example: 1325 - --- - -[float] -=== http - -Fields related to HTTP activity. Use the `url` field set to store the url of the request. - - -*`http.request.body.bytes`*:: -+ --- -Size in bytes of the request body. - -type: long - -example: 887 - -format: bytes - --- - -*`http.request.body.content`*:: -+ --- -The full HTTP request body. - -type: wildcard - -example: Hello world - --- - -*`http.request.body.content.text`*:: -+ --- -type: match_only_text - --- - -*`http.request.bytes`*:: -+ --- -Total size in bytes of the request (body and headers). - -type: long - -example: 1437 - -format: bytes - --- - -*`http.request.id`*:: -+ --- -A unique identifier for each HTTP request to correlate logs between clients and servers in transactions. -The id may be contained in a non-standard HTTP header, such as `X-Request-ID` or `X-Correlation-ID`. - -type: keyword - -example: 123e4567-e89b-12d3-a456-426614174000 - --- - -*`http.request.method`*:: -+ --- -HTTP request method. -The value should retain its casing from the original event. For example, `GET`, `get`, and `GeT` are all considered valid values for this field. - -type: keyword - -example: POST - --- - -*`http.request.mime_type`*:: -+ --- -Mime type of the body of the request. -This value must only be populated based on the content of the request body, not on the `Content-Type` header. Comparing the mime type of a request with the request's Content-Type header can be helpful in detecting threats or misconfigured clients. - -type: keyword - -example: image/gif - --- - -*`http.request.referrer`*:: -+ --- -Referrer for this HTTP request. - -type: keyword - -example: https://blog.example.com/ - --- - -*`http.response.body.bytes`*:: -+ --- -Size in bytes of the response body. - -type: long - -example: 887 - -format: bytes - --- - -*`http.response.body.content`*:: -+ --- -The full HTTP response body. - -type: wildcard - -example: Hello world - --- - -*`http.response.body.content.text`*:: -+ --- -type: match_only_text - --- - -*`http.response.bytes`*:: -+ --- -Total size in bytes of the response (body and headers). - -type: long - -example: 1437 - -format: bytes - --- - -*`http.response.mime_type`*:: -+ --- -Mime type of the body of the response. -This value must only be populated based on the content of the response body, not on the `Content-Type` header. Comparing the mime type of a response with the response's Content-Type header can be helpful in detecting misconfigured servers. - -type: keyword - -example: image/gif - --- - -*`http.response.status_code`*:: -+ --- -HTTP response status code. - -type: long - -example: 404 - -format: string - --- - -*`http.version`*:: -+ --- -HTTP version. - -type: keyword - -example: 1.1 - --- - -[float] -=== interface - -The interface fields are used to record ingress and egress interface information when reported by an observer (e.g. firewall, router, load balancer) in the context of the observer handling a network connection. In the case of a single observer interface (e.g. network sensor on a span port) only the observer.ingress information should be populated. - - -*`interface.alias`*:: -+ --- -Interface alias as reported by the system, typically used in firewall implementations for e.g. inside, outside, or dmz logical interface naming. - -type: keyword - -example: outside - --- - -*`interface.id`*:: -+ --- -Interface ID as reported by an observer (typically SNMP interface ID). - -type: keyword - -example: 10 - --- - -*`interface.name`*:: -+ --- -Interface name as reported by the system. - -type: keyword - -example: eth0 - --- - -[float] -=== log - -Details about the event's logging mechanism or logging transport. -The log.* fields are typically populated with details about the logging mechanism used to create and/or transport the event. For example, syslog details belong under `log.syslog.*`. -The details specific to your event source are typically not logged under `log.*`, but rather in `event.*` or in other ECS fields. - - -*`log.file.path`*:: -+ --- -Full path to the log file this event came from, including the file name. It should include the drive letter, when appropriate. -If the event wasn't read from a log file, do not populate this field. - -type: keyword - -example: /var/log/fun-times.log - --- - -*`log.level`*:: -+ --- -Original log level of the log event. -If the source of the event provides a log level or textual severity, this is the one that goes in `log.level`. If your source doesn't specify one, you may put your event transport's severity here (e.g. Syslog severity). -Some examples are `warn`, `err`, `i`, `informational`. - -type: keyword - -example: error - --- - -*`log.logger`*:: -+ --- -The name of the logger inside an application. This is usually the name of the class which initialized the logger, or can be a custom name. - -type: keyword - -example: org.elasticsearch.bootstrap.Bootstrap - --- - -*`log.origin.file.line`*:: -+ --- -The line number of the file containing the source code which originated the log event. - -type: long - -example: 42 - --- - -*`log.origin.file.name`*:: -+ --- -The name of the file containing the source code which originated the log event. -Note that this field is not meant to capture the log file. The correct field to capture the log file is `log.file.path`. - -type: keyword - -example: Bootstrap.java - --- - -*`log.origin.function`*:: -+ --- -The name of the function or method which originated the log event. - -type: keyword - -example: init - --- - -*`log.syslog`*:: -+ --- -The Syslog metadata of the event, if the event was transmitted via Syslog. Please see RFCs 5424 or 3164. - -type: object - --- - -*`log.syslog.facility.code`*:: -+ --- -The Syslog numeric facility of the log event, if available. -According to RFCs 5424 and 3164, this value should be an integer between 0 and 23. - -type: long - -example: 23 - -format: string - --- - -*`log.syslog.facility.name`*:: -+ --- -The Syslog text-based facility of the log event, if available. - -type: keyword - -example: local7 - --- - -*`log.syslog.priority`*:: -+ --- -Syslog numeric priority of the event, if available. -According to RFCs 5424 and 3164, the priority is 8 * facility + severity. This number is therefore expected to contain a value between 0 and 191. - -type: long - -example: 135 - -format: string - --- - -*`log.syslog.severity.code`*:: -+ --- -The Syslog numeric severity of the log event, if available. -If the event source publishing via Syslog provides a different numeric severity value (e.g. firewall, IDS), your source's numeric severity should go to `event.severity`. If the event source does not specify a distinct severity, you can optionally copy the Syslog severity to `event.severity`. - -type: long - -example: 3 - --- - -*`log.syslog.severity.name`*:: -+ --- -The Syslog numeric severity of the log event, if available. -If the event source publishing via Syslog provides a different severity value (e.g. firewall, IDS), your source's text severity should go to `log.level`. If the event source does not specify a distinct severity, you can optionally copy the Syslog severity to `log.level`. - -type: keyword - -example: Error - --- - -[float] -=== network - -The network is defined as the communication path over which a host or network event happens. -The network.* fields should be populated with details about the network activity associated with an event. - - -*`network.application`*:: -+ --- -When a specific application or service is identified from network connection details (source/dest IPs, ports, certificates, or wire format), this field captures the application's or service's name. -For example, the original event identifies the network connection being from a specific web service in a `https` network connection, like `facebook` or `twitter`. -The field value must be normalized to lowercase for querying. - -type: keyword - -example: aim - --- - -*`network.bytes`*:: -+ --- -Total bytes transferred in both directions. -If `source.bytes` and `destination.bytes` are known, `network.bytes` is their sum. - -type: long - -example: 368 - -format: bytes - --- - -*`network.community_id`*:: -+ --- -A hash of source and destination IPs and ports, as well as the protocol used in a communication. This is a tool-agnostic standard to identify flows. -Learn more at https://github.com/corelight/community-id-spec. - -type: keyword - -example: 1:hO+sN4H+MG5MY/8hIrXPqc4ZQz0= - --- - -*`network.direction`*:: -+ --- -Direction of the network traffic. -Recommended values are: - * ingress - * egress - * inbound - * outbound - * internal - * external - * unknown - -When mapping events from a host-based monitoring context, populate this field from the host's point of view, using the values "ingress" or "egress". -When mapping events from a network or perimeter-based monitoring context, populate this field from the point of view of the network perimeter, using the values "inbound", "outbound", "internal" or "external". -Note that "internal" is not crossing perimeter boundaries, and is meant to describe communication between two hosts within the perimeter. Note also that "external" is meant to describe traffic between two hosts that are external to the perimeter. This could for example be useful for ISPs or VPN service providers. - -type: keyword - -example: inbound - --- - -*`network.forwarded_ip`*:: -+ --- -Host IP address when the source IP address is the proxy. - -type: ip - -example: 192.1.1.2 - --- - -*`network.iana_number`*:: -+ --- -IANA Protocol Number (https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml). Standardized list of protocols. This aligns well with NetFlow and sFlow related logs which use the IANA Protocol Number. - -type: keyword - -example: 6 - --- - -*`network.inner`*:: -+ --- -Network.inner fields are added in addition to network.vlan fields to describe the innermost VLAN when q-in-q VLAN tagging is present. Allowed fields include vlan.id and vlan.name. Inner vlan fields are typically used when sending traffic with multiple 802.1q encapsulations to a network sensor (e.g. Zeek, Wireshark.) - -type: object - --- - -*`network.inner.vlan.id`*:: -+ --- -VLAN ID as reported by the observer. - -type: keyword - -example: 10 - --- - -*`network.inner.vlan.name`*:: -+ --- -Optional VLAN name as reported by the observer. - -type: keyword - -example: outside - --- - -*`network.name`*:: -+ --- -Name given by operators to sections of their network. - -type: keyword - -example: Guest Wifi - --- - -*`network.packets`*:: -+ --- -Total packets transferred in both directions. -If `source.packets` and `destination.packets` are known, `network.packets` is their sum. - -type: long - -example: 24 - --- - -*`network.protocol`*:: -+ --- -In the OSI Model this would be the Application Layer protocol. For example, `http`, `dns`, or `ssh`. -The field value must be normalized to lowercase for querying. - -type: keyword - -example: http - --- - -*`network.transport`*:: -+ --- -Same as network.iana_number, but instead using the Keyword name of the transport layer (udp, tcp, ipv6-icmp, etc.) -The field value must be normalized to lowercase for querying. - -type: keyword - -example: tcp - --- - -*`network.type`*:: -+ --- -In the OSI Model this would be the Network Layer. ipv4, ipv6, ipsec, pim, etc -The field value must be normalized to lowercase for querying. - -type: keyword - -example: ipv4 - --- - -*`network.vlan.id`*:: -+ --- -VLAN ID as reported by the observer. - -type: keyword - -example: 10 - --- - -*`network.vlan.name`*:: -+ --- -Optional VLAN name as reported by the observer. - -type: keyword - -example: outside - --- - -[float] -=== observer - -An observer is defined as a special network, security, or application device used to detect, observe, or create network, security, or application-related events and metrics. -This could be a custom hardware appliance or a server that has been configured to run special network, security, or application software. Examples include firewalls, web proxies, intrusion detection/prevention systems, network monitoring sensors, web application firewalls, data loss prevention systems, and APM servers. The observer.* fields shall be populated with details of the system, if any, that detects, observes and/or creates a network, security, or application event or metric. Message queues and ETL components used in processing events or metrics are not considered observers in ECS. - - -*`observer.egress`*:: -+ --- -Observer.egress holds information like interface number and name, vlan, and zone information to classify egress traffic. Single armed monitoring such as a network sensor on a span port should only use observer.ingress to categorize traffic. - -type: object - --- - -*`observer.egress.interface.alias`*:: -+ --- -Interface alias as reported by the system, typically used in firewall implementations for e.g. inside, outside, or dmz logical interface naming. - -type: keyword - -example: outside - --- - -*`observer.egress.interface.id`*:: -+ --- -Interface ID as reported by an observer (typically SNMP interface ID). - -type: keyword - -example: 10 - --- - -*`observer.egress.interface.name`*:: -+ --- -Interface name as reported by the system. - -type: keyword - -example: eth0 - --- - -*`observer.egress.vlan.id`*:: -+ --- -VLAN ID as reported by the observer. - -type: keyword - -example: 10 - --- - -*`observer.egress.vlan.name`*:: -+ --- -Optional VLAN name as reported by the observer. - -type: keyword - -example: outside - --- - -*`observer.egress.zone`*:: -+ --- -Network zone of outbound traffic as reported by the observer to categorize the destination area of egress traffic, e.g. Internal, External, DMZ, HR, Legal, etc. - -type: keyword - -example: Public_Internet - --- - -*`observer.geo.city_name`*:: -+ --- -City name. - -type: keyword - -example: Montreal - --- - -*`observer.geo.continent_code`*:: -+ --- -Two-letter code representing continent's name. - -type: keyword - -example: NA - --- - -*`observer.geo.continent_name`*:: -+ --- -Name of the continent. - -type: keyword - -example: North America - --- - -*`observer.geo.country_iso_code`*:: -+ --- -Country ISO code. - -type: keyword - -example: CA - --- - -*`observer.geo.country_name`*:: -+ --- -Country name. - -type: keyword - -example: Canada - --- - -*`observer.geo.location`*:: -+ --- -Longitude and latitude. - -type: geo_point - -example: { "lon": -73.614830, "lat": 45.505918 } - --- - -*`observer.geo.name`*:: -+ --- -User-defined description of a location, at the level of granularity they care about. -Could be the name of their data centers, the floor number, if this describes a local physical entity, city names. -Not typically used in automated geolocation. - -type: keyword - -example: boston-dc - --- - -*`observer.geo.postal_code`*:: -+ --- -Postal code associated with the location. -Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. - -type: keyword - -example: 94040 - --- - -*`observer.geo.region_iso_code`*:: -+ --- -Region ISO code. - -type: keyword - -example: CA-QC - --- - -*`observer.geo.region_name`*:: -+ --- -Region name. - -type: keyword - -example: Quebec - --- - -*`observer.geo.timezone`*:: -+ --- -The time zone of the location, such as IANA time zone name. - -type: keyword - -example: America/Argentina/Buenos_Aires - --- - -*`observer.hostname`*:: -+ --- -Hostname of the observer. - -type: keyword - --- - -*`observer.ingress`*:: -+ --- -Observer.ingress holds information like interface number and name, vlan, and zone information to classify ingress traffic. Single armed monitoring such as a network sensor on a span port should only use observer.ingress to categorize traffic. - -type: object - --- - -*`observer.ingress.interface.alias`*:: -+ --- -Interface alias as reported by the system, typically used in firewall implementations for e.g. inside, outside, or dmz logical interface naming. - -type: keyword - -example: outside - --- - -*`observer.ingress.interface.id`*:: -+ --- -Interface ID as reported by an observer (typically SNMP interface ID). - -type: keyword - -example: 10 - --- - -*`observer.ingress.interface.name`*:: -+ --- -Interface name as reported by the system. - -type: keyword - -example: eth0 - --- - -*`observer.ingress.vlan.id`*:: -+ --- -VLAN ID as reported by the observer. - -type: keyword - -example: 10 - --- - -*`observer.ingress.vlan.name`*:: -+ --- -Optional VLAN name as reported by the observer. - -type: keyword - -example: outside - --- - -*`observer.ingress.zone`*:: -+ --- -Network zone of incoming traffic as reported by the observer to categorize the source area of ingress traffic. e.g. internal, External, DMZ, HR, Legal, etc. - -type: keyword - -example: DMZ - --- - -*`observer.ip`*:: -+ --- -IP addresses of the observer. - -type: ip - --- - -*`observer.mac`*:: -+ --- -MAC addresses of the observer. -The notation format from RFC 7042 is suggested: Each octet (that is, 8-bit byte) is represented by two [uppercase] hexadecimal digits giving the value of the octet as an unsigned integer. Successive octets are separated by a hyphen. - -type: keyword - -example: ["00-00-5E-00-53-23", "00-00-5E-00-53-24"] - --- - -*`observer.name`*:: -+ --- -Custom name of the observer. -This is a name that can be given to an observer. This can be helpful for example if multiple firewalls of the same model are used in an organization. -If no custom name is needed, the field can be left empty. - -type: keyword - -example: 1_proxySG - --- - -*`observer.os.family`*:: -+ --- -OS family (such as redhat, debian, freebsd, windows). - -type: keyword - -example: debian - --- - -*`observer.os.full`*:: -+ --- -Operating system name, including the version or code name. - -type: keyword - -example: Mac OS Mojave - --- - -*`observer.os.full.text`*:: -+ --- -type: match_only_text - --- - -*`observer.os.kernel`*:: -+ --- -Operating system kernel version as a raw string. - -type: keyword - -example: 4.4.0-112-generic - --- - -*`observer.os.name`*:: -+ --- -Operating system name, without the version. - -type: keyword - -example: Mac OS X - --- - -*`observer.os.name.text`*:: -+ --- -type: match_only_text - --- - -*`observer.os.platform`*:: -+ --- -Operating system platform (such centos, ubuntu, windows). - -type: keyword - -example: darwin - --- - -*`observer.os.type`*:: -+ --- -Use the `os.type` field to categorize the operating system into one of the broad commercial families. -One of these following values should be used (lowercase): linux, macos, unix, windows. -If the OS you're dealing with is not in the list, the field should not be populated. Please let us know by opening an issue with ECS, to propose its addition. - -type: keyword - -example: macos - --- - -*`observer.os.version`*:: -+ --- -Operating system version as a raw string. - -type: keyword - -example: 10.14.1 - --- - -*`observer.product`*:: -+ --- -The product name of the observer. - -type: keyword - -example: s200 - --- - -*`observer.serial_number`*:: -+ --- -Observer serial number. - -type: keyword - --- - -*`observer.type`*:: -+ --- -The type of the observer the data is coming from. -There is no predefined list of observer types. Some examples are `forwarder`, `firewall`, `ids`, `ips`, `proxy`, `poller`, `sensor`, `APM server`. - -type: keyword - -example: firewall - --- - -*`observer.vendor`*:: -+ --- -Vendor name of the observer. - -type: keyword - -example: Symantec - --- - -*`observer.version`*:: -+ --- -Observer version. - -type: keyword - --- - -[float] -=== orchestrator - -Fields that describe the resources which container orchestrators manage or act upon. - - -*`orchestrator.api_version`*:: -+ --- -API version being used to carry out the action - -type: keyword - -example: v1beta1 - --- - -*`orchestrator.cluster.name`*:: -+ --- -Name of the cluster. - -type: keyword - --- - -*`orchestrator.cluster.url`*:: -+ --- -URL of the API used to manage the cluster. - -type: keyword - --- - -*`orchestrator.cluster.version`*:: -+ --- -The version of the cluster. - -type: keyword - --- - -*`orchestrator.namespace`*:: -+ --- -Namespace in which the action is taking place. - -type: keyword - -example: kube-system - --- - -*`orchestrator.organization`*:: -+ --- -Organization affected by the event (for multi-tenant orchestrator setups). - -type: keyword - -example: elastic - --- - -*`orchestrator.resource.name`*:: -+ --- -Name of the resource being acted upon. - -type: keyword - -example: test-pod-cdcws - --- - -*`orchestrator.resource.type`*:: -+ --- -Type of resource being acted upon. - -type: keyword - -example: service - --- - -*`orchestrator.type`*:: -+ --- -Orchestrator cluster type (e.g. kubernetes, nomad or cloudfoundry). - -type: keyword - -example: kubernetes - --- - -[float] -=== organization - -The organization fields enrich data with information about the company or entity the data is associated with. -These fields help you arrange or filter data stored in an index by one or multiple organizations. - - -*`organization.id`*:: -+ --- -Unique identifier for the organization. - -type: keyword - --- - -*`organization.name`*:: -+ --- -Organization name. - -type: keyword - --- - -*`organization.name.text`*:: -+ --- -type: match_only_text - --- - -[float] -=== os - -The OS fields contain information about the operating system. - - -*`os.family`*:: -+ --- -OS family (such as redhat, debian, freebsd, windows). - -type: keyword - -example: debian - --- - -*`os.full`*:: -+ --- -Operating system name, including the version or code name. - -type: keyword - -example: Mac OS Mojave - --- - -*`os.full.text`*:: -+ --- -type: match_only_text - --- - -*`os.kernel`*:: -+ --- -Operating system kernel version as a raw string. - -type: keyword - -example: 4.4.0-112-generic - --- - -*`os.name`*:: -+ --- -Operating system name, without the version. - -type: keyword - -example: Mac OS X - --- - -*`os.name.text`*:: -+ --- -type: match_only_text - --- - -*`os.platform`*:: -+ --- -Operating system platform (such centos, ubuntu, windows). - -type: keyword - -example: darwin - --- - -*`os.type`*:: -+ --- -Use the `os.type` field to categorize the operating system into one of the broad commercial families. -One of these following values should be used (lowercase): linux, macos, unix, windows. -If the OS you're dealing with is not in the list, the field should not be populated. Please let us know by opening an issue with ECS, to propose its addition. - -type: keyword - -example: macos - --- - -*`os.version`*:: -+ --- -Operating system version as a raw string. - -type: keyword - -example: 10.14.1 - --- - -[float] -=== package - -These fields contain information about an installed software package. It contains general information about a package, such as name, version or size. It also contains installation details, such as time or location. - - -*`package.architecture`*:: -+ --- -Package architecture. - -type: keyword - -example: x86_64 - --- - -*`package.build_version`*:: -+ --- -Additional information about the build version of the installed package. -For example use the commit SHA of a non-released package. - -type: keyword - -example: 36f4f7e89dd61b0988b12ee000b98966867710cd - --- - -*`package.checksum`*:: -+ --- -Checksum of the installed package for verification. - -type: keyword - -example: 68b329da9893e34099c7d8ad5cb9c940 - --- - -*`package.description`*:: -+ --- -Description of the package. - -type: keyword - -example: Open source programming language to build simple/reliable/efficient software. - --- - -*`package.install_scope`*:: -+ --- -Indicating how the package was installed, e.g. user-local, global. - -type: keyword - -example: global - --- - -*`package.installed`*:: -+ --- -Time when package was installed. - -type: date - --- - -*`package.license`*:: -+ --- -License under which the package was released. -Use a short name, e.g. the license identifier from SPDX License List where possible (https://spdx.org/licenses/). - -type: keyword - -example: Apache License 2.0 - --- - -*`package.name`*:: -+ --- -Package name - -type: keyword - -example: go - --- - -*`package.path`*:: -+ --- -Path where the package is installed. - -type: keyword - -example: /usr/local/Cellar/go/1.12.9/ - --- - -*`package.reference`*:: -+ --- -Home page or reference URL of the software in this package, if available. - -type: keyword - -example: https://golang.org - --- - -*`package.size`*:: -+ --- -Package size in bytes. - -type: long - -example: 62231 - -format: string - --- - -*`package.type`*:: -+ --- -Type of package. -This should contain the package file type, rather than the package manager name. Examples: rpm, dpkg, brew, npm, gem, nupkg, jar. - -type: keyword - -example: rpm - --- - -*`package.version`*:: -+ --- -Package version - -type: keyword - -example: 1.12.9 - --- - -[float] -=== pe - -These fields contain Windows Portable Executable (PE) metadata. - - -*`pe.architecture`*:: -+ --- -CPU architecture target for the file. - -type: keyword - -example: x64 - --- - -*`pe.company`*:: -+ --- -Internal company name of the file, provided at compile-time. - -type: keyword - -example: Microsoft Corporation - --- - -*`pe.description`*:: -+ --- -Internal description of the file, provided at compile-time. - -type: keyword - -example: Paint - --- - -*`pe.file_version`*:: -+ --- -Internal version of the file, provided at compile-time. - -type: keyword - -example: 6.3.9600.17415 - --- - -*`pe.imphash`*:: -+ --- -A hash of the imports in a PE file. An imphash -- or import hash -- can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. -Learn more at https://www.fireeye.com/blog/threat-research/2014/01/tracking-malware-import-hashing.html. - -type: keyword - -example: 0c6803c4e922103c4dca5963aad36ddf - --- - -*`pe.original_file_name`*:: -+ --- -Internal name of the file, provided at compile-time. - -type: keyword - -example: MSPAINT.EXE - --- - -*`pe.product`*:: -+ --- -Internal product name of the file, provided at compile-time. - -type: keyword - -example: Microsoft® Windows® Operating System - --- - -[float] -=== process - -These fields contain information about a process. -These fields can help you correlate metrics information with a process id/name from a log message. The `process.pid` often stays in the metric itself and is copied to the global field for correlation. - - -*`process.args`*:: -+ --- -Array of process arguments, starting with the absolute path to the executable. -May be filtered to protect sensitive information. - -type: keyword - -example: ["/usr/bin/ssh", "-l", "user", "10.0.0.16"] - --- - -*`process.args_count`*:: -+ --- -Length of the process.args array. -This field can be useful for querying or performing bucket analysis on how many arguments were provided to start a process. More arguments may be an indication of suspicious activity. - -type: long - -example: 4 - --- - -*`process.code_signature.digest_algorithm`*:: -+ --- -The hashing algorithm used to sign the process. -This value can distinguish signatures when a file is signed multiple times by the same signer but with a different digest algorithm. - -type: keyword - -example: sha256 - --- - -*`process.code_signature.exists`*:: -+ --- -Boolean to capture if a signature is present. - -type: boolean - -example: true - --- - -*`process.code_signature.signing_id`*:: -+ --- -The identifier used to sign the process. -This is used to identify the application manufactured by a software vendor. The field is relevant to Apple *OS only. - -type: keyword - -example: com.apple.xpc.proxy - --- - -*`process.code_signature.status`*:: -+ --- -Additional information about the certificate status. -This is useful for logging cryptographic errors with the certificate validity or trust status. Leave unpopulated if the validity or trust of the certificate was unchecked. - -type: keyword - -example: ERROR_UNTRUSTED_ROOT - --- - -*`process.code_signature.subject_name`*:: -+ --- -Subject name of the code signer - -type: keyword - -example: Microsoft Corporation - --- - -*`process.code_signature.team_id`*:: -+ --- -The team identifier used to sign the process. -This is used to identify the team or vendor of a software product. The field is relevant to Apple *OS only. - -type: keyword - -example: EQHXZ8M8AV - --- - -*`process.code_signature.timestamp`*:: -+ --- -Date and time when the code signature was generated and signed. - -type: date - -example: 2021-01-01T12:10:30Z - --- - -*`process.code_signature.trusted`*:: -+ --- -Stores the trust status of the certificate chain. -Validating the trust of the certificate chain may be complicated, and this field should only be populated by tools that actively check the status. - -type: boolean - -example: true - --- - -*`process.code_signature.valid`*:: -+ --- -Boolean to capture if the digital signature is verified against the binary content. -Leave unpopulated if a certificate was unchecked. - -type: boolean - -example: true - --- - -*`process.command_line`*:: -+ --- -Full command line that started the process, including the absolute path to the executable, and all arguments. -Some arguments may be filtered to protect sensitive information. - -type: wildcard - -example: /usr/bin/ssh -l user 10.0.0.16 - --- - -*`process.command_line.text`*:: -+ --- -type: match_only_text - --- - -*`process.elf.architecture`*:: -+ --- -Machine architecture of the ELF file. - -type: keyword - -example: x86-64 - --- - -*`process.elf.byte_order`*:: -+ --- -Byte sequence of ELF file. - -type: keyword - -example: Little Endian - --- - -*`process.elf.cpu_type`*:: -+ --- -CPU type of the ELF file. - -type: keyword - -example: Intel - --- - -*`process.elf.creation_date`*:: -+ --- -Extracted when possible from the file's metadata. Indicates when it was built or compiled. It can also be faked by malware creators. - -type: date - --- - -*`process.elf.exports`*:: -+ --- -List of exported element names and types. - -type: flattened - --- - -*`process.elf.header.abi_version`*:: -+ --- -Version of the ELF Application Binary Interface (ABI). - -type: keyword - --- - -*`process.elf.header.class`*:: -+ --- -Header class of the ELF file. - -type: keyword - --- - -*`process.elf.header.data`*:: -+ --- -Data table of the ELF header. - -type: keyword - --- - -*`process.elf.header.entrypoint`*:: -+ --- -Header entrypoint of the ELF file. - -type: long - -format: string - --- - -*`process.elf.header.object_version`*:: -+ --- -"0x1" for original ELF files. - -type: keyword - --- - -*`process.elf.header.os_abi`*:: -+ --- -Application Binary Interface (ABI) of the Linux OS. - -type: keyword - --- - -*`process.elf.header.type`*:: -+ --- -Header type of the ELF file. - -type: keyword - --- - -*`process.elf.header.version`*:: -+ --- -Version of the ELF header. - -type: keyword - --- - -*`process.elf.imports`*:: -+ --- -List of imported element names and types. - -type: flattened - --- - -*`process.elf.sections`*:: -+ --- -An array containing an object for each section of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.sections.*`. - -type: nested - --- - -*`process.elf.sections.chi2`*:: -+ --- -Chi-square probability distribution of the section. - -type: long - -format: number - --- - -*`process.elf.sections.entropy`*:: -+ --- -Shannon entropy calculation from the section. - -type: long - -format: number - --- - -*`process.elf.sections.flags`*:: -+ --- -ELF Section List flags. - -type: keyword - --- - -*`process.elf.sections.name`*:: -+ --- -ELF Section List name. - -type: keyword - --- - -*`process.elf.sections.physical_offset`*:: -+ --- -ELF Section List offset. - -type: keyword - --- - -*`process.elf.sections.physical_size`*:: -+ --- -ELF Section List physical size. - -type: long - -format: bytes - --- - -*`process.elf.sections.type`*:: -+ --- -ELF Section List type. - -type: keyword - --- - -*`process.elf.sections.virtual_address`*:: -+ --- -ELF Section List virtual address. - -type: long - -format: string - --- - -*`process.elf.sections.virtual_size`*:: -+ --- -ELF Section List virtual size. - -type: long - -format: string - --- - -*`process.elf.segments`*:: -+ --- -An array containing an object for each segment of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.segments.*`. - -type: nested - --- - -*`process.elf.segments.sections`*:: -+ --- -ELF object segment sections. - -type: keyword - --- - -*`process.elf.segments.type`*:: -+ --- -ELF object segment type. - -type: keyword - --- - -*`process.elf.shared_libraries`*:: -+ --- -List of shared libraries used by this ELF object. - -type: keyword - --- - -*`process.elf.telfhash`*:: -+ --- -telfhash symbol hash for ELF file. - -type: keyword - --- - -*`process.end`*:: -+ --- -The time the process ended. - -type: date - -example: 2016-05-23T08:05:34.853Z - --- - -*`process.entity_id`*:: -+ --- -Unique identifier for the process. -The implementation of this is specified by the data source, but some examples of what could be used here are a process-generated UUID, Sysmon Process GUIDs, or a hash of some uniquely identifying components of a process. -Constructing a globally unique identifier is a common practice to mitigate PID reuse as well as to identify a specific process over time, across multiple monitored hosts. - -type: keyword - -example: c2c455d9f99375d - --- - -*`process.executable`*:: -+ --- -Absolute path to the process executable. - -type: keyword - -example: /usr/bin/ssh - --- - -*`process.executable.text`*:: -+ --- -type: match_only_text - --- - -*`process.exit_code`*:: -+ --- -The exit code of the process, if this is a termination event. -The field should be absent if there is no exit code for the event (e.g. process start). - -type: long - -example: 137 - --- - -*`process.hash.md5`*:: -+ --- -MD5 hash. - -type: keyword - --- - -*`process.hash.sha1`*:: -+ --- -SHA1 hash. - -type: keyword - --- - -*`process.hash.sha256`*:: -+ --- -SHA256 hash. - -type: keyword - --- - -*`process.hash.sha512`*:: -+ --- -SHA512 hash. - -type: keyword - --- - -*`process.hash.ssdeep`*:: -+ --- -SSDEEP hash. - -type: keyword - --- - -*`process.name`*:: -+ --- -Process name. -Sometimes called program name or similar. - -type: keyword - -example: ssh - --- - -*`process.name.text`*:: -+ --- -type: match_only_text - --- - -*`process.parent.args`*:: -+ --- -Array of process arguments, starting with the absolute path to the executable. -May be filtered to protect sensitive information. - -type: keyword - -example: ["/usr/bin/ssh", "-l", "user", "10.0.0.16"] - --- - -*`process.parent.args_count`*:: -+ --- -Length of the process.args array. -This field can be useful for querying or performing bucket analysis on how many arguments were provided to start a process. More arguments may be an indication of suspicious activity. - -type: long - -example: 4 - --- - -*`process.parent.code_signature.digest_algorithm`*:: -+ --- -The hashing algorithm used to sign the process. -This value can distinguish signatures when a file is signed multiple times by the same signer but with a different digest algorithm. - -type: keyword - -example: sha256 - --- - -*`process.parent.code_signature.exists`*:: -+ --- -Boolean to capture if a signature is present. - -type: boolean - -example: true - --- - -*`process.parent.code_signature.signing_id`*:: -+ --- -The identifier used to sign the process. -This is used to identify the application manufactured by a software vendor. The field is relevant to Apple *OS only. - -type: keyword - -example: com.apple.xpc.proxy - --- - -*`process.parent.code_signature.status`*:: -+ --- -Additional information about the certificate status. -This is useful for logging cryptographic errors with the certificate validity or trust status. Leave unpopulated if the validity or trust of the certificate was unchecked. - -type: keyword - -example: ERROR_UNTRUSTED_ROOT - --- - -*`process.parent.code_signature.subject_name`*:: -+ --- -Subject name of the code signer - -type: keyword - -example: Microsoft Corporation - --- - -*`process.parent.code_signature.team_id`*:: -+ --- -The team identifier used to sign the process. -This is used to identify the team or vendor of a software product. The field is relevant to Apple *OS only. - -type: keyword - -example: EQHXZ8M8AV - --- - -*`process.parent.code_signature.timestamp`*:: -+ --- -Date and time when the code signature was generated and signed. - -type: date - -example: 2021-01-01T12:10:30Z - --- - -*`process.parent.code_signature.trusted`*:: -+ --- -Stores the trust status of the certificate chain. -Validating the trust of the certificate chain may be complicated, and this field should only be populated by tools that actively check the status. - -type: boolean - -example: true - --- - -*`process.parent.code_signature.valid`*:: -+ --- -Boolean to capture if the digital signature is verified against the binary content. -Leave unpopulated if a certificate was unchecked. - -type: boolean - -example: true - --- - -*`process.parent.command_line`*:: -+ --- -Full command line that started the process, including the absolute path to the executable, and all arguments. -Some arguments may be filtered to protect sensitive information. - -type: wildcard - -example: /usr/bin/ssh -l user 10.0.0.16 - --- - -*`process.parent.command_line.text`*:: -+ --- -type: match_only_text - --- - -*`process.parent.elf.architecture`*:: -+ --- -Machine architecture of the ELF file. - -type: keyword - -example: x86-64 - --- - -*`process.parent.elf.byte_order`*:: -+ --- -Byte sequence of ELF file. - -type: keyword - -example: Little Endian - --- - -*`process.parent.elf.cpu_type`*:: -+ --- -CPU type of the ELF file. - -type: keyword - -example: Intel - --- - -*`process.parent.elf.creation_date`*:: -+ --- -Extracted when possible from the file's metadata. Indicates when it was built or compiled. It can also be faked by malware creators. - -type: date - --- - -*`process.parent.elf.exports`*:: -+ --- -List of exported element names and types. - -type: flattened - --- - -*`process.parent.elf.header.abi_version`*:: -+ --- -Version of the ELF Application Binary Interface (ABI). - -type: keyword - --- - -*`process.parent.elf.header.class`*:: -+ --- -Header class of the ELF file. - -type: keyword - --- - -*`process.parent.elf.header.data`*:: -+ --- -Data table of the ELF header. - -type: keyword - --- - -*`process.parent.elf.header.entrypoint`*:: -+ --- -Header entrypoint of the ELF file. - -type: long - -format: string - --- - -*`process.parent.elf.header.object_version`*:: -+ --- -"0x1" for original ELF files. - -type: keyword - --- - -*`process.parent.elf.header.os_abi`*:: -+ --- -Application Binary Interface (ABI) of the Linux OS. - -type: keyword - --- - -*`process.parent.elf.header.type`*:: -+ --- -Header type of the ELF file. - -type: keyword - --- - -*`process.parent.elf.header.version`*:: -+ --- -Version of the ELF header. - -type: keyword - --- - -*`process.parent.elf.imports`*:: -+ --- -List of imported element names and types. - -type: flattened - --- - -*`process.parent.elf.sections`*:: -+ --- -An array containing an object for each section of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.sections.*`. - -type: nested - --- - -*`process.parent.elf.sections.chi2`*:: -+ --- -Chi-square probability distribution of the section. - -type: long - -format: number - --- - -*`process.parent.elf.sections.entropy`*:: -+ --- -Shannon entropy calculation from the section. - -type: long - -format: number - --- - -*`process.parent.elf.sections.flags`*:: -+ --- -ELF Section List flags. - -type: keyword - --- - -*`process.parent.elf.sections.name`*:: -+ --- -ELF Section List name. - -type: keyword - --- - -*`process.parent.elf.sections.physical_offset`*:: -+ --- -ELF Section List offset. - -type: keyword - --- - -*`process.parent.elf.sections.physical_size`*:: -+ --- -ELF Section List physical size. - -type: long - -format: bytes - --- - -*`process.parent.elf.sections.type`*:: -+ --- -ELF Section List type. - -type: keyword - --- - -*`process.parent.elf.sections.virtual_address`*:: -+ --- -ELF Section List virtual address. - -type: long - -format: string - --- - -*`process.parent.elf.sections.virtual_size`*:: -+ --- -ELF Section List virtual size. - -type: long - -format: string - --- - -*`process.parent.elf.segments`*:: -+ --- -An array containing an object for each segment of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.segments.*`. - -type: nested - --- - -*`process.parent.elf.segments.sections`*:: -+ --- -ELF object segment sections. - -type: keyword - --- - -*`process.parent.elf.segments.type`*:: -+ --- -ELF object segment type. - -type: keyword - --- - -*`process.parent.elf.shared_libraries`*:: -+ --- -List of shared libraries used by this ELF object. - -type: keyword - --- - -*`process.parent.elf.telfhash`*:: -+ --- -telfhash symbol hash for ELF file. - -type: keyword - --- - -*`process.parent.end`*:: -+ --- -The time the process ended. - -type: date - -example: 2016-05-23T08:05:34.853Z - --- - -*`process.parent.entity_id`*:: -+ --- -Unique identifier for the process. -The implementation of this is specified by the data source, but some examples of what could be used here are a process-generated UUID, Sysmon Process GUIDs, or a hash of some uniquely identifying components of a process. -Constructing a globally unique identifier is a common practice to mitigate PID reuse as well as to identify a specific process over time, across multiple monitored hosts. - -type: keyword - -example: c2c455d9f99375d - --- - -*`process.parent.executable`*:: -+ --- -Absolute path to the process executable. - -type: keyword - -example: /usr/bin/ssh - --- - -*`process.parent.executable.text`*:: -+ --- -type: match_only_text - --- - -*`process.parent.exit_code`*:: -+ --- -The exit code of the process, if this is a termination event. -The field should be absent if there is no exit code for the event (e.g. process start). - -type: long - -example: 137 - --- - -*`process.parent.hash.md5`*:: -+ --- -MD5 hash. - -type: keyword - --- - -*`process.parent.hash.sha1`*:: -+ --- -SHA1 hash. - -type: keyword - --- - -*`process.parent.hash.sha256`*:: -+ --- -SHA256 hash. - -type: keyword - --- - -*`process.parent.hash.sha512`*:: -+ --- -SHA512 hash. - -type: keyword - --- - -*`process.parent.hash.ssdeep`*:: -+ --- -SSDEEP hash. - -type: keyword - --- - -*`process.parent.name`*:: -+ --- -Process name. -Sometimes called program name or similar. - -type: keyword - -example: ssh - --- - -*`process.parent.name.text`*:: -+ --- -type: match_only_text - --- - -*`process.parent.pe.architecture`*:: -+ --- -CPU architecture target for the file. - -type: keyword - -example: x64 - --- - -*`process.parent.pe.company`*:: -+ --- -Internal company name of the file, provided at compile-time. - -type: keyword - -example: Microsoft Corporation - --- - -*`process.parent.pe.description`*:: -+ --- -Internal description of the file, provided at compile-time. - -type: keyword - -example: Paint - --- - -*`process.parent.pe.file_version`*:: -+ --- -Internal version of the file, provided at compile-time. - -type: keyword - -example: 6.3.9600.17415 - --- - -*`process.parent.pe.imphash`*:: -+ --- -A hash of the imports in a PE file. An imphash -- or import hash -- can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. -Learn more at https://www.fireeye.com/blog/threat-research/2014/01/tracking-malware-import-hashing.html. - -type: keyword - -example: 0c6803c4e922103c4dca5963aad36ddf - --- - -*`process.parent.pe.original_file_name`*:: -+ --- -Internal name of the file, provided at compile-time. - -type: keyword - -example: MSPAINT.EXE - --- - -*`process.parent.pe.product`*:: -+ --- -Internal product name of the file, provided at compile-time. - -type: keyword - -example: Microsoft® Windows® Operating System - --- - -*`process.parent.pgid`*:: -+ --- -Identifier of the group of processes the process belongs to. - -type: long - -format: string - --- - -*`process.parent.pid`*:: -+ --- -Process id. - -type: long - -example: 4242 - -format: string - --- - -*`process.parent.start`*:: -+ --- -The time the process started. - -type: date - -example: 2016-05-23T08:05:34.853Z - --- - -*`process.parent.thread.id`*:: -+ --- -Thread ID. - -type: long - -example: 4242 - -format: string - --- - -*`process.parent.thread.name`*:: -+ --- -Thread name. - -type: keyword - -example: thread-0 - --- - -*`process.parent.title`*:: -+ --- -Process title. -The proctitle, some times the same as process name. Can also be different: for example a browser setting its title to the web page currently opened. - -type: keyword - --- - -*`process.parent.title.text`*:: -+ --- -type: match_only_text - --- - -*`process.parent.uptime`*:: -+ --- -Seconds the process has been up. - -type: long - -example: 1325 - --- - -*`process.parent.working_directory`*:: -+ --- -The working directory of the process. - -type: keyword - -example: /home/alice - --- - -*`process.parent.working_directory.text`*:: -+ --- -type: match_only_text - --- - -*`process.pe.architecture`*:: -+ --- -CPU architecture target for the file. - -type: keyword - -example: x64 - --- - -*`process.pe.company`*:: -+ --- -Internal company name of the file, provided at compile-time. - -type: keyword - -example: Microsoft Corporation - --- - -*`process.pe.description`*:: -+ --- -Internal description of the file, provided at compile-time. - -type: keyword - -example: Paint - --- - -*`process.pe.file_version`*:: -+ --- -Internal version of the file, provided at compile-time. - -type: keyword - -example: 6.3.9600.17415 - --- - -*`process.pe.imphash`*:: -+ --- -A hash of the imports in a PE file. An imphash -- or import hash -- can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. -Learn more at https://www.fireeye.com/blog/threat-research/2014/01/tracking-malware-import-hashing.html. - -type: keyword - -example: 0c6803c4e922103c4dca5963aad36ddf - --- - -*`process.pe.original_file_name`*:: -+ --- -Internal name of the file, provided at compile-time. - -type: keyword - -example: MSPAINT.EXE - --- - -*`process.pe.product`*:: -+ --- -Internal product name of the file, provided at compile-time. - -type: keyword - -example: Microsoft® Windows® Operating System - --- - -*`process.pgid`*:: -+ --- -Identifier of the group of processes the process belongs to. - -type: long - -format: string - --- - -*`process.pid`*:: -+ --- -Process id. - -type: long - -example: 4242 - -format: string - --- - -*`process.start`*:: -+ --- -The time the process started. - -type: date - -example: 2016-05-23T08:05:34.853Z - --- - -*`process.thread.id`*:: -+ --- -Thread ID. - -type: long - -example: 4242 - -format: string - --- - -*`process.thread.name`*:: -+ --- -Thread name. - -type: keyword - -example: thread-0 - --- - -*`process.title`*:: -+ --- -Process title. -The proctitle, some times the same as process name. Can also be different: for example a browser setting its title to the web page currently opened. - -type: keyword - --- - -*`process.title.text`*:: -+ --- -type: match_only_text - --- - -*`process.uptime`*:: -+ --- -Seconds the process has been up. - -type: long - -example: 1325 - --- - -*`process.working_directory`*:: -+ --- -The working directory of the process. - -type: keyword - -example: /home/alice - --- - -*`process.working_directory.text`*:: -+ --- -type: match_only_text - --- - -[float] -=== registry - -Fields related to Windows Registry operations. - - -*`registry.data.bytes`*:: -+ --- -Original bytes written with base64 encoding. -For Windows registry operations, such as SetValueEx and RegQueryValueEx, this corresponds to the data pointed by `lp_data`. This is optional but provides better recoverability and should be populated for REG_BINARY encoded values. - -type: keyword - -example: ZQBuAC0AVQBTAAAAZQBuAAAAAAA= - --- - -*`registry.data.strings`*:: -+ --- -Content when writing string types. -Populated as an array when writing string data to the registry. For single string registry types (REG_SZ, REG_EXPAND_SZ), this should be an array with one string. For sequences of string with REG_MULTI_SZ, this array will be variable length. For numeric data, such as REG_DWORD and REG_QWORD, this should be populated with the decimal representation (e.g `"1"`). - -type: wildcard - -example: ["C:\rta\red_ttp\bin\myapp.exe"] - --- - -*`registry.data.type`*:: -+ --- -Standard registry type for encoding contents - -type: keyword - -example: REG_SZ - --- - -*`registry.hive`*:: -+ --- -Abbreviated name for the hive. - -type: keyword - -example: HKLM - --- - -*`registry.key`*:: -+ --- -Hive-relative path of keys. - -type: keyword - -example: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe - --- - -*`registry.path`*:: -+ --- -Full path, including hive, key and value - -type: keyword - -example: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe\Debugger - --- - -*`registry.value`*:: -+ --- -Name of the value written. - -type: keyword - -example: Debugger - --- - -[float] -=== related - -This field set is meant to facilitate pivoting around a piece of data. -Some pieces of information can be seen in many places in an ECS event. To facilitate searching for them, store an array of all seen values to their corresponding field in `related.`. -A concrete example is IP addresses, which can be under host, observer, source, destination, client, server, and network.forwarded_ip. If you append all IPs to `related.ip`, you can then search for a given IP trivially, no matter where it appeared, by querying `related.ip:192.0.2.15`. - - -*`related.hash`*:: -+ --- -All the hashes seen on your event. Populating this field, then using it to search for hashes can help in situations where you're unsure what the hash algorithm is (and therefore which key name to search). - -type: keyword - --- - -*`related.hosts`*:: -+ --- -All hostnames or other host identifiers seen on your event. Example identifiers include FQDNs, domain names, workstation names, or aliases. - -type: keyword - --- - -*`related.ip`*:: -+ --- -All of the IPs seen on your event. - -type: ip - --- - -*`related.user`*:: -+ --- -All the user names or other user identifiers seen on the event. - -type: keyword - --- - -[float] -=== rule - -Rule fields are used to capture the specifics of any observer or agent rules that generate alerts or other notable events. -Examples of data sources that would populate the rule fields include: network admission control platforms, network or host IDS/IPS, network firewalls, web application firewalls, url filters, endpoint detection and response (EDR) systems, etc. - - -*`rule.author`*:: -+ --- -Name, organization, or pseudonym of the author or authors who created the rule used to generate this event. - -type: keyword - -example: ["Star-Lord"] - --- - -*`rule.category`*:: -+ --- -A categorization value keyword used by the entity using the rule for detection of this event. - -type: keyword - -example: Attempted Information Leak - --- - -*`rule.description`*:: -+ --- -The description of the rule generating the event. - -type: keyword - -example: Block requests to public DNS over HTTPS / TLS protocols - --- - -*`rule.id`*:: -+ --- -A rule ID that is unique within the scope of an agent, observer, or other entity using the rule for detection of this event. - -type: keyword - -example: 101 - --- - -*`rule.license`*:: -+ --- -Name of the license under which the rule used to generate this event is made available. - -type: keyword - -example: Apache 2.0 - --- - -*`rule.name`*:: -+ --- -The name of the rule or signature generating the event. - -type: keyword - -example: BLOCK_DNS_over_TLS - --- - -*`rule.reference`*:: -+ --- -Reference URL to additional information about the rule used to generate this event. -The URL can point to the vendor's documentation about the rule. If that's not available, it can also be a link to a more general page describing this type of alert. - -type: keyword - -example: https://en.wikipedia.org/wiki/DNS_over_TLS - --- - -*`rule.ruleset`*:: -+ --- -Name of the ruleset, policy, group, or parent category in which the rule used to generate this event is a member. - -type: keyword - -example: Standard_Protocol_Filters - --- - -*`rule.uuid`*:: -+ --- -A rule ID that is unique within the scope of a set or group of agents, observers, or other entities using the rule for detection of this event. - -type: keyword - -example: 1100110011 - --- - -*`rule.version`*:: -+ --- -The version / revision of the rule being used for analysis. - -type: keyword - -example: 1.1 - --- - -[float] -=== server - -A Server is defined as the responder in a network connection for events regarding sessions, connections, or bidirectional flow records. -For TCP events, the server is the receiver of the initial SYN packet(s) of the TCP connection. For other protocols, the server is generally the responder in the network transaction. Some systems actually use the term "responder" to refer the server in TCP connections. The server fields describe details about the system acting as the server in the network event. Server fields are usually populated in conjunction with client fields. Server fields are generally not populated for packet-level events. -Client / server representations can add semantic context to an exchange, which is helpful to visualize the data in certain situations. If your context falls in that category, you should still ensure that source and destination are filled appropriately. - - -*`server.address`*:: -+ --- -Some event server addresses are defined ambiguously. The event will sometimes list an IP, a domain or a unix socket. You should always store the raw address in the `.address` field. -Then it should be duplicated to `.ip` or `.domain`, depending on which one it is. - -type: keyword - --- - -*`server.as.number`*:: -+ --- -Unique number allocated to the autonomous system. The autonomous system number (ASN) uniquely identifies each network on the Internet. - -type: long - -example: 15169 - --- - -*`server.as.organization.name`*:: -+ --- -Organization name. - -type: keyword - -example: Google LLC - --- - -*`server.as.organization.name.text`*:: -+ --- -type: match_only_text - --- - -*`server.bytes`*:: -+ --- -Bytes sent from the server to the client. - -type: long - -example: 184 - -format: bytes - --- - -*`server.domain`*:: -+ --- -Server domain. - -type: keyword - --- - -*`server.geo.city_name`*:: -+ --- -City name. - -type: keyword - -example: Montreal - --- - -*`server.geo.continent_code`*:: -+ --- -Two-letter code representing continent's name. - -type: keyword - -example: NA - --- - -*`server.geo.continent_name`*:: -+ --- -Name of the continent. - -type: keyword - -example: North America - --- - -*`server.geo.country_iso_code`*:: -+ --- -Country ISO code. - -type: keyword - -example: CA - --- - -*`server.geo.country_name`*:: -+ --- -Country name. - -type: keyword - -example: Canada - --- - -*`server.geo.location`*:: -+ --- -Longitude and latitude. - -type: geo_point - -example: { "lon": -73.614830, "lat": 45.505918 } - --- - -*`server.geo.name`*:: -+ --- -User-defined description of a location, at the level of granularity they care about. -Could be the name of their data centers, the floor number, if this describes a local physical entity, city names. -Not typically used in automated geolocation. - -type: keyword - -example: boston-dc - --- - -*`server.geo.postal_code`*:: -+ --- -Postal code associated with the location. -Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. - -type: keyword - -example: 94040 - --- - -*`server.geo.region_iso_code`*:: -+ --- -Region ISO code. - -type: keyword - -example: CA-QC - --- - -*`server.geo.region_name`*:: -+ --- -Region name. - -type: keyword - -example: Quebec - --- - -*`server.geo.timezone`*:: -+ --- -The time zone of the location, such as IANA time zone name. - -type: keyword - -example: America/Argentina/Buenos_Aires - --- - -*`server.ip`*:: -+ --- -IP address of the server (IPv4 or IPv6). - -type: ip - --- - -*`server.mac`*:: -+ --- -MAC address of the server. -The notation format from RFC 7042 is suggested: Each octet (that is, 8-bit byte) is represented by two [uppercase] hexadecimal digits giving the value of the octet as an unsigned integer. Successive octets are separated by a hyphen. - -type: keyword - -example: 00-00-5E-00-53-23 - --- - -*`server.nat.ip`*:: -+ --- -Translated ip of destination based NAT sessions (e.g. internet to private DMZ) -Typically used with load balancers, firewalls, or routers. - -type: ip - --- - -*`server.nat.port`*:: -+ --- -Translated port of destination based NAT sessions (e.g. internet to private DMZ) -Typically used with load balancers, firewalls, or routers. - -type: long - -format: string - --- - -*`server.packets`*:: -+ --- -Packets sent from the server to the client. - -type: long - -example: 12 - --- - -*`server.port`*:: -+ --- -Port of the server. - -type: long - -format: string - --- - -*`server.registered_domain`*:: -+ --- -The highest registered server domain, stripped of the subdomain. -For example, the registered domain for "foo.example.com" is "example.com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last two labels will not work well for TLDs such as "co.uk". - -type: keyword - -example: example.com - --- - -*`server.subdomain`*:: -+ --- -The subdomain portion of a fully qualified domain name includes all of the names except the host name under the registered_domain. In a partially qualified domain, or if the the qualification level of the full name cannot be determined, subdomain contains all of the names below the registered domain. -For example the subdomain portion of "www.east.mydomain.co.uk" is "east". If the domain has multiple levels of subdomain, such as "sub2.sub1.example.com", the subdomain field should contain "sub2.sub1", with no trailing period. - -type: keyword - -example: east - --- - -*`server.top_level_domain`*:: -+ --- -The effective top level domain (eTLD), also known as the domain suffix, is the last part of the domain name. For example, the top level domain for example.com is "com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last label will not work well for effective TLDs such as "co.uk". - -type: keyword - -example: co.uk - --- - -*`server.user.domain`*:: -+ --- -Name of the directory the user is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`server.user.email`*:: -+ --- -User email address. - -type: keyword - --- - -*`server.user.full_name`*:: -+ --- -User's full name, if available. - -type: keyword - -example: Albert Einstein - --- - -*`server.user.full_name.text`*:: -+ --- -type: match_only_text - --- - -*`server.user.group.domain`*:: -+ --- -Name of the directory the group is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`server.user.group.id`*:: -+ --- -Unique identifier for the group on the system/platform. - -type: keyword - --- - -*`server.user.group.name`*:: -+ --- -Name of the group. - -type: keyword - --- - -*`server.user.hash`*:: -+ --- -Unique user hash to correlate information for a user in anonymized form. -Useful if `user.id` or `user.name` contain confidential information and cannot be used. - -type: keyword - --- - -*`server.user.id`*:: -+ --- -Unique identifier of the user. - -type: keyword - -example: S-1-5-21-202424912787-2692429404-2351956786-1000 - --- - -*`server.user.name`*:: -+ --- -Short name or login of the user. - -type: keyword - -example: a.einstein - --- - -*`server.user.name.text`*:: -+ --- -type: match_only_text - --- - -*`server.user.roles`*:: -+ --- -Array of user roles at the time of the event. - -type: keyword - -example: ["kibana_admin", "reporting_user"] - --- - -[float] -=== service - -The service fields describe the service for or from which the data was collected. -These fields help you find and correlate logs for a specific service and version. - - -*`service.address`*:: -+ --- -Address where data about this service was collected from. -This should be a URI, network address (ipv4:port or [ipv6]:port) or a resource path (sockets). - -type: keyword - -example: 172.26.0.2:5432 - --- - -*`service.environment`*:: -+ --- -Identifies the environment where the service is running. -If the same service runs in different environments (production, staging, QA, development, etc.), the environment can identify other instances of the same service. Can also group services and applications from the same environment. - -type: keyword - -example: production - --- - -*`service.ephemeral_id`*:: -+ --- -Ephemeral identifier of this service (if one exists). -This id normally changes across restarts, but `service.id` does not. - -type: keyword - -example: 8a4f500f - --- - -*`service.id`*:: -+ --- -Unique identifier of the running service. If the service is comprised of many nodes, the `service.id` should be the same for all nodes. -This id should uniquely identify the service. This makes it possible to correlate logs and metrics for one specific service, no matter which particular node emitted the event. -Note that if you need to see the events from one specific host of the service, you should filter on that `host.name` or `host.id` instead. - -type: keyword - -example: d37e5ebfe0ae6c4972dbe9f0174a1637bb8247f6 - --- - -*`service.name`*:: -+ --- -Name of the service data is collected from. -The name of the service is normally user given. This allows for distributed services that run on multiple hosts to correlate the related instances based on the name. -In the case of Elasticsearch the `service.name` could contain the cluster name. For Beats the `service.name` is by default a copy of the `service.type` field if no name is specified. - -type: keyword - -example: elasticsearch-metrics - --- - -*`service.node.name`*:: -+ --- -Name of a service node. -This allows for two nodes of the same service running on the same host to be differentiated. Therefore, `service.node.name` should typically be unique across nodes of a given service. -In the case of Elasticsearch, the `service.node.name` could contain the unique node name within the Elasticsearch cluster. In cases where the service doesn't have the concept of a node name, the host name or container name can be used to distinguish running instances that make up this service. If those do not provide uniqueness (e.g. multiple instances of the service running on the same host) - the node name can be manually set. - -type: keyword - -example: instance-0000000016 - --- - -*`service.origin.address`*:: -+ --- -Address where data about this service was collected from. -This should be a URI, network address (ipv4:port or [ipv6]:port) or a resource path (sockets). - -type: keyword - -example: 172.26.0.2:5432 - --- - -*`service.origin.environment`*:: -+ --- -Identifies the environment where the service is running. -If the same service runs in different environments (production, staging, QA, development, etc.), the environment can identify other instances of the same service. Can also group services and applications from the same environment. - -type: keyword - -example: production - --- - -*`service.origin.ephemeral_id`*:: -+ --- -Ephemeral identifier of this service (if one exists). -This id normally changes across restarts, but `service.id` does not. - -type: keyword - -example: 8a4f500f - --- - -*`service.origin.id`*:: -+ --- -Unique identifier of the running service. If the service is comprised of many nodes, the `service.id` should be the same for all nodes. -This id should uniquely identify the service. This makes it possible to correlate logs and metrics for one specific service, no matter which particular node emitted the event. -Note that if you need to see the events from one specific host of the service, you should filter on that `host.name` or `host.id` instead. - -type: keyword - -example: d37e5ebfe0ae6c4972dbe9f0174a1637bb8247f6 - --- - -*`service.origin.name`*:: -+ --- -Name of the service data is collected from. -The name of the service is normally user given. This allows for distributed services that run on multiple hosts to correlate the related instances based on the name. -In the case of Elasticsearch the `service.name` could contain the cluster name. For Beats the `service.name` is by default a copy of the `service.type` field if no name is specified. - -type: keyword - -example: elasticsearch-metrics - --- - -*`service.origin.node.name`*:: -+ --- -Name of a service node. -This allows for two nodes of the same service running on the same host to be differentiated. Therefore, `service.node.name` should typically be unique across nodes of a given service. -In the case of Elasticsearch, the `service.node.name` could contain the unique node name within the Elasticsearch cluster. In cases where the service doesn't have the concept of a node name, the host name or container name can be used to distinguish running instances that make up this service. If those do not provide uniqueness (e.g. multiple instances of the service running on the same host) - the node name can be manually set. - -type: keyword - -example: instance-0000000016 - --- - -*`service.origin.state`*:: -+ --- -Current state of the service. - -type: keyword - --- - -*`service.origin.type`*:: -+ --- -The type of the service data is collected from. -The type can be used to group and correlate logs and metrics from one service type. -Example: If logs or metrics are collected from Elasticsearch, `service.type` would be `elasticsearch`. - -type: keyword - -example: elasticsearch - --- - -*`service.origin.version`*:: -+ --- -Version of the service the data was collected from. -This allows to look at a data set only for a specific version of a service. - -type: keyword - -example: 3.2.4 - --- - -*`service.state`*:: -+ --- -Current state of the service. - -type: keyword - --- - -*`service.target.address`*:: -+ --- -Address where data about this service was collected from. -This should be a URI, network address (ipv4:port or [ipv6]:port) or a resource path (sockets). - -type: keyword - -example: 172.26.0.2:5432 - --- - -*`service.target.environment`*:: -+ --- -Identifies the environment where the service is running. -If the same service runs in different environments (production, staging, QA, development, etc.), the environment can identify other instances of the same service. Can also group services and applications from the same environment. - -type: keyword - -example: production - --- - -*`service.target.ephemeral_id`*:: -+ --- -Ephemeral identifier of this service (if one exists). -This id normally changes across restarts, but `service.id` does not. - -type: keyword - -example: 8a4f500f - --- - -*`service.target.id`*:: -+ --- -Unique identifier of the running service. If the service is comprised of many nodes, the `service.id` should be the same for all nodes. -This id should uniquely identify the service. This makes it possible to correlate logs and metrics for one specific service, no matter which particular node emitted the event. -Note that if you need to see the events from one specific host of the service, you should filter on that `host.name` or `host.id` instead. - -type: keyword - -example: d37e5ebfe0ae6c4972dbe9f0174a1637bb8247f6 - --- - -*`service.target.name`*:: -+ --- -Name of the service data is collected from. -The name of the service is normally user given. This allows for distributed services that run on multiple hosts to correlate the related instances based on the name. -In the case of Elasticsearch the `service.name` could contain the cluster name. For Beats the `service.name` is by default a copy of the `service.type` field if no name is specified. - -type: keyword - -example: elasticsearch-metrics - --- - -*`service.target.node.name`*:: -+ --- -Name of a service node. -This allows for two nodes of the same service running on the same host to be differentiated. Therefore, `service.node.name` should typically be unique across nodes of a given service. -In the case of Elasticsearch, the `service.node.name` could contain the unique node name within the Elasticsearch cluster. In cases where the service doesn't have the concept of a node name, the host name or container name can be used to distinguish running instances that make up this service. If those do not provide uniqueness (e.g. multiple instances of the service running on the same host) - the node name can be manually set. - -type: keyword - -example: instance-0000000016 - --- - -*`service.target.state`*:: -+ --- -Current state of the service. - -type: keyword - --- - -*`service.target.type`*:: -+ --- -The type of the service data is collected from. -The type can be used to group and correlate logs and metrics from one service type. -Example: If logs or metrics are collected from Elasticsearch, `service.type` would be `elasticsearch`. - -type: keyword - -example: elasticsearch - --- - -*`service.target.version`*:: -+ --- -Version of the service the data was collected from. -This allows to look at a data set only for a specific version of a service. - -type: keyword - -example: 3.2.4 - --- - -*`service.type`*:: -+ --- -The type of the service data is collected from. -The type can be used to group and correlate logs and metrics from one service type. -Example: If logs or metrics are collected from Elasticsearch, `service.type` would be `elasticsearch`. - -type: keyword - -example: elasticsearch - --- - -*`service.version`*:: -+ --- -Version of the service the data was collected from. -This allows to look at a data set only for a specific version of a service. - -type: keyword - -example: 3.2.4 - --- - -[float] -=== source - -Source fields capture details about the sender of a network exchange/packet. These fields are populated from a network event, packet, or other event containing details of a network transaction. -Source fields are usually populated in conjunction with destination fields. The source and destination fields are considered the baseline and should always be filled if an event contains source and destination details from a network transaction. If the event also contains identification of the client and server roles, then the client and server fields should also be populated. - - -*`source.address`*:: -+ --- -Some event source addresses are defined ambiguously. The event will sometimes list an IP, a domain or a unix socket. You should always store the raw address in the `.address` field. -Then it should be duplicated to `.ip` or `.domain`, depending on which one it is. - -type: keyword - --- - -*`source.as.number`*:: -+ --- -Unique number allocated to the autonomous system. The autonomous system number (ASN) uniquely identifies each network on the Internet. - -type: long - -example: 15169 - --- - -*`source.as.organization.name`*:: -+ --- -Organization name. - -type: keyword - -example: Google LLC - --- - -*`source.as.organization.name.text`*:: -+ --- -type: match_only_text - --- - -*`source.bytes`*:: -+ --- -Bytes sent from the source to the destination. - -type: long - -example: 184 - -format: bytes - --- - -*`source.domain`*:: -+ --- -Source domain. - -type: keyword - --- - -*`source.geo.city_name`*:: -+ --- -City name. - -type: keyword - -example: Montreal - --- - -*`source.geo.continent_code`*:: -+ --- -Two-letter code representing continent's name. - -type: keyword - -example: NA - --- - -*`source.geo.continent_name`*:: -+ --- -Name of the continent. - -type: keyword - -example: North America - --- - -*`source.geo.country_iso_code`*:: -+ --- -Country ISO code. - -type: keyword - -example: CA - --- - -*`source.geo.country_name`*:: -+ --- -Country name. - -type: keyword - -example: Canada - --- - -*`source.geo.location`*:: -+ --- -Longitude and latitude. - -type: geo_point - -example: { "lon": -73.614830, "lat": 45.505918 } - --- - -*`source.geo.name`*:: -+ --- -User-defined description of a location, at the level of granularity they care about. -Could be the name of their data centers, the floor number, if this describes a local physical entity, city names. -Not typically used in automated geolocation. - -type: keyword - -example: boston-dc - --- - -*`source.geo.postal_code`*:: -+ --- -Postal code associated with the location. -Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. - -type: keyword - -example: 94040 - --- - -*`source.geo.region_iso_code`*:: -+ --- -Region ISO code. - -type: keyword - -example: CA-QC - --- - -*`source.geo.region_name`*:: -+ --- -Region name. - -type: keyword - -example: Quebec - --- - -*`source.geo.timezone`*:: -+ --- -The time zone of the location, such as IANA time zone name. - -type: keyword - -example: America/Argentina/Buenos_Aires - --- - -*`source.ip`*:: -+ --- -IP address of the source (IPv4 or IPv6). - -type: ip - --- - -*`source.mac`*:: -+ --- -MAC address of the source. -The notation format from RFC 7042 is suggested: Each octet (that is, 8-bit byte) is represented by two [uppercase] hexadecimal digits giving the value of the octet as an unsigned integer. Successive octets are separated by a hyphen. - -type: keyword - -example: 00-00-5E-00-53-23 - --- - -*`source.nat.ip`*:: -+ --- -Translated ip of source based NAT sessions (e.g. internal client to internet) -Typically connections traversing load balancers, firewalls, or routers. - -type: ip - --- - -*`source.nat.port`*:: -+ --- -Translated port of source based NAT sessions. (e.g. internal client to internet) -Typically used with load balancers, firewalls, or routers. - -type: long - -format: string - --- - -*`source.packets`*:: -+ --- -Packets sent from the source to the destination. - -type: long - -example: 12 - --- - -*`source.port`*:: -+ --- -Port of the source. - -type: long - -format: string - --- - -*`source.registered_domain`*:: -+ --- -The highest registered source domain, stripped of the subdomain. -For example, the registered domain for "foo.example.com" is "example.com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last two labels will not work well for TLDs such as "co.uk". - -type: keyword - -example: example.com - --- - -*`source.subdomain`*:: -+ --- -The subdomain portion of a fully qualified domain name includes all of the names except the host name under the registered_domain. In a partially qualified domain, or if the the qualification level of the full name cannot be determined, subdomain contains all of the names below the registered domain. -For example the subdomain portion of "www.east.mydomain.co.uk" is "east". If the domain has multiple levels of subdomain, such as "sub2.sub1.example.com", the subdomain field should contain "sub2.sub1", with no trailing period. - -type: keyword - -example: east - --- - -*`source.top_level_domain`*:: -+ --- -The effective top level domain (eTLD), also known as the domain suffix, is the last part of the domain name. For example, the top level domain for example.com is "com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last label will not work well for effective TLDs such as "co.uk". - -type: keyword - -example: co.uk - --- - -*`source.user.domain`*:: -+ --- -Name of the directory the user is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`source.user.email`*:: -+ --- -User email address. - -type: keyword - --- - -*`source.user.full_name`*:: -+ --- -User's full name, if available. - -type: keyword - -example: Albert Einstein - --- - -*`source.user.full_name.text`*:: -+ --- -type: match_only_text - --- - -*`source.user.group.domain`*:: -+ --- -Name of the directory the group is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`source.user.group.id`*:: -+ --- -Unique identifier for the group on the system/platform. - -type: keyword - --- - -*`source.user.group.name`*:: -+ --- -Name of the group. - -type: keyword - --- - -*`source.user.hash`*:: -+ --- -Unique user hash to correlate information for a user in anonymized form. -Useful if `user.id` or `user.name` contain confidential information and cannot be used. - -type: keyword - --- - -*`source.user.id`*:: -+ --- -Unique identifier of the user. - -type: keyword - -example: S-1-5-21-202424912787-2692429404-2351956786-1000 - --- - -*`source.user.name`*:: -+ --- -Short name or login of the user. - -type: keyword - -example: a.einstein - --- - -*`source.user.name.text`*:: -+ --- -type: match_only_text - --- - -*`source.user.roles`*:: -+ --- -Array of user roles at the time of the event. - -type: keyword - -example: ["kibana_admin", "reporting_user"] - --- - -[float] -=== threat - -Fields to classify events and alerts according to a threat taxonomy such as the MITRE ATT&CK® framework. -These fields are for users to classify alerts from all of their sources (e.g. IDS, NGFW, etc.) within a common taxonomy. The threat.tactic.* fields are meant to capture the high level category of the threat (e.g. "impact"). The threat.technique.* fields are meant to capture which kind of approach is used by this detected threat, to accomplish the goal (e.g. "endpoint denial of service"). - - -*`threat.enrichments`*:: -+ --- -A list of associated indicators objects enriching the event, and the context of that association/enrichment. - -type: nested - --- - -*`threat.enrichments.indicator`*:: -+ --- -Object containing associated indicators enriching the event. - -type: object - --- - -*`threat.enrichments.indicator.as.number`*:: -+ --- -Unique number allocated to the autonomous system. The autonomous system number (ASN) uniquely identifies each network on the Internet. - -type: long - -example: 15169 - --- - -*`threat.enrichments.indicator.as.organization.name`*:: -+ --- -Organization name. - -type: keyword - -example: Google LLC - --- - -*`threat.enrichments.indicator.as.organization.name.text`*:: -+ --- -type: match_only_text - --- - -*`threat.enrichments.indicator.confidence`*:: -+ --- -Identifies the vendor-neutral confidence rating using the None/Low/Medium/High scale defined in Appendix A of the STIX 2.1 framework. Vendor-specific confidence scales may be added as custom fields. -Expected values are: - * Not Specified - * None - * Low - * Medium - * High - -type: keyword - -example: Medium - --- - -*`threat.enrichments.indicator.description`*:: -+ --- -Describes the type of action conducted by the threat. - -type: keyword - -example: IP x.x.x.x was observed delivering the Angler EK. - --- - -*`threat.enrichments.indicator.email.address`*:: -+ --- -Identifies a threat indicator as an email address (irrespective of direction). - -type: keyword - -example: phish@example.com - --- - -*`threat.enrichments.indicator.file.accessed`*:: -+ --- -Last time the file was accessed. -Note that not all filesystems keep track of access time. - -type: date - --- - -*`threat.enrichments.indicator.file.attributes`*:: -+ --- -Array of file attributes. -Attributes names will vary by platform. Here's a non-exhaustive list of values that are expected in this field: archive, compressed, directory, encrypted, execute, hidden, read, readonly, system, write. - -type: keyword - -example: ["readonly", "system"] - --- - -*`threat.enrichments.indicator.file.code_signature.digest_algorithm`*:: -+ --- -The hashing algorithm used to sign the process. -This value can distinguish signatures when a file is signed multiple times by the same signer but with a different digest algorithm. - -type: keyword - -example: sha256 - --- - -*`threat.enrichments.indicator.file.code_signature.exists`*:: -+ --- -Boolean to capture if a signature is present. - -type: boolean - -example: true - --- - -*`threat.enrichments.indicator.file.code_signature.signing_id`*:: -+ --- -The identifier used to sign the process. -This is used to identify the application manufactured by a software vendor. The field is relevant to Apple *OS only. - -type: keyword - -example: com.apple.xpc.proxy - --- - -*`threat.enrichments.indicator.file.code_signature.status`*:: -+ --- -Additional information about the certificate status. -This is useful for logging cryptographic errors with the certificate validity or trust status. Leave unpopulated if the validity or trust of the certificate was unchecked. - -type: keyword - -example: ERROR_UNTRUSTED_ROOT - --- - -*`threat.enrichments.indicator.file.code_signature.subject_name`*:: -+ --- -Subject name of the code signer - -type: keyword - -example: Microsoft Corporation - --- - -*`threat.enrichments.indicator.file.code_signature.team_id`*:: -+ --- -The team identifier used to sign the process. -This is used to identify the team or vendor of a software product. The field is relevant to Apple *OS only. - -type: keyword - -example: EQHXZ8M8AV - --- - -*`threat.enrichments.indicator.file.code_signature.timestamp`*:: -+ --- -Date and time when the code signature was generated and signed. - -type: date - -example: 2021-01-01T12:10:30Z - --- - -*`threat.enrichments.indicator.file.code_signature.trusted`*:: -+ --- -Stores the trust status of the certificate chain. -Validating the trust of the certificate chain may be complicated, and this field should only be populated by tools that actively check the status. - -type: boolean - -example: true - --- - -*`threat.enrichments.indicator.file.code_signature.valid`*:: -+ --- -Boolean to capture if the digital signature is verified against the binary content. -Leave unpopulated if a certificate was unchecked. - -type: boolean - -example: true - --- - -*`threat.enrichments.indicator.file.created`*:: -+ --- -File creation time. -Note that not all filesystems store the creation time. - -type: date - --- - -*`threat.enrichments.indicator.file.ctime`*:: -+ --- -Last time the file attributes or metadata changed. -Note that changes to the file content will update `mtime`. This implies `ctime` will be adjusted at the same time, since `mtime` is an attribute of the file. - -type: date - --- - -*`threat.enrichments.indicator.file.device`*:: -+ --- -Device that is the source of the file. - -type: keyword - -example: sda - --- - -*`threat.enrichments.indicator.file.directory`*:: -+ --- -Directory where the file is located. It should include the drive letter, when appropriate. - -type: keyword - -example: /home/alice - --- - -*`threat.enrichments.indicator.file.drive_letter`*:: -+ --- -Drive letter where the file is located. This field is only relevant on Windows. -The value should be uppercase, and not include the colon. - -type: keyword - -example: C - --- - -*`threat.enrichments.indicator.file.elf.architecture`*:: -+ --- -Machine architecture of the ELF file. - -type: keyword - -example: x86-64 - --- - -*`threat.enrichments.indicator.file.elf.byte_order`*:: -+ --- -Byte sequence of ELF file. - -type: keyword - -example: Little Endian - --- - -*`threat.enrichments.indicator.file.elf.cpu_type`*:: -+ --- -CPU type of the ELF file. - -type: keyword - -example: Intel - --- - -*`threat.enrichments.indicator.file.elf.creation_date`*:: -+ --- -Extracted when possible from the file's metadata. Indicates when it was built or compiled. It can also be faked by malware creators. - -type: date - --- - -*`threat.enrichments.indicator.file.elf.exports`*:: -+ --- -List of exported element names and types. - -type: flattened - --- - -*`threat.enrichments.indicator.file.elf.header.abi_version`*:: -+ --- -Version of the ELF Application Binary Interface (ABI). - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.header.class`*:: -+ --- -Header class of the ELF file. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.header.data`*:: -+ --- -Data table of the ELF header. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.header.entrypoint`*:: -+ --- -Header entrypoint of the ELF file. - -type: long - -format: string - --- - -*`threat.enrichments.indicator.file.elf.header.object_version`*:: -+ --- -"0x1" for original ELF files. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.header.os_abi`*:: -+ --- -Application Binary Interface (ABI) of the Linux OS. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.header.type`*:: -+ --- -Header type of the ELF file. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.header.version`*:: -+ --- -Version of the ELF header. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.imports`*:: -+ --- -List of imported element names and types. - -type: flattened - --- - -*`threat.enrichments.indicator.file.elf.sections`*:: -+ --- -An array containing an object for each section of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.sections.*`. - -type: nested - --- - -*`threat.enrichments.indicator.file.elf.sections.chi2`*:: -+ --- -Chi-square probability distribution of the section. - -type: long - -format: number - --- - -*`threat.enrichments.indicator.file.elf.sections.entropy`*:: -+ --- -Shannon entropy calculation from the section. - -type: long - -format: number - --- - -*`threat.enrichments.indicator.file.elf.sections.flags`*:: -+ --- -ELF Section List flags. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.sections.name`*:: -+ --- -ELF Section List name. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.sections.physical_offset`*:: -+ --- -ELF Section List offset. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.sections.physical_size`*:: -+ --- -ELF Section List physical size. - -type: long - -format: bytes - --- - -*`threat.enrichments.indicator.file.elf.sections.type`*:: -+ --- -ELF Section List type. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.sections.virtual_address`*:: -+ --- -ELF Section List virtual address. - -type: long - -format: string - --- - -*`threat.enrichments.indicator.file.elf.sections.virtual_size`*:: -+ --- -ELF Section List virtual size. - -type: long - -format: string - --- - -*`threat.enrichments.indicator.file.elf.segments`*:: -+ --- -An array containing an object for each segment of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.segments.*`. - -type: nested - --- - -*`threat.enrichments.indicator.file.elf.segments.sections`*:: -+ --- -ELF object segment sections. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.segments.type`*:: -+ --- -ELF object segment type. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.shared_libraries`*:: -+ --- -List of shared libraries used by this ELF object. - -type: keyword - --- - -*`threat.enrichments.indicator.file.elf.telfhash`*:: -+ --- -telfhash symbol hash for ELF file. - -type: keyword - --- - -*`threat.enrichments.indicator.file.extension`*:: -+ --- -File extension, excluding the leading dot. -Note that when the file name has multiple extensions (example.tar.gz), only the last one should be captured ("gz", not "tar.gz"). - -type: keyword - -example: png - --- - -*`threat.enrichments.indicator.file.fork_name`*:: -+ --- -A fork is additional data associated with a filesystem object. -On Linux, a resource fork is used to store additional data with a filesystem object. A file always has at least one fork for the data portion, and additional forks may exist. -On NTFS, this is analogous to an Alternate Data Stream (ADS), and the default data stream for a file is just called $DATA. Zone.Identifier is commonly used by Windows to track contents downloaded from the Internet. An ADS is typically of the form: `C:\path\to\filename.extension:some_fork_name`, and `some_fork_name` is the value that should populate `fork_name`. `filename.extension` should populate `file.name`, and `extension` should populate `file.extension`. The full path, `file.path`, will include the fork name. - -type: keyword - -example: Zone.Identifer - --- - -*`threat.enrichments.indicator.file.gid`*:: -+ --- -Primary group ID (GID) of the file. - -type: keyword - -example: 1001 - --- - -*`threat.enrichments.indicator.file.group`*:: -+ --- -Primary group name of the file. - -type: keyword - -example: alice - --- - -*`threat.enrichments.indicator.file.hash.md5`*:: -+ --- -MD5 hash. - -type: keyword - --- - -*`threat.enrichments.indicator.file.hash.sha1`*:: -+ --- -SHA1 hash. - -type: keyword - --- - -*`threat.enrichments.indicator.file.hash.sha256`*:: -+ --- -SHA256 hash. - -type: keyword - --- - -*`threat.enrichments.indicator.file.hash.sha512`*:: -+ --- -SHA512 hash. - -type: keyword - --- - -*`threat.enrichments.indicator.file.hash.ssdeep`*:: -+ --- -SSDEEP hash. - -type: keyword - --- - -*`threat.enrichments.indicator.file.inode`*:: -+ --- -Inode representing the file in the filesystem. - -type: keyword - -example: 256383 - --- - -*`threat.enrichments.indicator.file.mime_type`*:: -+ --- -MIME type should identify the format of the file or stream of bytes using https://www.iana.org/assignments/media-types/media-types.xhtml[IANA official types], where possible. When more than one type is applicable, the most specific type should be used. - -type: keyword - --- - -*`threat.enrichments.indicator.file.mode`*:: -+ --- -Mode of the file in octal representation. - -type: keyword - -example: 0640 - --- - -*`threat.enrichments.indicator.file.mtime`*:: -+ --- -Last time the file content was modified. - -type: date - --- - -*`threat.enrichments.indicator.file.name`*:: -+ --- -Name of the file including the extension, without the directory. - -type: keyword - -example: example.png - --- - -*`threat.enrichments.indicator.file.owner`*:: -+ --- -File owner's username. - -type: keyword - -example: alice - --- - -*`threat.enrichments.indicator.file.path`*:: -+ --- -Full path to the file, including the file name. It should include the drive letter, when appropriate. - -type: keyword - -example: /home/alice/example.png - --- - -*`threat.enrichments.indicator.file.path.text`*:: -+ --- -type: match_only_text - --- - -*`threat.enrichments.indicator.file.pe.architecture`*:: -+ --- -CPU architecture target for the file. - -type: keyword - -example: x64 - --- - -*`threat.enrichments.indicator.file.pe.company`*:: -+ --- -Internal company name of the file, provided at compile-time. - -type: keyword - -example: Microsoft Corporation - --- - -*`threat.enrichments.indicator.file.pe.description`*:: -+ --- -Internal description of the file, provided at compile-time. - -type: keyword - -example: Paint - --- - -*`threat.enrichments.indicator.file.pe.file_version`*:: -+ --- -Internal version of the file, provided at compile-time. - -type: keyword - -example: 6.3.9600.17415 - --- - -*`threat.enrichments.indicator.file.pe.imphash`*:: -+ --- -A hash of the imports in a PE file. An imphash -- or import hash -- can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. -Learn more at https://www.fireeye.com/blog/threat-research/2014/01/tracking-malware-import-hashing.html. - -type: keyword - -example: 0c6803c4e922103c4dca5963aad36ddf - --- - -*`threat.enrichments.indicator.file.pe.original_file_name`*:: -+ --- -Internal name of the file, provided at compile-time. - -type: keyword - -example: MSPAINT.EXE - --- - -*`threat.enrichments.indicator.file.pe.product`*:: -+ --- -Internal product name of the file, provided at compile-time. - -type: keyword - -example: Microsoft® Windows® Operating System - --- - -*`threat.enrichments.indicator.file.size`*:: -+ --- -File size in bytes. -Only relevant when `file.type` is "file". - -type: long - -example: 16384 - --- - -*`threat.enrichments.indicator.file.target_path`*:: -+ --- -Target path for symlinks. - -type: keyword - --- - -*`threat.enrichments.indicator.file.target_path.text`*:: -+ --- -type: match_only_text - --- - -*`threat.enrichments.indicator.file.type`*:: -+ --- -File type (file, dir, or symlink). - -type: keyword - -example: file - --- - -*`threat.enrichments.indicator.file.uid`*:: -+ --- -The user ID (UID) or security identifier (SID) of the file owner. - -type: keyword - -example: 1001 - --- - -*`threat.enrichments.indicator.file.x509.alternative_names`*:: -+ --- -List of subject alternative names (SAN). Name types vary by certificate authority and certificate type but commonly contain IP addresses, DNS names (and wildcards), and email addresses. - -type: keyword - -example: *.elastic.co - --- - -*`threat.enrichments.indicator.file.x509.issuer.common_name`*:: -+ --- -List of common name (CN) of issuing certificate authority. - -type: keyword - -example: Example SHA2 High Assurance Server CA - --- - -*`threat.enrichments.indicator.file.x509.issuer.country`*:: -+ --- -List of country (C) codes - -type: keyword - -example: US - --- - -*`threat.enrichments.indicator.file.x509.issuer.distinguished_name`*:: -+ --- -Distinguished name (DN) of issuing certificate authority. - -type: keyword - -example: C=US, O=Example Inc, OU=www.example.com, CN=Example SHA2 High Assurance Server CA - --- - -*`threat.enrichments.indicator.file.x509.issuer.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: Mountain View - --- - -*`threat.enrichments.indicator.file.x509.issuer.organization`*:: -+ --- -List of organizations (O) of issuing certificate authority. - -type: keyword - -example: Example Inc - --- - -*`threat.enrichments.indicator.file.x509.issuer.organizational_unit`*:: -+ --- -List of organizational units (OU) of issuing certificate authority. - -type: keyword - -example: www.example.com - --- - -*`threat.enrichments.indicator.file.x509.issuer.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`threat.enrichments.indicator.file.x509.not_after`*:: -+ --- -Time at which the certificate is no longer considered valid. - -type: date - -example: 2020-07-16 03:15:39+00:00 - --- - -*`threat.enrichments.indicator.file.x509.not_before`*:: -+ --- -Time at which the certificate is first considered valid. - -type: date - -example: 2019-08-16 01:40:25+00:00 - --- - -*`threat.enrichments.indicator.file.x509.public_key_algorithm`*:: -+ --- -Algorithm used to generate the public key. - -type: keyword - -example: RSA - --- - -*`threat.enrichments.indicator.file.x509.public_key_curve`*:: -+ --- -The curve used by the elliptic curve public key algorithm. This is algorithm specific. - -type: keyword - -example: nistp521 - --- - -*`threat.enrichments.indicator.file.x509.public_key_exponent`*:: -+ --- -Exponent used to derive the public key. This is algorithm specific. - -type: long - -example: 65537 - -Field is not indexed. - --- - -*`threat.enrichments.indicator.file.x509.public_key_size`*:: -+ --- -The size of the public key space in bits. - -type: long - -example: 2048 - --- - -*`threat.enrichments.indicator.file.x509.serial_number`*:: -+ --- -Unique serial number issued by the certificate authority. For consistency, if this value is alphanumeric, it should be formatted without colons and uppercase characters. - -type: keyword - -example: 55FBB9C7DEBF09809D12CCAA - --- - -*`threat.enrichments.indicator.file.x509.signature_algorithm`*:: -+ --- -Identifier for certificate signature algorithm. We recommend using names found in Go Lang Crypto library. See https://github.com/golang/go/blob/go1.14/src/crypto/x509/x509.go#L337-L353. - -type: keyword - -example: SHA256-RSA - --- - -*`threat.enrichments.indicator.file.x509.subject.common_name`*:: -+ --- -List of common names (CN) of subject. - -type: keyword - -example: shared.global.example.net - --- - -*`threat.enrichments.indicator.file.x509.subject.country`*:: -+ --- -List of country (C) code - -type: keyword - -example: US - --- - -*`threat.enrichments.indicator.file.x509.subject.distinguished_name`*:: -+ --- -Distinguished name (DN) of the certificate subject entity. - -type: keyword - -example: C=US, ST=California, L=San Francisco, O=Example, Inc., CN=shared.global.example.net - --- - -*`threat.enrichments.indicator.file.x509.subject.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: San Francisco - --- - -*`threat.enrichments.indicator.file.x509.subject.organization`*:: -+ --- -List of organizations (O) of subject. - -type: keyword - -example: Example, Inc. - --- - -*`threat.enrichments.indicator.file.x509.subject.organizational_unit`*:: -+ --- -List of organizational units (OU) of subject. - -type: keyword - --- - -*`threat.enrichments.indicator.file.x509.subject.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`threat.enrichments.indicator.file.x509.version_number`*:: -+ --- -Version of x509 format. - -type: keyword - -example: 3 - --- - -*`threat.enrichments.indicator.first_seen`*:: -+ --- -The date and time when intelligence source first reported sighting this indicator. - -type: date - -example: 2020-11-05T17:25:47.000Z - --- - -*`threat.enrichments.indicator.geo.city_name`*:: -+ --- -City name. - -type: keyword - -example: Montreal - --- - -*`threat.enrichments.indicator.geo.continent_code`*:: -+ --- -Two-letter code representing continent's name. - -type: keyword - -example: NA - --- - -*`threat.enrichments.indicator.geo.continent_name`*:: -+ --- -Name of the continent. - -type: keyword - -example: North America - --- - -*`threat.enrichments.indicator.geo.country_iso_code`*:: -+ --- -Country ISO code. - -type: keyword - -example: CA - --- - -*`threat.enrichments.indicator.geo.country_name`*:: -+ --- -Country name. - -type: keyword - -example: Canada - --- - -*`threat.enrichments.indicator.geo.location`*:: -+ --- -Longitude and latitude. - -type: geo_point - -example: { "lon": -73.614830, "lat": 45.505918 } - --- - -*`threat.enrichments.indicator.geo.name`*:: -+ --- -User-defined description of a location, at the level of granularity they care about. -Could be the name of their data centers, the floor number, if this describes a local physical entity, city names. -Not typically used in automated geolocation. - -type: keyword - -example: boston-dc - --- - -*`threat.enrichments.indicator.geo.postal_code`*:: -+ --- -Postal code associated with the location. -Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. - -type: keyword - -example: 94040 - --- - -*`threat.enrichments.indicator.geo.region_iso_code`*:: -+ --- -Region ISO code. - -type: keyword - -example: CA-QC - --- - -*`threat.enrichments.indicator.geo.region_name`*:: -+ --- -Region name. - -type: keyword - -example: Quebec - --- - -*`threat.enrichments.indicator.geo.timezone`*:: -+ --- -The time zone of the location, such as IANA time zone name. - -type: keyword - -example: America/Argentina/Buenos_Aires - --- - -*`threat.enrichments.indicator.ip`*:: -+ --- -Identifies a threat indicator as an IP address (irrespective of direction). - -type: ip - -example: 1.2.3.4 - --- - -*`threat.enrichments.indicator.last_seen`*:: -+ --- -The date and time when intelligence source last reported sighting this indicator. - -type: date - -example: 2020-11-05T17:25:47.000Z - --- - -*`threat.enrichments.indicator.marking.tlp`*:: -+ --- -Traffic Light Protocol sharing markings. Recommended values are: - * WHITE - * GREEN - * AMBER - * RED - -type: keyword - -example: White - --- - -*`threat.enrichments.indicator.modified_at`*:: -+ --- -The date and time when intelligence source last modified information for this indicator. - -type: date - -example: 2020-11-05T17:25:47.000Z - --- - -*`threat.enrichments.indicator.port`*:: -+ --- -Identifies a threat indicator as a port number (irrespective of direction). - -type: long - -example: 443 - --- - -*`threat.enrichments.indicator.provider`*:: -+ --- -The name of the indicator's provider. - -type: keyword - -example: lrz_urlhaus - --- - -*`threat.enrichments.indicator.reference`*:: -+ --- -Reference URL linking to additional information about this indicator. - -type: keyword - -example: https://system.example.com/indicator/0001234 - --- - -*`threat.enrichments.indicator.registry.data.bytes`*:: -+ --- -Original bytes written with base64 encoding. -For Windows registry operations, such as SetValueEx and RegQueryValueEx, this corresponds to the data pointed by `lp_data`. This is optional but provides better recoverability and should be populated for REG_BINARY encoded values. - -type: keyword - -example: ZQBuAC0AVQBTAAAAZQBuAAAAAAA= - --- - -*`threat.enrichments.indicator.registry.data.strings`*:: -+ --- -Content when writing string types. -Populated as an array when writing string data to the registry. For single string registry types (REG_SZ, REG_EXPAND_SZ), this should be an array with one string. For sequences of string with REG_MULTI_SZ, this array will be variable length. For numeric data, such as REG_DWORD and REG_QWORD, this should be populated with the decimal representation (e.g `"1"`). - -type: wildcard - -example: ["C:\rta\red_ttp\bin\myapp.exe"] - --- - -*`threat.enrichments.indicator.registry.data.type`*:: -+ --- -Standard registry type for encoding contents - -type: keyword - -example: REG_SZ - --- - -*`threat.enrichments.indicator.registry.hive`*:: -+ --- -Abbreviated name for the hive. - -type: keyword - -example: HKLM - --- - -*`threat.enrichments.indicator.registry.key`*:: -+ --- -Hive-relative path of keys. - -type: keyword - -example: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe - --- - -*`threat.enrichments.indicator.registry.path`*:: -+ --- -Full path, including hive, key and value - -type: keyword - -example: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe\Debugger - --- - -*`threat.enrichments.indicator.registry.value`*:: -+ --- -Name of the value written. - -type: keyword - -example: Debugger - --- - -*`threat.enrichments.indicator.scanner_stats`*:: -+ --- -Count of AV/EDR vendors that successfully detected malicious file or URL. - -type: long - -example: 4 - --- - -*`threat.enrichments.indicator.sightings`*:: -+ --- -Number of times this indicator was observed conducting threat activity. - -type: long - -example: 20 - --- - -*`threat.enrichments.indicator.type`*:: -+ --- -Type of indicator as represented by Cyber Observable in STIX 2.0. Recommended values: - * autonomous-system - * artifact - * directory - * domain-name - * email-addr - * file - * ipv4-addr - * ipv6-addr - * mac-addr - * mutex - * port - * process - * software - * url - * user-account - * windows-registry-key - * x509-certificate - -type: keyword - -example: ipv4-addr - --- - -*`threat.enrichments.indicator.url.domain`*:: -+ --- -Domain of the url, such as "www.elastic.co". -In some cases a URL may refer to an IP and/or port directly, without a domain name. In this case, the IP address would go to the `domain` field. -If the URL contains a literal IPv6 address enclosed by `[` and `]` (IETF RFC 2732), the `[` and `]` characters should also be captured in the `domain` field. - -type: keyword - -example: www.elastic.co - --- - -*`threat.enrichments.indicator.url.extension`*:: -+ --- -The field contains the file extension from the original request url, excluding the leading dot. -The file extension is only set if it exists, as not every url has a file extension. -The leading period must not be included. For example, the value must be "png", not ".png". -Note that when the file name has multiple extensions (example.tar.gz), only the last one should be captured ("gz", not "tar.gz"). - -type: keyword - -example: png - --- - -*`threat.enrichments.indicator.url.fragment`*:: -+ --- -Portion of the url after the `#`, such as "top". -The `#` is not part of the fragment. - -type: keyword - --- - -*`threat.enrichments.indicator.url.full`*:: -+ --- -If full URLs are important to your use case, they should be stored in `url.full`, whether this field is reconstructed or present in the event source. - -type: wildcard - -example: https://www.elastic.co:443/search?q=elasticsearch#top - --- - -*`threat.enrichments.indicator.url.full.text`*:: -+ --- -type: match_only_text - --- - -*`threat.enrichments.indicator.url.original`*:: -+ --- -Unmodified original url as seen in the event source. -Note that in network monitoring, the observed URL may be a full URL, whereas in access logs, the URL is often just represented as a path. -This field is meant to represent the URL as it was observed, complete or not. - -type: wildcard - -example: https://www.elastic.co:443/search?q=elasticsearch#top or /search?q=elasticsearch - --- - -*`threat.enrichments.indicator.url.original.text`*:: -+ --- -type: match_only_text - --- - -*`threat.enrichments.indicator.url.password`*:: -+ --- -Password of the request. - -type: keyword - --- - -*`threat.enrichments.indicator.url.path`*:: -+ --- -Path of the request, such as "/search". - -type: wildcard - --- - -*`threat.enrichments.indicator.url.port`*:: -+ --- -Port of the request, such as 443. - -type: long - -example: 443 - -format: string - --- - -*`threat.enrichments.indicator.url.query`*:: -+ --- -The query field describes the query string of the request, such as "q=elasticsearch". -The `?` is excluded from the query string. If a URL contains no `?`, there is no query field. If there is a `?` but no query, the query field exists with an empty string. The `exists` query can be used to differentiate between the two cases. - -type: keyword - --- - -*`threat.enrichments.indicator.url.registered_domain`*:: -+ --- -The highest registered url domain, stripped of the subdomain. -For example, the registered domain for "foo.example.com" is "example.com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last two labels will not work well for TLDs such as "co.uk". - -type: keyword - -example: example.com - --- - -*`threat.enrichments.indicator.url.scheme`*:: -+ --- -Scheme of the request, such as "https". -Note: The `:` is not part of the scheme. - -type: keyword - -example: https - --- - -*`threat.enrichments.indicator.url.subdomain`*:: -+ --- -The subdomain portion of a fully qualified domain name includes all of the names except the host name under the registered_domain. In a partially qualified domain, or if the the qualification level of the full name cannot be determined, subdomain contains all of the names below the registered domain. -For example the subdomain portion of "www.east.mydomain.co.uk" is "east". If the domain has multiple levels of subdomain, such as "sub2.sub1.example.com", the subdomain field should contain "sub2.sub1", with no trailing period. - -type: keyword - -example: east - --- - -*`threat.enrichments.indicator.url.top_level_domain`*:: -+ --- -The effective top level domain (eTLD), also known as the domain suffix, is the last part of the domain name. For example, the top level domain for example.com is "com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last label will not work well for effective TLDs such as "co.uk". - -type: keyword - -example: co.uk - --- - -*`threat.enrichments.indicator.url.username`*:: -+ --- -Username of the request. - -type: keyword - --- - -*`threat.enrichments.indicator.x509.alternative_names`*:: -+ --- -List of subject alternative names (SAN). Name types vary by certificate authority and certificate type but commonly contain IP addresses, DNS names (and wildcards), and email addresses. - -type: keyword - -example: *.elastic.co - --- - -*`threat.enrichments.indicator.x509.issuer.common_name`*:: -+ --- -List of common name (CN) of issuing certificate authority. - -type: keyword - -example: Example SHA2 High Assurance Server CA - --- - -*`threat.enrichments.indicator.x509.issuer.country`*:: -+ --- -List of country (C) codes - -type: keyword - -example: US - --- - -*`threat.enrichments.indicator.x509.issuer.distinguished_name`*:: -+ --- -Distinguished name (DN) of issuing certificate authority. - -type: keyword - -example: C=US, O=Example Inc, OU=www.example.com, CN=Example SHA2 High Assurance Server CA - --- - -*`threat.enrichments.indicator.x509.issuer.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: Mountain View - --- - -*`threat.enrichments.indicator.x509.issuer.organization`*:: -+ --- -List of organizations (O) of issuing certificate authority. - -type: keyword - -example: Example Inc - --- - -*`threat.enrichments.indicator.x509.issuer.organizational_unit`*:: -+ --- -List of organizational units (OU) of issuing certificate authority. - -type: keyword - -example: www.example.com - --- - -*`threat.enrichments.indicator.x509.issuer.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`threat.enrichments.indicator.x509.not_after`*:: -+ --- -Time at which the certificate is no longer considered valid. - -type: date - -example: 2020-07-16 03:15:39+00:00 - --- - -*`threat.enrichments.indicator.x509.not_before`*:: -+ --- -Time at which the certificate is first considered valid. - -type: date - -example: 2019-08-16 01:40:25+00:00 - --- - -*`threat.enrichments.indicator.x509.public_key_algorithm`*:: -+ --- -Algorithm used to generate the public key. - -type: keyword - -example: RSA - --- - -*`threat.enrichments.indicator.x509.public_key_curve`*:: -+ --- -The curve used by the elliptic curve public key algorithm. This is algorithm specific. - -type: keyword - -example: nistp521 - --- - -*`threat.enrichments.indicator.x509.public_key_exponent`*:: -+ --- -Exponent used to derive the public key. This is algorithm specific. - -type: long - -example: 65537 - -Field is not indexed. - --- - -*`threat.enrichments.indicator.x509.public_key_size`*:: -+ --- -The size of the public key space in bits. - -type: long - -example: 2048 - --- - -*`threat.enrichments.indicator.x509.serial_number`*:: -+ --- -Unique serial number issued by the certificate authority. For consistency, if this value is alphanumeric, it should be formatted without colons and uppercase characters. - -type: keyword - -example: 55FBB9C7DEBF09809D12CCAA - --- - -*`threat.enrichments.indicator.x509.signature_algorithm`*:: -+ --- -Identifier for certificate signature algorithm. We recommend using names found in Go Lang Crypto library. See https://github.com/golang/go/blob/go1.14/src/crypto/x509/x509.go#L337-L353. - -type: keyword - -example: SHA256-RSA - --- - -*`threat.enrichments.indicator.x509.subject.common_name`*:: -+ --- -List of common names (CN) of subject. - -type: keyword - -example: shared.global.example.net - --- - -*`threat.enrichments.indicator.x509.subject.country`*:: -+ --- -List of country (C) code - -type: keyword - -example: US - --- - -*`threat.enrichments.indicator.x509.subject.distinguished_name`*:: -+ --- -Distinguished name (DN) of the certificate subject entity. - -type: keyword - -example: C=US, ST=California, L=San Francisco, O=Example, Inc., CN=shared.global.example.net - --- - -*`threat.enrichments.indicator.x509.subject.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: San Francisco - --- - -*`threat.enrichments.indicator.x509.subject.organization`*:: -+ --- -List of organizations (O) of subject. - -type: keyword - -example: Example, Inc. - --- - -*`threat.enrichments.indicator.x509.subject.organizational_unit`*:: -+ --- -List of organizational units (OU) of subject. - -type: keyword - --- - -*`threat.enrichments.indicator.x509.subject.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`threat.enrichments.indicator.x509.version_number`*:: -+ --- -Version of x509 format. - -type: keyword - -example: 3 - --- - -*`threat.enrichments.matched.atomic`*:: -+ --- -Identifies the atomic indicator value that matched a local environment endpoint or network event. - -type: keyword - -example: bad-domain.com - --- - -*`threat.enrichments.matched.field`*:: -+ --- -Identifies the field of the atomic indicator that matched a local environment endpoint or network event. - -type: keyword - -example: file.hash.sha256 - --- - -*`threat.enrichments.matched.id`*:: -+ --- -Identifies the _id of the indicator document enriching the event. - -type: keyword - -example: ff93aee5-86a1-4a61-b0e6-0cdc313d01b5 - --- - -*`threat.enrichments.matched.index`*:: -+ --- -Identifies the _index of the indicator document enriching the event. - -type: keyword - -example: filebeat-8.0.0-2021.05.23-000011 - --- - -*`threat.enrichments.matched.type`*:: -+ --- -Identifies the type of match that caused the event to be enriched with the given indicator - -type: keyword - -example: indicator_match_rule - --- - -*`threat.framework`*:: -+ --- -Name of the threat framework used to further categorize and classify the tactic and technique of the reported threat. Framework classification can be provided by detecting systems, evaluated at ingest time, or retrospectively tagged to events. - -type: keyword - -example: MITRE ATT&CK - --- - -*`threat.group.alias`*:: -+ --- -The alias(es) of the group for a set of related intrusion activity that are tracked by a common name in the security community. -While not required, you can use a MITRE ATT&CK® group alias(es). - -type: keyword - -example: [ "Magecart Group 6" ] - --- - -*`threat.group.id`*:: -+ --- -The id of the group for a set of related intrusion activity that are tracked by a common name in the security community. -While not required, you can use a MITRE ATT&CK® group id. - -type: keyword - -example: G0037 - --- - -*`threat.group.name`*:: -+ --- -The name of the group for a set of related intrusion activity that are tracked by a common name in the security community. -While not required, you can use a MITRE ATT&CK® group name. - -type: keyword - -example: FIN6 - --- - -*`threat.group.reference`*:: -+ --- -The reference URL of the group for a set of related intrusion activity that are tracked by a common name in the security community. -While not required, you can use a MITRE ATT&CK® group reference URL. - -type: keyword - -example: https://attack.mitre.org/groups/G0037/ - --- - -*`threat.indicator.as.number`*:: -+ --- -Unique number allocated to the autonomous system. The autonomous system number (ASN) uniquely identifies each network on the Internet. - -type: long - -example: 15169 - --- - -*`threat.indicator.as.organization.name`*:: -+ --- -Organization name. - -type: keyword - -example: Google LLC - --- - -*`threat.indicator.as.organization.name.text`*:: -+ --- -type: match_only_text - --- - -*`threat.indicator.confidence`*:: -+ --- -Identifies the vendor-neutral confidence rating using the None/Low/Medium/High scale defined in Appendix A of the STIX 2.1 framework. Vendor-specific confidence scales may be added as custom fields. -Expected values are: - * Not Specified - * None - * Low - * Medium - * High - -type: keyword - -example: Medium - --- - -*`threat.indicator.description`*:: -+ --- -Describes the type of action conducted by the threat. - -type: keyword - -example: IP x.x.x.x was observed delivering the Angler EK. - --- - -*`threat.indicator.email.address`*:: -+ --- -Identifies a threat indicator as an email address (irrespective of direction). - -type: keyword - -example: phish@example.com - --- - -*`threat.indicator.file.accessed`*:: -+ --- -Last time the file was accessed. -Note that not all filesystems keep track of access time. - -type: date - --- - -*`threat.indicator.file.attributes`*:: -+ --- -Array of file attributes. -Attributes names will vary by platform. Here's a non-exhaustive list of values that are expected in this field: archive, compressed, directory, encrypted, execute, hidden, read, readonly, system, write. - -type: keyword - -example: ["readonly", "system"] - --- - -*`threat.indicator.file.code_signature.digest_algorithm`*:: -+ --- -The hashing algorithm used to sign the process. -This value can distinguish signatures when a file is signed multiple times by the same signer but with a different digest algorithm. - -type: keyword - -example: sha256 - --- - -*`threat.indicator.file.code_signature.exists`*:: -+ --- -Boolean to capture if a signature is present. - -type: boolean - -example: true - --- - -*`threat.indicator.file.code_signature.signing_id`*:: -+ --- -The identifier used to sign the process. -This is used to identify the application manufactured by a software vendor. The field is relevant to Apple *OS only. - -type: keyword - -example: com.apple.xpc.proxy - --- - -*`threat.indicator.file.code_signature.status`*:: -+ --- -Additional information about the certificate status. -This is useful for logging cryptographic errors with the certificate validity or trust status. Leave unpopulated if the validity or trust of the certificate was unchecked. - -type: keyword - -example: ERROR_UNTRUSTED_ROOT - --- - -*`threat.indicator.file.code_signature.subject_name`*:: -+ --- -Subject name of the code signer - -type: keyword - -example: Microsoft Corporation - --- - -*`threat.indicator.file.code_signature.team_id`*:: -+ --- -The team identifier used to sign the process. -This is used to identify the team or vendor of a software product. The field is relevant to Apple *OS only. - -type: keyword - -example: EQHXZ8M8AV - --- - -*`threat.indicator.file.code_signature.timestamp`*:: -+ --- -Date and time when the code signature was generated and signed. - -type: date - -example: 2021-01-01T12:10:30Z - --- - -*`threat.indicator.file.code_signature.trusted`*:: -+ --- -Stores the trust status of the certificate chain. -Validating the trust of the certificate chain may be complicated, and this field should only be populated by tools that actively check the status. - -type: boolean - -example: true - --- - -*`threat.indicator.file.code_signature.valid`*:: -+ --- -Boolean to capture if the digital signature is verified against the binary content. -Leave unpopulated if a certificate was unchecked. - -type: boolean - -example: true - --- - -*`threat.indicator.file.created`*:: -+ --- -File creation time. -Note that not all filesystems store the creation time. - -type: date - --- - -*`threat.indicator.file.ctime`*:: -+ --- -Last time the file attributes or metadata changed. -Note that changes to the file content will update `mtime`. This implies `ctime` will be adjusted at the same time, since `mtime` is an attribute of the file. - -type: date - --- - -*`threat.indicator.file.device`*:: -+ --- -Device that is the source of the file. - -type: keyword - -example: sda - --- - -*`threat.indicator.file.directory`*:: -+ --- -Directory where the file is located. It should include the drive letter, when appropriate. - -type: keyword - -example: /home/alice - --- - -*`threat.indicator.file.drive_letter`*:: -+ --- -Drive letter where the file is located. This field is only relevant on Windows. -The value should be uppercase, and not include the colon. - -type: keyword - -example: C - --- - -*`threat.indicator.file.elf.architecture`*:: -+ --- -Machine architecture of the ELF file. - -type: keyword - -example: x86-64 - --- - -*`threat.indicator.file.elf.byte_order`*:: -+ --- -Byte sequence of ELF file. - -type: keyword - -example: Little Endian - --- - -*`threat.indicator.file.elf.cpu_type`*:: -+ --- -CPU type of the ELF file. - -type: keyword - -example: Intel - --- - -*`threat.indicator.file.elf.creation_date`*:: -+ --- -Extracted when possible from the file's metadata. Indicates when it was built or compiled. It can also be faked by malware creators. - -type: date - --- - -*`threat.indicator.file.elf.exports`*:: -+ --- -List of exported element names and types. - -type: flattened - --- - -*`threat.indicator.file.elf.header.abi_version`*:: -+ --- -Version of the ELF Application Binary Interface (ABI). - -type: keyword - --- - -*`threat.indicator.file.elf.header.class`*:: -+ --- -Header class of the ELF file. - -type: keyword - --- - -*`threat.indicator.file.elf.header.data`*:: -+ --- -Data table of the ELF header. - -type: keyword - --- - -*`threat.indicator.file.elf.header.entrypoint`*:: -+ --- -Header entrypoint of the ELF file. - -type: long - -format: string - --- - -*`threat.indicator.file.elf.header.object_version`*:: -+ --- -"0x1" for original ELF files. - -type: keyword - --- - -*`threat.indicator.file.elf.header.os_abi`*:: -+ --- -Application Binary Interface (ABI) of the Linux OS. - -type: keyword - --- - -*`threat.indicator.file.elf.header.type`*:: -+ --- -Header type of the ELF file. - -type: keyword - --- - -*`threat.indicator.file.elf.header.version`*:: -+ --- -Version of the ELF header. - -type: keyword - --- - -*`threat.indicator.file.elf.imports`*:: -+ --- -List of imported element names and types. - -type: flattened - --- - -*`threat.indicator.file.elf.sections`*:: -+ --- -An array containing an object for each section of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.sections.*`. - -type: nested - --- - -*`threat.indicator.file.elf.sections.chi2`*:: -+ --- -Chi-square probability distribution of the section. - -type: long - -format: number - --- - -*`threat.indicator.file.elf.sections.entropy`*:: -+ --- -Shannon entropy calculation from the section. - -type: long - -format: number - --- - -*`threat.indicator.file.elf.sections.flags`*:: -+ --- -ELF Section List flags. - -type: keyword - --- - -*`threat.indicator.file.elf.sections.name`*:: -+ --- -ELF Section List name. - -type: keyword - --- - -*`threat.indicator.file.elf.sections.physical_offset`*:: -+ --- -ELF Section List offset. - -type: keyword - --- - -*`threat.indicator.file.elf.sections.physical_size`*:: -+ --- -ELF Section List physical size. - -type: long - -format: bytes - --- - -*`threat.indicator.file.elf.sections.type`*:: -+ --- -ELF Section List type. - -type: keyword - --- - -*`threat.indicator.file.elf.sections.virtual_address`*:: -+ --- -ELF Section List virtual address. - -type: long - -format: string - --- - -*`threat.indicator.file.elf.sections.virtual_size`*:: -+ --- -ELF Section List virtual size. - -type: long - -format: string - --- - -*`threat.indicator.file.elf.segments`*:: -+ --- -An array containing an object for each segment of the ELF file. -The keys that should be present in these objects are defined by sub-fields underneath `elf.segments.*`. - -type: nested - --- - -*`threat.indicator.file.elf.segments.sections`*:: -+ --- -ELF object segment sections. - -type: keyword - --- - -*`threat.indicator.file.elf.segments.type`*:: -+ --- -ELF object segment type. - -type: keyword - --- - -*`threat.indicator.file.elf.shared_libraries`*:: -+ --- -List of shared libraries used by this ELF object. - -type: keyword - --- - -*`threat.indicator.file.elf.telfhash`*:: -+ --- -telfhash symbol hash for ELF file. - -type: keyword - --- - -*`threat.indicator.file.extension`*:: -+ --- -File extension, excluding the leading dot. -Note that when the file name has multiple extensions (example.tar.gz), only the last one should be captured ("gz", not "tar.gz"). - -type: keyword - -example: png - --- - -*`threat.indicator.file.fork_name`*:: -+ --- -A fork is additional data associated with a filesystem object. -On Linux, a resource fork is used to store additional data with a filesystem object. A file always has at least one fork for the data portion, and additional forks may exist. -On NTFS, this is analogous to an Alternate Data Stream (ADS), and the default data stream for a file is just called $DATA. Zone.Identifier is commonly used by Windows to track contents downloaded from the Internet. An ADS is typically of the form: `C:\path\to\filename.extension:some_fork_name`, and `some_fork_name` is the value that should populate `fork_name`. `filename.extension` should populate `file.name`, and `extension` should populate `file.extension`. The full path, `file.path`, will include the fork name. - -type: keyword - -example: Zone.Identifer - --- - -*`threat.indicator.file.gid`*:: -+ --- -Primary group ID (GID) of the file. - -type: keyword - -example: 1001 - --- - -*`threat.indicator.file.group`*:: -+ --- -Primary group name of the file. - -type: keyword - -example: alice - --- - -*`threat.indicator.file.hash.md5`*:: -+ --- -MD5 hash. - -type: keyword - --- - -*`threat.indicator.file.hash.sha1`*:: -+ --- -SHA1 hash. - -type: keyword - --- - -*`threat.indicator.file.hash.sha256`*:: -+ --- -SHA256 hash. - -type: keyword - --- - -*`threat.indicator.file.hash.sha512`*:: -+ --- -SHA512 hash. - -type: keyword - --- - -*`threat.indicator.file.hash.ssdeep`*:: -+ --- -SSDEEP hash. - -type: keyword - --- - -*`threat.indicator.file.inode`*:: -+ --- -Inode representing the file in the filesystem. - -type: keyword - -example: 256383 - --- - -*`threat.indicator.file.mime_type`*:: -+ --- -MIME type should identify the format of the file or stream of bytes using https://www.iana.org/assignments/media-types/media-types.xhtml[IANA official types], where possible. When more than one type is applicable, the most specific type should be used. - -type: keyword - --- - -*`threat.indicator.file.mode`*:: -+ --- -Mode of the file in octal representation. - -type: keyword - -example: 0640 - --- - -*`threat.indicator.file.mtime`*:: -+ --- -Last time the file content was modified. - -type: date - --- - -*`threat.indicator.file.name`*:: -+ --- -Name of the file including the extension, without the directory. - -type: keyword - -example: example.png - --- - -*`threat.indicator.file.owner`*:: -+ --- -File owner's username. - -type: keyword - -example: alice - --- - -*`threat.indicator.file.path`*:: -+ --- -Full path to the file, including the file name. It should include the drive letter, when appropriate. - -type: keyword - -example: /home/alice/example.png - --- - -*`threat.indicator.file.path.text`*:: -+ --- -type: match_only_text - --- - -*`threat.indicator.file.pe.architecture`*:: -+ --- -CPU architecture target for the file. - -type: keyword - -example: x64 - --- - -*`threat.indicator.file.pe.company`*:: -+ --- -Internal company name of the file, provided at compile-time. - -type: keyword - -example: Microsoft Corporation - --- - -*`threat.indicator.file.pe.description`*:: -+ --- -Internal description of the file, provided at compile-time. - -type: keyword - -example: Paint - --- - -*`threat.indicator.file.pe.file_version`*:: -+ --- -Internal version of the file, provided at compile-time. - -type: keyword - -example: 6.3.9600.17415 - --- - -*`threat.indicator.file.pe.imphash`*:: -+ --- -A hash of the imports in a PE file. An imphash -- or import hash -- can be used to fingerprint binaries even after recompilation or other code-level transformations have occurred, which would change more traditional hash values. -Learn more at https://www.fireeye.com/blog/threat-research/2014/01/tracking-malware-import-hashing.html. - -type: keyword - -example: 0c6803c4e922103c4dca5963aad36ddf - --- - -*`threat.indicator.file.pe.original_file_name`*:: -+ --- -Internal name of the file, provided at compile-time. - -type: keyword - -example: MSPAINT.EXE - --- - -*`threat.indicator.file.pe.product`*:: -+ --- -Internal product name of the file, provided at compile-time. - -type: keyword - -example: Microsoft® Windows® Operating System - --- - -*`threat.indicator.file.size`*:: -+ --- -File size in bytes. -Only relevant when `file.type` is "file". - -type: long - -example: 16384 - --- - -*`threat.indicator.file.target_path`*:: -+ --- -Target path for symlinks. - -type: keyword - --- - -*`threat.indicator.file.target_path.text`*:: -+ --- -type: match_only_text - --- - -*`threat.indicator.file.type`*:: -+ --- -File type (file, dir, or symlink). - -type: keyword - -example: file - --- - -*`threat.indicator.file.uid`*:: -+ --- -The user ID (UID) or security identifier (SID) of the file owner. - -type: keyword - -example: 1001 - --- - -*`threat.indicator.file.x509.alternative_names`*:: -+ --- -List of subject alternative names (SAN). Name types vary by certificate authority and certificate type but commonly contain IP addresses, DNS names (and wildcards), and email addresses. - -type: keyword - -example: *.elastic.co - --- - -*`threat.indicator.file.x509.issuer.common_name`*:: -+ --- -List of common name (CN) of issuing certificate authority. - -type: keyword - -example: Example SHA2 High Assurance Server CA - --- - -*`threat.indicator.file.x509.issuer.country`*:: -+ --- -List of country (C) codes - -type: keyword - -example: US - --- - -*`threat.indicator.file.x509.issuer.distinguished_name`*:: -+ --- -Distinguished name (DN) of issuing certificate authority. - -type: keyword - -example: C=US, O=Example Inc, OU=www.example.com, CN=Example SHA2 High Assurance Server CA - --- - -*`threat.indicator.file.x509.issuer.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: Mountain View - --- - -*`threat.indicator.file.x509.issuer.organization`*:: -+ --- -List of organizations (O) of issuing certificate authority. - -type: keyword - -example: Example Inc - --- - -*`threat.indicator.file.x509.issuer.organizational_unit`*:: -+ --- -List of organizational units (OU) of issuing certificate authority. - -type: keyword - -example: www.example.com - --- - -*`threat.indicator.file.x509.issuer.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`threat.indicator.file.x509.not_after`*:: -+ --- -Time at which the certificate is no longer considered valid. - -type: date - -example: 2020-07-16 03:15:39+00:00 - --- - -*`threat.indicator.file.x509.not_before`*:: -+ --- -Time at which the certificate is first considered valid. - -type: date - -example: 2019-08-16 01:40:25+00:00 - --- - -*`threat.indicator.file.x509.public_key_algorithm`*:: -+ --- -Algorithm used to generate the public key. - -type: keyword - -example: RSA - --- - -*`threat.indicator.file.x509.public_key_curve`*:: -+ --- -The curve used by the elliptic curve public key algorithm. This is algorithm specific. - -type: keyword - -example: nistp521 - --- - -*`threat.indicator.file.x509.public_key_exponent`*:: -+ --- -Exponent used to derive the public key. This is algorithm specific. - -type: long - -example: 65537 - -Field is not indexed. - --- - -*`threat.indicator.file.x509.public_key_size`*:: -+ --- -The size of the public key space in bits. - -type: long - -example: 2048 - --- - -*`threat.indicator.file.x509.serial_number`*:: -+ --- -Unique serial number issued by the certificate authority. For consistency, if this value is alphanumeric, it should be formatted without colons and uppercase characters. - -type: keyword - -example: 55FBB9C7DEBF09809D12CCAA - --- - -*`threat.indicator.file.x509.signature_algorithm`*:: -+ --- -Identifier for certificate signature algorithm. We recommend using names found in Go Lang Crypto library. See https://github.com/golang/go/blob/go1.14/src/crypto/x509/x509.go#L337-L353. - -type: keyword - -example: SHA256-RSA - --- - -*`threat.indicator.file.x509.subject.common_name`*:: -+ --- -List of common names (CN) of subject. - -type: keyword - -example: shared.global.example.net - --- - -*`threat.indicator.file.x509.subject.country`*:: -+ --- -List of country (C) code - -type: keyword - -example: US - --- - -*`threat.indicator.file.x509.subject.distinguished_name`*:: -+ --- -Distinguished name (DN) of the certificate subject entity. - -type: keyword - -example: C=US, ST=California, L=San Francisco, O=Example, Inc., CN=shared.global.example.net - --- - -*`threat.indicator.file.x509.subject.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: San Francisco - --- - -*`threat.indicator.file.x509.subject.organization`*:: -+ --- -List of organizations (O) of subject. - -type: keyword - -example: Example, Inc. - --- - -*`threat.indicator.file.x509.subject.organizational_unit`*:: -+ --- -List of organizational units (OU) of subject. - -type: keyword - --- - -*`threat.indicator.file.x509.subject.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`threat.indicator.file.x509.version_number`*:: -+ --- -Version of x509 format. - -type: keyword - -example: 3 - --- - -*`threat.indicator.first_seen`*:: -+ --- -The date and time when intelligence source first reported sighting this indicator. - -type: date - -example: 2020-11-05T17:25:47.000Z - --- - -*`threat.indicator.geo.city_name`*:: -+ --- -City name. - -type: keyword - -example: Montreal - --- - -*`threat.indicator.geo.continent_code`*:: -+ --- -Two-letter code representing continent's name. - -type: keyword - -example: NA - --- - -*`threat.indicator.geo.continent_name`*:: -+ --- -Name of the continent. - -type: keyword - -example: North America - --- - -*`threat.indicator.geo.country_iso_code`*:: -+ --- -Country ISO code. - -type: keyword - -example: CA - --- - -*`threat.indicator.geo.country_name`*:: -+ --- -Country name. - -type: keyword - -example: Canada - --- - -*`threat.indicator.geo.location`*:: -+ --- -Longitude and latitude. - -type: geo_point - -example: { "lon": -73.614830, "lat": 45.505918 } - --- - -*`threat.indicator.geo.name`*:: -+ --- -User-defined description of a location, at the level of granularity they care about. -Could be the name of their data centers, the floor number, if this describes a local physical entity, city names. -Not typically used in automated geolocation. - -type: keyword - -example: boston-dc - --- - -*`threat.indicator.geo.postal_code`*:: -+ --- -Postal code associated with the location. -Values appropriate for this field may also be known as a postcode or ZIP code and will vary widely from country to country. - -type: keyword - -example: 94040 - --- - -*`threat.indicator.geo.region_iso_code`*:: -+ --- -Region ISO code. - -type: keyword - -example: CA-QC - --- - -*`threat.indicator.geo.region_name`*:: -+ --- -Region name. - -type: keyword - -example: Quebec - --- - -*`threat.indicator.geo.timezone`*:: -+ --- -The time zone of the location, such as IANA time zone name. - -type: keyword - -example: America/Argentina/Buenos_Aires - --- - -*`threat.indicator.ip`*:: -+ --- -Identifies a threat indicator as an IP address (irrespective of direction). - -type: ip - -example: 1.2.3.4 - --- - -*`threat.indicator.last_seen`*:: -+ --- -The date and time when intelligence source last reported sighting this indicator. - -type: date - -example: 2020-11-05T17:25:47.000Z - --- - -*`threat.indicator.marking.tlp`*:: -+ --- -Traffic Light Protocol sharing markings. -Recommended values are: - * WHITE - * GREEN - * AMBER - * RED - -type: keyword - -example: WHITE - --- - -*`threat.indicator.modified_at`*:: -+ --- -The date and time when intelligence source last modified information for this indicator. - -type: date - -example: 2020-11-05T17:25:47.000Z - --- - -*`threat.indicator.port`*:: -+ --- -Identifies a threat indicator as a port number (irrespective of direction). - -type: long - -example: 443 - --- - -*`threat.indicator.provider`*:: -+ --- -The name of the indicator's provider. - -type: keyword - -example: lrz_urlhaus - --- - -*`threat.indicator.reference`*:: -+ --- -Reference URL linking to additional information about this indicator. - -type: keyword - -example: https://system.example.com/indicator/0001234 - --- - -*`threat.indicator.registry.data.bytes`*:: -+ --- -Original bytes written with base64 encoding. -For Windows registry operations, such as SetValueEx and RegQueryValueEx, this corresponds to the data pointed by `lp_data`. This is optional but provides better recoverability and should be populated for REG_BINARY encoded values. - -type: keyword - -example: ZQBuAC0AVQBTAAAAZQBuAAAAAAA= - --- - -*`threat.indicator.registry.data.strings`*:: -+ --- -Content when writing string types. -Populated as an array when writing string data to the registry. For single string registry types (REG_SZ, REG_EXPAND_SZ), this should be an array with one string. For sequences of string with REG_MULTI_SZ, this array will be variable length. For numeric data, such as REG_DWORD and REG_QWORD, this should be populated with the decimal representation (e.g `"1"`). - -type: wildcard - -example: ["C:\rta\red_ttp\bin\myapp.exe"] - --- - -*`threat.indicator.registry.data.type`*:: -+ --- -Standard registry type for encoding contents - -type: keyword - -example: REG_SZ - --- - -*`threat.indicator.registry.hive`*:: -+ --- -Abbreviated name for the hive. - -type: keyword - -example: HKLM - --- - -*`threat.indicator.registry.key`*:: -+ --- -Hive-relative path of keys. - -type: keyword - -example: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe - --- - -*`threat.indicator.registry.path`*:: -+ --- -Full path, including hive, key and value - -type: keyword - -example: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\winword.exe\Debugger - --- - -*`threat.indicator.registry.value`*:: -+ --- -Name of the value written. - -type: keyword - -example: Debugger - --- - -*`threat.indicator.scanner_stats`*:: -+ --- -Count of AV/EDR vendors that successfully detected malicious file or URL. - -type: long - -example: 4 - --- - -*`threat.indicator.sightings`*:: -+ --- -Number of times this indicator was observed conducting threat activity. - -type: long - -example: 20 - --- - -*`threat.indicator.type`*:: -+ --- -Type of indicator as represented by Cyber Observable in STIX 2.0. -Recommended values: - * autonomous-system - * artifact - * directory - * domain-name - * email-addr - * file - * ipv4-addr - * ipv6-addr - * mac-addr - * mutex - * port - * process - * software - * url - * user-account - * windows-registry-key - * x509-certificate - -type: keyword - -example: ipv4-addr - --- - -*`threat.indicator.url.domain`*:: -+ --- -Domain of the url, such as "www.elastic.co". -In some cases a URL may refer to an IP and/or port directly, without a domain name. In this case, the IP address would go to the `domain` field. -If the URL contains a literal IPv6 address enclosed by `[` and `]` (IETF RFC 2732), the `[` and `]` characters should also be captured in the `domain` field. - -type: keyword - -example: www.elastic.co - --- - -*`threat.indicator.url.extension`*:: -+ --- -The field contains the file extension from the original request url, excluding the leading dot. -The file extension is only set if it exists, as not every url has a file extension. -The leading period must not be included. For example, the value must be "png", not ".png". -Note that when the file name has multiple extensions (example.tar.gz), only the last one should be captured ("gz", not "tar.gz"). - -type: keyword - -example: png - --- - -*`threat.indicator.url.fragment`*:: -+ --- -Portion of the url after the `#`, such as "top". -The `#` is not part of the fragment. - -type: keyword - --- - -*`threat.indicator.url.full`*:: -+ --- -If full URLs are important to your use case, they should be stored in `url.full`, whether this field is reconstructed or present in the event source. - -type: wildcard - -example: https://www.elastic.co:443/search?q=elasticsearch#top - --- - -*`threat.indicator.url.full.text`*:: -+ --- -type: match_only_text - --- - -*`threat.indicator.url.original`*:: -+ --- -Unmodified original url as seen in the event source. -Note that in network monitoring, the observed URL may be a full URL, whereas in access logs, the URL is often just represented as a path. -This field is meant to represent the URL as it was observed, complete or not. - -type: wildcard - -example: https://www.elastic.co:443/search?q=elasticsearch#top or /search?q=elasticsearch - --- - -*`threat.indicator.url.original.text`*:: -+ --- -type: match_only_text - --- - -*`threat.indicator.url.password`*:: -+ --- -Password of the request. - -type: keyword - --- - -*`threat.indicator.url.path`*:: -+ --- -Path of the request, such as "/search". - -type: wildcard - --- - -*`threat.indicator.url.port`*:: -+ --- -Port of the request, such as 443. - -type: long - -example: 443 - -format: string - --- - -*`threat.indicator.url.query`*:: -+ --- -The query field describes the query string of the request, such as "q=elasticsearch". -The `?` is excluded from the query string. If a URL contains no `?`, there is no query field. If there is a `?` but no query, the query field exists with an empty string. The `exists` query can be used to differentiate between the two cases. - -type: keyword - --- - -*`threat.indicator.url.registered_domain`*:: -+ --- -The highest registered url domain, stripped of the subdomain. -For example, the registered domain for "foo.example.com" is "example.com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last two labels will not work well for TLDs such as "co.uk". - -type: keyword - -example: example.com - --- - -*`threat.indicator.url.scheme`*:: -+ --- -Scheme of the request, such as "https". -Note: The `:` is not part of the scheme. - -type: keyword - -example: https - --- - -*`threat.indicator.url.subdomain`*:: -+ --- -The subdomain portion of a fully qualified domain name includes all of the names except the host name under the registered_domain. In a partially qualified domain, or if the the qualification level of the full name cannot be determined, subdomain contains all of the names below the registered domain. -For example the subdomain portion of "www.east.mydomain.co.uk" is "east". If the domain has multiple levels of subdomain, such as "sub2.sub1.example.com", the subdomain field should contain "sub2.sub1", with no trailing period. - -type: keyword - -example: east - --- - -*`threat.indicator.url.top_level_domain`*:: -+ --- -The effective top level domain (eTLD), also known as the domain suffix, is the last part of the domain name. For example, the top level domain for example.com is "com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last label will not work well for effective TLDs such as "co.uk". - -type: keyword - -example: co.uk - --- - -*`threat.indicator.url.username`*:: -+ --- -Username of the request. - -type: keyword - --- - -*`threat.indicator.x509.alternative_names`*:: -+ --- -List of subject alternative names (SAN). Name types vary by certificate authority and certificate type but commonly contain IP addresses, DNS names (and wildcards), and email addresses. - -type: keyword - -example: *.elastic.co - --- - -*`threat.indicator.x509.issuer.common_name`*:: -+ --- -List of common name (CN) of issuing certificate authority. - -type: keyword - -example: Example SHA2 High Assurance Server CA - --- - -*`threat.indicator.x509.issuer.country`*:: -+ --- -List of country (C) codes - -type: keyword - -example: US - --- - -*`threat.indicator.x509.issuer.distinguished_name`*:: -+ --- -Distinguished name (DN) of issuing certificate authority. - -type: keyword - -example: C=US, O=Example Inc, OU=www.example.com, CN=Example SHA2 High Assurance Server CA - --- - -*`threat.indicator.x509.issuer.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: Mountain View - --- - -*`threat.indicator.x509.issuer.organization`*:: -+ --- -List of organizations (O) of issuing certificate authority. - -type: keyword - -example: Example Inc - --- - -*`threat.indicator.x509.issuer.organizational_unit`*:: -+ --- -List of organizational units (OU) of issuing certificate authority. - -type: keyword - -example: www.example.com - --- - -*`threat.indicator.x509.issuer.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`threat.indicator.x509.not_after`*:: -+ --- -Time at which the certificate is no longer considered valid. - -type: date - -example: 2020-07-16 03:15:39+00:00 - --- - -*`threat.indicator.x509.not_before`*:: -+ --- -Time at which the certificate is first considered valid. - -type: date - -example: 2019-08-16 01:40:25+00:00 - --- - -*`threat.indicator.x509.public_key_algorithm`*:: -+ --- -Algorithm used to generate the public key. - -type: keyword - -example: RSA - --- - -*`threat.indicator.x509.public_key_curve`*:: -+ --- -The curve used by the elliptic curve public key algorithm. This is algorithm specific. - -type: keyword - -example: nistp521 - --- - -*`threat.indicator.x509.public_key_exponent`*:: -+ --- -Exponent used to derive the public key. This is algorithm specific. - -type: long - -example: 65537 - -Field is not indexed. - --- - -*`threat.indicator.x509.public_key_size`*:: -+ --- -The size of the public key space in bits. - -type: long - -example: 2048 - --- - -*`threat.indicator.x509.serial_number`*:: -+ --- -Unique serial number issued by the certificate authority. For consistency, if this value is alphanumeric, it should be formatted without colons and uppercase characters. - -type: keyword - -example: 55FBB9C7DEBF09809D12CCAA - --- - -*`threat.indicator.x509.signature_algorithm`*:: -+ --- -Identifier for certificate signature algorithm. We recommend using names found in Go Lang Crypto library. See https://github.com/golang/go/blob/go1.14/src/crypto/x509/x509.go#L337-L353. - -type: keyword - -example: SHA256-RSA - --- - -*`threat.indicator.x509.subject.common_name`*:: -+ --- -List of common names (CN) of subject. - -type: keyword - -example: shared.global.example.net - --- - -*`threat.indicator.x509.subject.country`*:: -+ --- -List of country (C) code - -type: keyword - -example: US - --- - -*`threat.indicator.x509.subject.distinguished_name`*:: -+ --- -Distinguished name (DN) of the certificate subject entity. - -type: keyword - -example: C=US, ST=California, L=San Francisco, O=Example, Inc., CN=shared.global.example.net - --- - -*`threat.indicator.x509.subject.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: San Francisco - --- - -*`threat.indicator.x509.subject.organization`*:: -+ --- -List of organizations (O) of subject. - -type: keyword - -example: Example, Inc. - --- - -*`threat.indicator.x509.subject.organizational_unit`*:: -+ --- -List of organizational units (OU) of subject. - -type: keyword - --- - -*`threat.indicator.x509.subject.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`threat.indicator.x509.version_number`*:: -+ --- -Version of x509 format. - -type: keyword - -example: 3 - --- - -*`threat.software.alias`*:: -+ --- -The alias(es) of the software for a set of related intrusion activity that are tracked by a common name in the security community. -While not required, you can use a MITRE ATT&CK® associated software description. - -type: keyword - -example: [ "X-Agent" ] - --- - -*`threat.software.id`*:: -+ --- -The id of the software used by this threat to conduct behavior commonly modeled using MITRE ATT&CK®. -While not required, you can use a MITRE ATT&CK® software id. - -type: keyword - -example: S0552 - --- - -*`threat.software.name`*:: -+ --- -The name of the software used by this threat to conduct behavior commonly modeled using MITRE ATT&CK®. -While not required, you can use a MITRE ATT&CK® software name. - -type: keyword - -example: AdFind - --- - -*`threat.software.platforms`*:: -+ --- -The platforms of the software used by this threat to conduct behavior commonly modeled using MITRE ATT&CK®. -Recommended Values: - * AWS - * Azure - * Azure AD - * GCP - * Linux - * macOS - * Network - * Office 365 - * SaaS - * Windows - -While not required, you can use a MITRE ATT&CK® software platforms. - -type: keyword - -example: [ "Windows" ] - --- - -*`threat.software.reference`*:: -+ --- -The reference URL of the software used by this threat to conduct behavior commonly modeled using MITRE ATT&CK®. -While not required, you can use a MITRE ATT&CK® software reference URL. - -type: keyword - -example: https://attack.mitre.org/software/S0552/ - --- - -*`threat.software.type`*:: -+ --- -The type of software used by this threat to conduct behavior commonly modeled using MITRE ATT&CK®. -Recommended values - * Malware - * Tool - - While not required, you can use a MITRE ATT&CK® software type. - -type: keyword - -example: Tool - --- - -*`threat.tactic.id`*:: -+ --- -The id of tactic used by this threat. You can use a MITRE ATT&CK® tactic, for example. (ex. https://attack.mitre.org/tactics/TA0002/ ) - -type: keyword - -example: TA0002 - --- - -*`threat.tactic.name`*:: -+ --- -Name of the type of tactic used by this threat. You can use a MITRE ATT&CK® tactic, for example. (ex. https://attack.mitre.org/tactics/TA0002/) - -type: keyword - -example: Execution - --- - -*`threat.tactic.reference`*:: -+ --- -The reference url of tactic used by this threat. You can use a MITRE ATT&CK® tactic, for example. (ex. https://attack.mitre.org/tactics/TA0002/ ) - -type: keyword - -example: https://attack.mitre.org/tactics/TA0002/ - --- - -*`threat.technique.id`*:: -+ --- -The id of technique used by this threat. You can use a MITRE ATT&CK® technique, for example. (ex. https://attack.mitre.org/techniques/T1059/) - -type: keyword - -example: T1059 - --- - -*`threat.technique.name`*:: -+ --- -The name of technique used by this threat. You can use a MITRE ATT&CK® technique, for example. (ex. https://attack.mitre.org/techniques/T1059/) - -type: keyword - -example: Command and Scripting Interpreter - --- - -*`threat.technique.name.text`*:: -+ --- -type: match_only_text - --- - -*`threat.technique.reference`*:: -+ --- -The reference url of technique used by this threat. You can use a MITRE ATT&CK® technique, for example. (ex. https://attack.mitre.org/techniques/T1059/) - -type: keyword - -example: https://attack.mitre.org/techniques/T1059/ - --- - -*`threat.technique.subtechnique.id`*:: -+ --- -The full id of subtechnique used by this threat. You can use a MITRE ATT&CK® subtechnique, for example. (ex. https://attack.mitre.org/techniques/T1059/001/) - -type: keyword - -example: T1059.001 - --- - -*`threat.technique.subtechnique.name`*:: -+ --- -The name of subtechnique used by this threat. You can use a MITRE ATT&CK® subtechnique, for example. (ex. https://attack.mitre.org/techniques/T1059/001/) - -type: keyword - -example: PowerShell - --- - -*`threat.technique.subtechnique.name.text`*:: -+ --- -type: match_only_text - --- - -*`threat.technique.subtechnique.reference`*:: -+ --- -The reference url of subtechnique used by this threat. You can use a MITRE ATT&CK® subtechnique, for example. (ex. https://attack.mitre.org/techniques/T1059/001/) - -type: keyword - -example: https://attack.mitre.org/techniques/T1059/001/ - --- - -[float] -=== tls - -Fields related to a TLS connection. These fields focus on the TLS protocol itself and intentionally avoids in-depth analysis of the related x.509 certificate files. - - -*`tls.cipher`*:: -+ --- -String indicating the cipher used during the current connection. - -type: keyword - -example: TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 - --- - -*`tls.client.certificate`*:: -+ --- -PEM-encoded stand-alone certificate offered by the client. This is usually mutually-exclusive of `client.certificate_chain` since this value also exists in that list. - -type: keyword - -example: MII... - --- - -*`tls.client.certificate_chain`*:: -+ --- -Array of PEM-encoded certificates that make up the certificate chain offered by the client. This is usually mutually-exclusive of `client.certificate` since that value should be the first certificate in the chain. - -type: keyword - -example: ["MII...", "MII..."] - --- - -*`tls.client.hash.md5`*:: -+ --- -Certificate fingerprint using the MD5 digest of DER-encoded version of certificate offered by the client. For consistency with other hash values, this value should be formatted as an uppercase hash. - -type: keyword - -example: 0F76C7F2C55BFD7D8E8B8F4BFBF0C9EC - --- - -*`tls.client.hash.sha1`*:: -+ --- -Certificate fingerprint using the SHA1 digest of DER-encoded version of certificate offered by the client. For consistency with other hash values, this value should be formatted as an uppercase hash. - -type: keyword - -example: 9E393D93138888D288266C2D915214D1D1CCEB2A - --- - -*`tls.client.hash.sha256`*:: -+ --- -Certificate fingerprint using the SHA256 digest of DER-encoded version of certificate offered by the client. For consistency with other hash values, this value should be formatted as an uppercase hash. - -type: keyword - -example: 0687F666A054EF17A08E2F2162EAB4CBC0D265E1D7875BE74BF3C712CA92DAF0 - --- - -*`tls.client.issuer`*:: -+ --- -Distinguished name of subject of the issuer of the x.509 certificate presented by the client. - -type: keyword - -example: CN=Example Root CA, OU=Infrastructure Team, DC=example, DC=com - --- - -*`tls.client.ja3`*:: -+ --- -A hash that identifies clients based on how they perform an SSL/TLS handshake. - -type: keyword - -example: d4e5b18d6b55c71272893221c96ba240 - --- - -*`tls.client.not_after`*:: -+ --- -Date/Time indicating when client certificate is no longer considered valid. - -type: date - -example: 2021-01-01T00:00:00.000Z - --- - -*`tls.client.not_before`*:: -+ --- -Date/Time indicating when client certificate is first considered valid. - -type: date - -example: 1970-01-01T00:00:00.000Z - --- - -*`tls.client.server_name`*:: -+ --- -Also called an SNI, this tells the server which hostname to which the client is attempting to connect to. When this value is available, it should get copied to `destination.domain`. - -type: keyword - -example: www.elastic.co - --- - -*`tls.client.subject`*:: -+ --- -Distinguished name of subject of the x.509 certificate presented by the client. - -type: keyword - -example: CN=myclient, OU=Documentation Team, DC=example, DC=com - --- - -*`tls.client.supported_ciphers`*:: -+ --- -Array of ciphers offered by the client during the client hello. - -type: keyword - -example: ["TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", "..."] - --- - -*`tls.client.x509.alternative_names`*:: -+ --- -List of subject alternative names (SAN). Name types vary by certificate authority and certificate type but commonly contain IP addresses, DNS names (and wildcards), and email addresses. - -type: keyword - -example: *.elastic.co - --- - -*`tls.client.x509.issuer.common_name`*:: -+ --- -List of common name (CN) of issuing certificate authority. - -type: keyword - -example: Example SHA2 High Assurance Server CA - --- - -*`tls.client.x509.issuer.country`*:: -+ --- -List of country (C) codes - -type: keyword - -example: US - --- - -*`tls.client.x509.issuer.distinguished_name`*:: -+ --- -Distinguished name (DN) of issuing certificate authority. - -type: keyword - -example: C=US, O=Example Inc, OU=www.example.com, CN=Example SHA2 High Assurance Server CA - --- - -*`tls.client.x509.issuer.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: Mountain View - --- - -*`tls.client.x509.issuer.organization`*:: -+ --- -List of organizations (O) of issuing certificate authority. - -type: keyword - -example: Example Inc - --- - -*`tls.client.x509.issuer.organizational_unit`*:: -+ --- -List of organizational units (OU) of issuing certificate authority. - -type: keyword - -example: www.example.com - --- - -*`tls.client.x509.issuer.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`tls.client.x509.not_after`*:: -+ --- -Time at which the certificate is no longer considered valid. - -type: date - -example: 2020-07-16 03:15:39+00:00 - --- - -*`tls.client.x509.not_before`*:: -+ --- -Time at which the certificate is first considered valid. - -type: date - -example: 2019-08-16 01:40:25+00:00 - --- - -*`tls.client.x509.public_key_algorithm`*:: -+ --- -Algorithm used to generate the public key. - -type: keyword - -example: RSA - --- - -*`tls.client.x509.public_key_curve`*:: -+ --- -The curve used by the elliptic curve public key algorithm. This is algorithm specific. - -type: keyword - -example: nistp521 - --- - -*`tls.client.x509.public_key_exponent`*:: -+ --- -Exponent used to derive the public key. This is algorithm specific. - -type: long - -example: 65537 - -Field is not indexed. - --- - -*`tls.client.x509.public_key_size`*:: -+ --- -The size of the public key space in bits. - -type: long - -example: 2048 - --- - -*`tls.client.x509.serial_number`*:: -+ --- -Unique serial number issued by the certificate authority. For consistency, if this value is alphanumeric, it should be formatted without colons and uppercase characters. - -type: keyword - -example: 55FBB9C7DEBF09809D12CCAA - --- - -*`tls.client.x509.signature_algorithm`*:: -+ --- -Identifier for certificate signature algorithm. We recommend using names found in Go Lang Crypto library. See https://github.com/golang/go/blob/go1.14/src/crypto/x509/x509.go#L337-L353. - -type: keyword - -example: SHA256-RSA - --- - -*`tls.client.x509.subject.common_name`*:: -+ --- -List of common names (CN) of subject. - -type: keyword - -example: shared.global.example.net - --- - -*`tls.client.x509.subject.country`*:: -+ --- -List of country (C) code - -type: keyword - -example: US - --- - -*`tls.client.x509.subject.distinguished_name`*:: -+ --- -Distinguished name (DN) of the certificate subject entity. - -type: keyword - -example: C=US, ST=California, L=San Francisco, O=Example, Inc., CN=shared.global.example.net - --- - -*`tls.client.x509.subject.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: San Francisco - --- - -*`tls.client.x509.subject.organization`*:: -+ --- -List of organizations (O) of subject. - -type: keyword - -example: Example, Inc. - --- - -*`tls.client.x509.subject.organizational_unit`*:: -+ --- -List of organizational units (OU) of subject. - -type: keyword - --- - -*`tls.client.x509.subject.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`tls.client.x509.version_number`*:: -+ --- -Version of x509 format. - -type: keyword - -example: 3 - --- - -*`tls.curve`*:: -+ --- -String indicating the curve used for the given cipher, when applicable. - -type: keyword - -example: secp256r1 - --- - -*`tls.established`*:: -+ --- -Boolean flag indicating if the TLS negotiation was successful and transitioned to an encrypted tunnel. - -type: boolean - --- - -*`tls.next_protocol`*:: -+ --- -String indicating the protocol being tunneled. Per the values in the IANA registry (https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids), this string should be lower case. - -type: keyword - -example: http/1.1 - --- - -*`tls.resumed`*:: -+ --- -Boolean flag indicating if this TLS connection was resumed from an existing TLS negotiation. - -type: boolean - --- - -*`tls.server.certificate`*:: -+ --- -PEM-encoded stand-alone certificate offered by the server. This is usually mutually-exclusive of `server.certificate_chain` since this value also exists in that list. - -type: keyword - -example: MII... - --- - -*`tls.server.certificate_chain`*:: -+ --- -Array of PEM-encoded certificates that make up the certificate chain offered by the server. This is usually mutually-exclusive of `server.certificate` since that value should be the first certificate in the chain. - -type: keyword - -example: ["MII...", "MII..."] - --- - -*`tls.server.hash.md5`*:: -+ --- -Certificate fingerprint using the MD5 digest of DER-encoded version of certificate offered by the server. For consistency with other hash values, this value should be formatted as an uppercase hash. - -type: keyword - -example: 0F76C7F2C55BFD7D8E8B8F4BFBF0C9EC - --- - -*`tls.server.hash.sha1`*:: -+ --- -Certificate fingerprint using the SHA1 digest of DER-encoded version of certificate offered by the server. For consistency with other hash values, this value should be formatted as an uppercase hash. - -type: keyword - -example: 9E393D93138888D288266C2D915214D1D1CCEB2A - --- - -*`tls.server.hash.sha256`*:: -+ --- -Certificate fingerprint using the SHA256 digest of DER-encoded version of certificate offered by the server. For consistency with other hash values, this value should be formatted as an uppercase hash. - -type: keyword - -example: 0687F666A054EF17A08E2F2162EAB4CBC0D265E1D7875BE74BF3C712CA92DAF0 - --- - -*`tls.server.issuer`*:: -+ --- -Subject of the issuer of the x.509 certificate presented by the server. - -type: keyword - -example: CN=Example Root CA, OU=Infrastructure Team, DC=example, DC=com - --- - -*`tls.server.ja3s`*:: -+ --- -A hash that identifies servers based on how they perform an SSL/TLS handshake. - -type: keyword - -example: 394441ab65754e2207b1e1b457b3641d - --- - -*`tls.server.not_after`*:: -+ --- -Timestamp indicating when server certificate is no longer considered valid. - -type: date - -example: 2021-01-01T00:00:00.000Z - --- - -*`tls.server.not_before`*:: -+ --- -Timestamp indicating when server certificate is first considered valid. - -type: date - -example: 1970-01-01T00:00:00.000Z - --- - -*`tls.server.subject`*:: -+ --- -Subject of the x.509 certificate presented by the server. - -type: keyword - -example: CN=www.example.com, OU=Infrastructure Team, DC=example, DC=com - --- - -*`tls.server.x509.alternative_names`*:: -+ --- -List of subject alternative names (SAN). Name types vary by certificate authority and certificate type but commonly contain IP addresses, DNS names (and wildcards), and email addresses. - -type: keyword - -example: *.elastic.co - --- - -*`tls.server.x509.issuer.common_name`*:: -+ --- -List of common name (CN) of issuing certificate authority. - -type: keyword - -example: Example SHA2 High Assurance Server CA - --- - -*`tls.server.x509.issuer.country`*:: -+ --- -List of country (C) codes - -type: keyword - -example: US - --- - -*`tls.server.x509.issuer.distinguished_name`*:: -+ --- -Distinguished name (DN) of issuing certificate authority. - -type: keyword - -example: C=US, O=Example Inc, OU=www.example.com, CN=Example SHA2 High Assurance Server CA - --- - -*`tls.server.x509.issuer.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: Mountain View - --- - -*`tls.server.x509.issuer.organization`*:: -+ --- -List of organizations (O) of issuing certificate authority. - -type: keyword - -example: Example Inc - --- - -*`tls.server.x509.issuer.organizational_unit`*:: -+ --- -List of organizational units (OU) of issuing certificate authority. - -type: keyword - -example: www.example.com - --- - -*`tls.server.x509.issuer.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`tls.server.x509.not_after`*:: -+ --- -Time at which the certificate is no longer considered valid. - -type: date - -example: 2020-07-16 03:15:39+00:00 - --- - -*`tls.server.x509.not_before`*:: -+ --- -Time at which the certificate is first considered valid. - -type: date - -example: 2019-08-16 01:40:25+00:00 - --- - -*`tls.server.x509.public_key_algorithm`*:: -+ --- -Algorithm used to generate the public key. - -type: keyword - -example: RSA - --- - -*`tls.server.x509.public_key_curve`*:: -+ --- -The curve used by the elliptic curve public key algorithm. This is algorithm specific. - -type: keyword - -example: nistp521 - --- - -*`tls.server.x509.public_key_exponent`*:: -+ --- -Exponent used to derive the public key. This is algorithm specific. - -type: long - -example: 65537 - -Field is not indexed. - --- - -*`tls.server.x509.public_key_size`*:: -+ --- -The size of the public key space in bits. - -type: long - -example: 2048 - --- - -*`tls.server.x509.serial_number`*:: -+ --- -Unique serial number issued by the certificate authority. For consistency, if this value is alphanumeric, it should be formatted without colons and uppercase characters. - -type: keyword - -example: 55FBB9C7DEBF09809D12CCAA - --- - -*`tls.server.x509.signature_algorithm`*:: -+ --- -Identifier for certificate signature algorithm. We recommend using names found in Go Lang Crypto library. See https://github.com/golang/go/blob/go1.14/src/crypto/x509/x509.go#L337-L353. - -type: keyword - -example: SHA256-RSA - --- - -*`tls.server.x509.subject.common_name`*:: -+ --- -List of common names (CN) of subject. - -type: keyword - -example: shared.global.example.net - --- - -*`tls.server.x509.subject.country`*:: -+ --- -List of country (C) code - -type: keyword - -example: US - --- - -*`tls.server.x509.subject.distinguished_name`*:: -+ --- -Distinguished name (DN) of the certificate subject entity. - -type: keyword - -example: C=US, ST=California, L=San Francisco, O=Example, Inc., CN=shared.global.example.net - --- - -*`tls.server.x509.subject.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: San Francisco - --- - -*`tls.server.x509.subject.organization`*:: -+ --- -List of organizations (O) of subject. - -type: keyword - -example: Example, Inc. - --- - -*`tls.server.x509.subject.organizational_unit`*:: -+ --- -List of organizational units (OU) of subject. - -type: keyword - --- - -*`tls.server.x509.subject.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`tls.server.x509.version_number`*:: -+ --- -Version of x509 format. - -type: keyword - -example: 3 - --- - -*`tls.version`*:: -+ --- -Numeric part of the version parsed from the original string. - -type: keyword - -example: 1.2 - --- - -*`tls.version_protocol`*:: -+ --- -Normalized lowercase protocol name parsed from original string. - -type: keyword - -example: tls - --- - -*`span.id`*:: -+ --- -Unique identifier of the span within the scope of its trace. -A span represents an operation within a transaction, such as a request to another service, or a database query. - -type: keyword - -example: 3ff9a8981b7ccd5a - --- - -*`trace.id`*:: -+ --- -Unique identifier of the trace. -A trace groups multiple events like transactions that belong together. For example, a user request handled by multiple inter-connected services. - -type: keyword - -example: 4bf92f3577b34da6a3ce929d0e0e4736 - --- - -*`transaction.id`*:: -+ --- -Unique identifier of the transaction within the scope of its trace. -A transaction is the highest level of work measured within a service, such as a request to a server. - -type: keyword - -example: 00f067aa0ba902b7 - --- - -[float] -=== url - -URL fields provide support for complete or partial URLs, and supports the breaking down into scheme, domain, path, and so on. - - -*`url.domain`*:: -+ --- -Domain of the url, such as "www.elastic.co". -In some cases a URL may refer to an IP and/or port directly, without a domain name. In this case, the IP address would go to the `domain` field. -If the URL contains a literal IPv6 address enclosed by `[` and `]` (IETF RFC 2732), the `[` and `]` characters should also be captured in the `domain` field. - -type: keyword - -example: www.elastic.co - --- - -*`url.extension`*:: -+ --- -The field contains the file extension from the original request url, excluding the leading dot. -The file extension is only set if it exists, as not every url has a file extension. -The leading period must not be included. For example, the value must be "png", not ".png". -Note that when the file name has multiple extensions (example.tar.gz), only the last one should be captured ("gz", not "tar.gz"). - -type: keyword - -example: png - --- - -*`url.fragment`*:: -+ --- -Portion of the url after the `#`, such as "top". -The `#` is not part of the fragment. - -type: keyword - --- - -*`url.full`*:: -+ --- -If full URLs are important to your use case, they should be stored in `url.full`, whether this field is reconstructed or present in the event source. - -type: wildcard - -example: https://www.elastic.co:443/search?q=elasticsearch#top - --- - -*`url.full.text`*:: -+ --- -type: match_only_text - --- - -*`url.original`*:: -+ --- -Unmodified original url as seen in the event source. -Note that in network monitoring, the observed URL may be a full URL, whereas in access logs, the URL is often just represented as a path. -This field is meant to represent the URL as it was observed, complete or not. - -type: wildcard - -example: https://www.elastic.co:443/search?q=elasticsearch#top or /search?q=elasticsearch - --- - -*`url.original.text`*:: -+ --- -type: match_only_text - --- - -*`url.password`*:: -+ --- -Password of the request. - -type: keyword - --- - -*`url.path`*:: -+ --- -Path of the request, such as "/search". - -type: wildcard - --- - -*`url.port`*:: -+ --- -Port of the request, such as 443. - -type: long - -example: 443 - -format: string - --- - -*`url.query`*:: -+ --- -The query field describes the query string of the request, such as "q=elasticsearch". -The `?` is excluded from the query string. If a URL contains no `?`, there is no query field. If there is a `?` but no query, the query field exists with an empty string. The `exists` query can be used to differentiate between the two cases. - -type: keyword - --- - -*`url.registered_domain`*:: -+ --- -The highest registered url domain, stripped of the subdomain. -For example, the registered domain for "foo.example.com" is "example.com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last two labels will not work well for TLDs such as "co.uk". - -type: keyword - -example: example.com - --- - -*`url.scheme`*:: -+ --- -Scheme of the request, such as "https". -Note: The `:` is not part of the scheme. - -type: keyword - -example: https - --- - -*`url.subdomain`*:: -+ --- -The subdomain portion of a fully qualified domain name includes all of the names except the host name under the registered_domain. In a partially qualified domain, or if the the qualification level of the full name cannot be determined, subdomain contains all of the names below the registered domain. -For example the subdomain portion of "www.east.mydomain.co.uk" is "east". If the domain has multiple levels of subdomain, such as "sub2.sub1.example.com", the subdomain field should contain "sub2.sub1", with no trailing period. - -type: keyword - -example: east - --- - -*`url.top_level_domain`*:: -+ --- -The effective top level domain (eTLD), also known as the domain suffix, is the last part of the domain name. For example, the top level domain for example.com is "com". -This value can be determined precisely with a list like the public suffix list (http://publicsuffix.org). Trying to approximate this by simply taking the last label will not work well for effective TLDs such as "co.uk". - -type: keyword - -example: co.uk - --- - -*`url.username`*:: -+ --- -Username of the request. - -type: keyword - --- - -[float] -=== user - -The user fields describe information about the user that is relevant to the event. -Fields can have one entry or multiple entries. If a user has more than one id, provide an array that includes all of them. - - -*`user.changes.domain`*:: -+ --- -Name of the directory the user is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`user.changes.email`*:: -+ --- -User email address. - -type: keyword - --- - -*`user.changes.full_name`*:: -+ --- -User's full name, if available. - -type: keyword - -example: Albert Einstein - --- - -*`user.changes.full_name.text`*:: -+ --- -type: match_only_text - --- - -*`user.changes.group.domain`*:: -+ --- -Name of the directory the group is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`user.changes.group.id`*:: -+ --- -Unique identifier for the group on the system/platform. - -type: keyword - --- - -*`user.changes.group.name`*:: -+ --- -Name of the group. - -type: keyword - --- - -*`user.changes.hash`*:: -+ --- -Unique user hash to correlate information for a user in anonymized form. -Useful if `user.id` or `user.name` contain confidential information and cannot be used. - -type: keyword - --- - -*`user.changes.id`*:: -+ --- -Unique identifier of the user. - -type: keyword - -example: S-1-5-21-202424912787-2692429404-2351956786-1000 - --- - -*`user.changes.name`*:: -+ --- -Short name or login of the user. - -type: keyword - -example: a.einstein - --- - -*`user.changes.name.text`*:: -+ --- -type: match_only_text - --- - -*`user.changes.roles`*:: -+ --- -Array of user roles at the time of the event. - -type: keyword - -example: ["kibana_admin", "reporting_user"] - --- - -*`user.domain`*:: -+ --- -Name of the directory the user is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`user.effective.domain`*:: -+ --- -Name of the directory the user is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`user.effective.email`*:: -+ --- -User email address. - -type: keyword - --- - -*`user.effective.full_name`*:: -+ --- -User's full name, if available. - -type: keyword - -example: Albert Einstein - --- - -*`user.effective.full_name.text`*:: -+ --- -type: match_only_text - --- - -*`user.effective.group.domain`*:: -+ --- -Name of the directory the group is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`user.effective.group.id`*:: -+ --- -Unique identifier for the group on the system/platform. - -type: keyword - --- - -*`user.effective.group.name`*:: -+ --- -Name of the group. - -type: keyword - --- - -*`user.effective.hash`*:: -+ --- -Unique user hash to correlate information for a user in anonymized form. -Useful if `user.id` or `user.name` contain confidential information and cannot be used. - -type: keyword - --- - -*`user.effective.id`*:: -+ --- -Unique identifier of the user. - -type: keyword - -example: S-1-5-21-202424912787-2692429404-2351956786-1000 - --- - -*`user.effective.name`*:: -+ --- -Short name or login of the user. - -type: keyword - -example: a.einstein - --- - -*`user.effective.name.text`*:: -+ --- -type: match_only_text - --- - -*`user.effective.roles`*:: -+ --- -Array of user roles at the time of the event. - -type: keyword - -example: ["kibana_admin", "reporting_user"] - --- - -*`user.email`*:: -+ --- -User email address. - -type: keyword - --- - -*`user.full_name`*:: -+ --- -User's full name, if available. - -type: keyword - -example: Albert Einstein - --- - -*`user.full_name.text`*:: -+ --- -type: match_only_text - --- - -*`user.group.domain`*:: -+ --- -Name of the directory the group is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`user.group.id`*:: -+ --- -Unique identifier for the group on the system/platform. - -type: keyword - --- - -*`user.group.name`*:: -+ --- -Name of the group. - -type: keyword - --- - -*`user.hash`*:: -+ --- -Unique user hash to correlate information for a user in anonymized form. -Useful if `user.id` or `user.name` contain confidential information and cannot be used. - -type: keyword - --- - -*`user.id`*:: -+ --- -Unique identifier of the user. - -type: keyword - -example: S-1-5-21-202424912787-2692429404-2351956786-1000 - --- - -*`user.name`*:: -+ --- -Short name or login of the user. - -type: keyword - -example: a.einstein - --- - -*`user.name.text`*:: -+ --- -type: match_only_text - --- - -*`user.roles`*:: -+ --- -Array of user roles at the time of the event. - -type: keyword - -example: ["kibana_admin", "reporting_user"] - --- - -*`user.target.domain`*:: -+ --- -Name of the directory the user is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`user.target.email`*:: -+ --- -User email address. - -type: keyword - --- - -*`user.target.full_name`*:: -+ --- -User's full name, if available. - -type: keyword - -example: Albert Einstein - --- - -*`user.target.full_name.text`*:: -+ --- -type: match_only_text - --- - -*`user.target.group.domain`*:: -+ --- -Name of the directory the group is a member of. -For example, an LDAP or Active Directory domain name. - -type: keyword - --- - -*`user.target.group.id`*:: -+ --- -Unique identifier for the group on the system/platform. - -type: keyword - --- - -*`user.target.group.name`*:: -+ --- -Name of the group. - -type: keyword - --- - -*`user.target.hash`*:: -+ --- -Unique user hash to correlate information for a user in anonymized form. -Useful if `user.id` or `user.name` contain confidential information and cannot be used. - -type: keyword - --- - -*`user.target.id`*:: -+ --- -Unique identifier of the user. - -type: keyword - -example: S-1-5-21-202424912787-2692429404-2351956786-1000 - --- - -*`user.target.name`*:: -+ --- -Short name or login of the user. - -type: keyword - -example: a.einstein - --- - -*`user.target.name.text`*:: -+ --- -type: match_only_text - --- - -*`user.target.roles`*:: -+ --- -Array of user roles at the time of the event. - -type: keyword - -example: ["kibana_admin", "reporting_user"] - --- - -[float] -=== user_agent - -The user_agent fields normally come from a browser request. -They often show up in web service logs coming from the parsed user agent string. - - -*`user_agent.device.name`*:: -+ --- -Name of the device. - -type: keyword - -example: iPhone - --- - -*`user_agent.name`*:: -+ --- -Name of the user agent. - -type: keyword - -example: Safari - --- - -*`user_agent.original`*:: -+ --- -Unparsed user_agent string. - -type: keyword - -example: Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1 - --- - -*`user_agent.original.text`*:: -+ --- -type: match_only_text - --- - -*`user_agent.os.family`*:: -+ --- -OS family (such as redhat, debian, freebsd, windows). - -type: keyword - -example: debian - --- - -*`user_agent.os.full`*:: -+ --- -Operating system name, including the version or code name. - -type: keyword - -example: Mac OS Mojave - --- - -*`user_agent.os.full.text`*:: -+ --- -type: match_only_text - --- - -*`user_agent.os.kernel`*:: -+ --- -Operating system kernel version as a raw string. - -type: keyword - -example: 4.4.0-112-generic - --- - -*`user_agent.os.name`*:: -+ --- -Operating system name, without the version. - -type: keyword - -example: Mac OS X - --- - -*`user_agent.os.name.text`*:: -+ --- -type: match_only_text - --- - -*`user_agent.os.platform`*:: -+ --- -Operating system platform (such centos, ubuntu, windows). - -type: keyword - -example: darwin - --- - -*`user_agent.os.type`*:: -+ --- -Use the `os.type` field to categorize the operating system into one of the broad commercial families. -One of these following values should be used (lowercase): linux, macos, unix, windows. -If the OS you're dealing with is not in the list, the field should not be populated. Please let us know by opening an issue with ECS, to propose its addition. - -type: keyword - -example: macos - --- - -*`user_agent.os.version`*:: -+ --- -Operating system version as a raw string. - -type: keyword - -example: 10.14.1 - --- - -*`user_agent.version`*:: -+ --- -Version of the user agent. - -type: keyword - -example: 12.0 - --- - -[float] -=== vlan - -The VLAN fields are used to identify 802.1q tag(s) of a packet, as well as ingress and egress VLAN associations of an observer in relation to a specific packet or connection. -Network.vlan fields are used to record a single VLAN tag, or the outer tag in the case of q-in-q encapsulations, for a packet or connection as observed, typically provided by a network sensor (e.g. Zeek, Wireshark) passively reporting on traffic. -Network.inner VLAN fields are used to report inner q-in-q 802.1q tags (multiple 802.1q encapsulations) as observed, typically provided by a network sensor (e.g. Zeek, Wireshark) passively reporting on traffic. Network.inner VLAN fields should only be used in addition to network.vlan fields to indicate q-in-q tagging. -Observer.ingress and observer.egress VLAN values are used to record observer specific information when observer events contain discrete ingress and egress VLAN information, typically provided by firewalls, routers, or load balancers. - - -*`vlan.id`*:: -+ --- -VLAN ID as reported by the observer. - -type: keyword - -example: 10 - --- - -*`vlan.name`*:: -+ --- -Optional VLAN name as reported by the observer. - -type: keyword - -example: outside - --- - -[float] -=== vulnerability - -The vulnerability fields describe information about a vulnerability that is relevant to an event. - - -*`vulnerability.category`*:: -+ --- -The type of system or architecture that the vulnerability affects. These may be platform-specific (for example, Debian or SUSE) or general (for example, Database or Firewall). For example (https://qualysguard.qualys.com/qwebhelp/fo_portal/knowledgebase/vulnerability_categories.htm[Qualys vulnerability categories]) -This field must be an array. - -type: keyword - -example: ["Firewall"] - --- - -*`vulnerability.classification`*:: -+ --- -The classification of the vulnerability scoring system. For example (https://www.first.org/cvss/) - -type: keyword - -example: CVSS - --- - -*`vulnerability.description`*:: -+ --- -The description of the vulnerability that provides additional context of the vulnerability. For example (https://cve.mitre.org/about/faqs.html#cve_entry_descriptions_created[Common Vulnerabilities and Exposure CVE description]) - -type: keyword - -example: In macOS before 2.12.6, there is a vulnerability in the RPC... - --- - -*`vulnerability.description.text`*:: -+ --- -type: match_only_text - --- - -*`vulnerability.enumeration`*:: -+ --- -The type of identifier used for this vulnerability. For example (https://cve.mitre.org/about/) - -type: keyword - -example: CVE - --- - -*`vulnerability.id`*:: -+ --- -The identification (ID) is the number portion of a vulnerability entry. It includes a unique identification number for the vulnerability. For example (https://cve.mitre.org/about/faqs.html#what_is_cve_id)[Common Vulnerabilities and Exposure CVE ID] - -type: keyword - -example: CVE-2019-00001 - --- - -*`vulnerability.reference`*:: -+ --- -A resource that provides additional information, context, and mitigations for the identified vulnerability. - -type: keyword - -example: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-6111 - --- - -*`vulnerability.report_id`*:: -+ --- -The report or scan identification number. - -type: keyword - -example: 20191018.0001 - --- - -*`vulnerability.scanner.vendor`*:: -+ --- -The name of the vulnerability scanner vendor. - -type: keyword - -example: Tenable - --- - -*`vulnerability.score.base`*:: -+ --- -Scores can range from 0.0 to 10.0, with 10.0 being the most severe. -Base scores cover an assessment for exploitability metrics (attack vector, complexity, privileges, and user interaction), impact metrics (confidentiality, integrity, and availability), and scope. For example (https://www.first.org/cvss/specification-document) - -type: float - -example: 5.5 - --- - -*`vulnerability.score.environmental`*:: -+ --- -Scores can range from 0.0 to 10.0, with 10.0 being the most severe. -Environmental scores cover an assessment for any modified Base metrics, confidentiality, integrity, and availability requirements. For example (https://www.first.org/cvss/specification-document) - -type: float - -example: 5.5 - --- - -*`vulnerability.score.temporal`*:: -+ --- -Scores can range from 0.0 to 10.0, with 10.0 being the most severe. -Temporal scores cover an assessment for code maturity, remediation level, and confidence. For example (https://www.first.org/cvss/specification-document) - -type: float - --- - -*`vulnerability.score.version`*:: -+ --- -The National Vulnerability Database (NVD) provides qualitative severity rankings of "Low", "Medium", and "High" for CVSS v2.0 base score ranges in addition to the severity ratings for CVSS v3.0 as they are defined in the CVSS v3.0 specification. -CVSS is owned and managed by FIRST.Org, Inc. (FIRST), a US-based non-profit organization, whose mission is to help computer security incident response teams across the world. For example (https://nvd.nist.gov/vuln-metrics/cvss) - -type: keyword - -example: 2.0 - --- - -*`vulnerability.severity`*:: -+ --- -The severity of the vulnerability can help with metrics and internal prioritization regarding remediation. For example (https://nvd.nist.gov/vuln-metrics/cvss) - -type: keyword - -example: Critical - --- - -[float] -=== x509 - -This implements the common core fields for x509 certificates. This information is likely logged with TLS sessions, digital signatures found in executable binaries, S/MIME information in email bodies, or analysis of files on disk. -When the certificate relates to a file, use the fields at `file.x509`. When hashes of the DER-encoded certificate are available, the `hash` data set should be populated as well (e.g. `file.hash.sha256`). -Events that contain certificate information about network connections, should use the x509 fields under the relevant TLS fields: `tls.server.x509` and/or `tls.client.x509`. - - -*`x509.alternative_names`*:: -+ --- -List of subject alternative names (SAN). Name types vary by certificate authority and certificate type but commonly contain IP addresses, DNS names (and wildcards), and email addresses. - -type: keyword - -example: *.elastic.co - --- - -*`x509.issuer.common_name`*:: -+ --- -List of common name (CN) of issuing certificate authority. - -type: keyword - -example: Example SHA2 High Assurance Server CA - --- - -*`x509.issuer.country`*:: -+ --- -List of country (C) codes - -type: keyword - -example: US - --- - -*`x509.issuer.distinguished_name`*:: -+ --- -Distinguished name (DN) of issuing certificate authority. - -type: keyword - -example: C=US, O=Example Inc, OU=www.example.com, CN=Example SHA2 High Assurance Server CA - --- - -*`x509.issuer.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: Mountain View - --- - -*`x509.issuer.organization`*:: -+ --- -List of organizations (O) of issuing certificate authority. - -type: keyword - -example: Example Inc - --- - -*`x509.issuer.organizational_unit`*:: -+ --- -List of organizational units (OU) of issuing certificate authority. - -type: keyword - -example: www.example.com - --- - -*`x509.issuer.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`x509.not_after`*:: -+ --- -Time at which the certificate is no longer considered valid. - -type: date - -example: 2020-07-16 03:15:39+00:00 - --- - -*`x509.not_before`*:: -+ --- -Time at which the certificate is first considered valid. - -type: date - -example: 2019-08-16 01:40:25+00:00 - --- - -*`x509.public_key_algorithm`*:: -+ --- -Algorithm used to generate the public key. - -type: keyword - -example: RSA - --- - -*`x509.public_key_curve`*:: -+ --- -The curve used by the elliptic curve public key algorithm. This is algorithm specific. - -type: keyword - -example: nistp521 - --- - -*`x509.public_key_exponent`*:: -+ --- -Exponent used to derive the public key. This is algorithm specific. - -type: long - -example: 65537 - -Field is not indexed. - --- - -*`x509.public_key_size`*:: -+ --- -The size of the public key space in bits. - -type: long - -example: 2048 - --- - -*`x509.serial_number`*:: -+ --- -Unique serial number issued by the certificate authority. For consistency, if this value is alphanumeric, it should be formatted without colons and uppercase characters. - -type: keyword - -example: 55FBB9C7DEBF09809D12CCAA - --- - -*`x509.signature_algorithm`*:: -+ --- -Identifier for certificate signature algorithm. We recommend using names found in Go Lang Crypto library. See https://github.com/golang/go/blob/go1.14/src/crypto/x509/x509.go#L337-L353. - -type: keyword - -example: SHA256-RSA - --- - -*`x509.subject.common_name`*:: -+ --- -List of common names (CN) of subject. - -type: keyword - -example: shared.global.example.net - --- - -*`x509.subject.country`*:: -+ --- -List of country (C) code - -type: keyword - -example: US - --- - -*`x509.subject.distinguished_name`*:: -+ --- -Distinguished name (DN) of the certificate subject entity. - -type: keyword - -example: C=US, ST=California, L=San Francisco, O=Example, Inc., CN=shared.global.example.net - --- - -*`x509.subject.locality`*:: -+ --- -List of locality names (L) - -type: keyword - -example: San Francisco - --- - -*`x509.subject.organization`*:: -+ --- -List of organizations (O) of subject. - -type: keyword - -example: Example, Inc. - --- - -*`x509.subject.organizational_unit`*:: -+ --- -List of organizational units (OU) of subject. - -type: keyword - --- - -*`x509.subject.state_or_province`*:: -+ --- -List of state or province names (ST, S, or P) - -type: keyword - -example: California - --- - -*`x509.version_number`*:: -+ --- -Version of x509 format. - -type: keyword - -example: 3 - --- - -[[exported-fields-host-processor]] -== Host fields - -Info collected for the host machine. - - - - -*`host.containerized`*:: -+ --- -If the host is a container. - - -type: boolean - --- - -*`host.os.build`*:: -+ --- -OS build information. - - -type: keyword - -example: 18D109 - --- - -*`host.os.codename`*:: -+ --- -OS codename, if any. - - -type: keyword - -example: stretch - --- - -[[exported-fields-jolokia-autodiscover]] -== Jolokia Discovery autodiscover provider fields - -Metadata from Jolokia Discovery added by the jolokia provider. - - - -*`jolokia.agent.version`*:: -+ --- -Version number of jolokia agent. - - -type: keyword - --- - -*`jolokia.agent.id`*:: -+ --- -Each agent has a unique id which can be either provided during startup of the agent in form of a configuration parameter or being autodetected. If autodected, the id has several parts: The IP, the process id, hashcode of the agent and its type. - - -type: keyword - --- - -*`jolokia.server.product`*:: -+ --- -The container product if detected. - - -type: keyword - --- - -*`jolokia.server.version`*:: -+ --- -The container's version (if detected). - - -type: keyword - --- - -*`jolokia.server.vendor`*:: -+ --- -The vendor of the container the agent is running in. - - -type: keyword - --- - -*`jolokia.url`*:: -+ --- -The URL how this agent can be contacted. - - -type: keyword - --- - -*`jolokia.secured`*:: -+ --- -Whether the agent was configured for authentication or not. - - -type: boolean - --- - -[[exported-fields-kubernetes-processor]] -== Kubernetes fields - -Kubernetes metadata added by the kubernetes processor - - - - -*`kubernetes.pod.name`*:: -+ --- -Kubernetes pod name - - -type: keyword - --- - -*`kubernetes.pod.uid`*:: -+ --- -Kubernetes Pod UID - - -type: keyword - --- - -*`kubernetes.pod.ip`*:: -+ --- -Kubernetes Pod IP - - -type: ip - --- - -*`kubernetes.namespace`*:: -+ --- -Kubernetes namespace - - -type: keyword - --- - -*`kubernetes.node.name`*:: -+ --- -Kubernetes node name - - -type: keyword - --- - -*`kubernetes.node.hostname`*:: -+ --- -Kubernetes hostname as reported by the node’s kernel - - -type: keyword - --- - -*`kubernetes.labels.*`*:: -+ --- -Kubernetes labels map - - -type: object - --- - -*`kubernetes.annotations.*`*:: -+ --- -Kubernetes annotations map - - -type: object - --- - -*`kubernetes.selectors.*`*:: -+ --- -Kubernetes selectors map - - -type: object - --- - -*`kubernetes.replicaset.name`*:: -+ --- -Kubernetes replicaset name - - -type: keyword - --- - -*`kubernetes.deployment.name`*:: -+ --- -Kubernetes deployment name - - -type: keyword - --- - -*`kubernetes.statefulset.name`*:: -+ --- -Kubernetes statefulset name - - -type: keyword - --- - -*`kubernetes.container.name`*:: -+ --- -Kubernetes container name (different than the name from the runtime) - - -type: keyword - --- - -[[exported-fields-process]] -== Process fields - -Process metadata fields - - - - -*`process.exe`*:: -+ --- -type: alias - -alias to: process.executable - --- - -[float] -=== owner - -Process owner information. - - -*`process.owner.id`*:: -+ --- -Unique identifier of the user. - -type: keyword - --- - -*`process.owner.name`*:: -+ --- -Short name or login of the user. - -type: keyword - -example: albert - --- - -*`process.owner.name.text`*:: -+ --- -type: text - --- - diff --git a/journalbeat/docs/filtering.asciidoc b/journalbeat/docs/filtering.asciidoc deleted file mode 100644 index 5bfcdd53254..00000000000 --- a/journalbeat/docs/filtering.asciidoc +++ /dev/null @@ -1,36 +0,0 @@ -[[filtering-and-enhancing-data]] -== Filter and enhance data with processors - -++++ -Processors -++++ - -Your use case might require only a subset of the data exported by {beatname_uc}, -or you might need to enhance the exported data (for example, by adding -metadata). {beatname_uc} provides a couple of options for filtering and -enhancing exported data. - -You can configure {beatname_uc} to include events that match specific filtering -criteria. To do this, use the <> -option. The advantage of this approach is that you can reduce the number of -fields that {beatname_uc} needs to process. - -Another approach (the one described here) is to define processors to configure -global processing across all data exported by {beatname_uc}. - - -[float] -[[using-processors]] -=== Processors - -include::{libbeat-dir}/processors.asciidoc[] - -// You must set the processor-scope attribute to resolve the attribute reference -// defined in processors-using.asciidoc. The attribute is used to indicate where -// processors are valid. If processors are valid in more than two locations -// (root and :processor-scope:), you need to add a conditionally coded section -// to processors-using.asciidoc. - -:processor-scope: input -include::{libbeat-dir}/processors-using.asciidoc[] -:processor-scope!: diff --git a/journalbeat/docs/general-options.asciidoc b/journalbeat/docs/general-options.asciidoc deleted file mode 100644 index 32c39676bfe..00000000000 --- a/journalbeat/docs/general-options.asciidoc +++ /dev/null @@ -1,64 +0,0 @@ -[[configuration-general-options]] -== Configure general settings - -++++ -General settings -++++ - -You can specify settings in the +{beatname_lc}.yml+ config file to control the -general behavior of {beatname_uc}. This includes: - -* <> that control things like -publisher behavior and the location of some files. - -* <> that are supported by all Elastic -Beats. - -[float] -[[configuration-global-options]] -=== Global {beatname_uc} configuration options - -These options are in the +{beatname_lc}+ namespace. - -[float] -[id="{beatname_lc}-registry-file"] -==== `registry_file` - -The name of the registry file. If a relative path is used, it is considered relative to the -data path. See the <> section for details. The default is `${path.data}/registry`. - -["source","sh",subs="attributes"] ----- -{beatname_lc}.registry_file: registry ----- - -[float] -==== `backoff` deprecated:[5.6.1,Use the option under `paths` instead.] - -This option is valid as a global setting under the +{beatname_lc}+ namespace -or under `paths`. For a description of this option, see -<<{beatname_lc}-backoff,`backoff`>>. - -[float] -==== `max_backoff` deprecated:[5.6.1,Use the option under `paths` instead.] - -This option is valid as a global setting under the +{beatname_lc}+ namespace -or under `paths`. For a description of this option, see -<<{beatname_lc}-max-backoff,`max_backoff`>>. - -[float] -==== `seek` deprecated:[5.6.1,Use the option under `paths` instead.] - -This option is valid as a global setting under the +{beatname_lc}+ namespace -or under `paths`. For a description of this option, see -<>. - -[float] -==== `include_matches` deprecated:[5.6.1,Use the option under `paths` instead.] - -This option is valid as a global setting under the +{beatname_lc}+ namespace -or under `paths`. For a description of this option, see -<>. - -include::{libbeat-dir}/generalconfig.asciidoc[] - diff --git a/journalbeat/docs/getting-started.asciidoc b/journalbeat/docs/getting-started.asciidoc deleted file mode 100644 index 75da26ee141..00000000000 --- a/journalbeat/docs/getting-started.asciidoc +++ /dev/null @@ -1,175 +0,0 @@ -[id="{beatname_lc}-installation-configuration"] -== {beatname_uc} quick start: installation and configuration - -++++ -Quick start: installation and configuration -++++ - -This guide describes how to get started quickly with log data collection from -systemd journals. You'll learn how to: - -* install {beatname_uc} on each system you want to monitor -* specify the location of your log files -* parse log data into fields and send it to {es} -* visualize the log data in {kib} - -[float] -=== Before you begin - -You need {es} for storing and searching your data, and {kib} for visualizing and -managing it. - -include::{libbeat-dir}/tab-widgets/spinup-stack-widget.asciidoc[] - -[float] -[[install]] -=== Step 1: Install {beatname_uc} - -Install {beatname_uc} on all the servers you want to monitor. - -To download and install {beatname_uc}, use the commands that work with your -system: - -include::{libbeat-dir}/tab-widgets/install-deb-rpm-linux-widget.asciidoc[] - -[float] -[[other-installation-options]] -==== Other installation options - -* <> -* https://www.elastic.co/downloads/beats/{beatname_lc}[Download page] -* <> - -[float] -[[set-connection]] -=== Step 2: Connect to the {stack} - -include::{libbeat-dir}/shared/connecting-to-es.asciidoc[] - - -[float] -[[configuration]] -=== Step 3: Configure {beatname_uc} - -Before running {beatname_uc}, specify the location of the systemd journal files -and configure how you want the files to be read. If you accept the default -configuration, {beatname_uc} reads from the local journal. - -. In +{beatname_lc}.yml+, specify a list of paths to your systemd journal files. -Each path can be a directory path (to collect events from all journals in a -directory), or a file path. For example: -+ -["source","sh",subs="attributes"] ----- -{beatname_lc}.inputs: -- paths: - - "/dev/log" - - "/var/log/messages/my-journal-file.journal" - seek: head ----- -+ -If no paths are specified, {beatname_uc} reads from the default journal. - -. Set the <> option to control the position where -{beatname_uc} starts reading the journal. The available options are `head`, -`tail`, and `cursor`. The default is `cursor`, which means that on first read, -{beatname_uc} starts reading at the beginning of the file, but continues reading -at the last known position after a reload or restart. For more detail about -the settings, see the reference docs for the -<>. - -. (Optional) Set the <> option -to filter entries in journald before collecting any log events. This reduces the -number of events that {beatname_uc} needs to process. For example, to fetch only -Redis events from a Docker container tagged as `redis`, use: -+ -["source","sh",subs="attributes"] ----- -{beatname_lc}.inputs: -- paths: [] - include_matches: - - "CONTAINER_TAG=redis" - - "_COMM=redis" ----- - -include::{libbeat-dir}/shared/config-check.asciidoc[] - -[float] -[[setup-assets]] -=== Step 4: Set up assets - -{beatname_uc} comes with predefined assets for parsing, indexing, and -visualizing your data. To load these assets: - -. Make sure the user specified in +{beatname_lc}.yml+ is -<>. - -. From the installation directory, run: -+ --- -include::{libbeat-dir}/tab-widgets/setup-deb-rpm-linux-widget.asciidoc[] --- -+ -`-e` is optional and sends output to standard error instead of the configured log output. - -This step loads the recommended {ref}/index-templates.html[index template] for writing to {es}. - -[TIP] -===== -A connection to {es} (or {ess}) is required to set up the initial -environment. If you're using a different output, such as {ls}, see -<>. -===== - -[float] -[[start]] -=== Step 5: Start {beatname_uc} - -Before starting {beatname_uc}, modify the user credentials in -+{beatname_lc}.yml+ and specify a user who is -<>. - -To start {beatname_uc}, run: - -// tag::start-step[] -include::{libbeat-dir}/tab-widgets/start-deb-rpm-linux-widget.asciidoc[] -// end::start-step[] - -{beatname_uc} is now ready to send journal events to the {es}. - -[float] -[[view-data]] -=== Step 6: View your data in {kib} - -There is currently no dashboard available for {beatname_uc}. To start exploring -your data, go to the Discover app in {kib}. From there, you can submit search -queries, filter the search results, and view document data. - -To learn how to build visualizations and dashboards to view your data, see the -_{kibana-ref}/index.html[{kib} User Guide]_. - - -[float] -=== What's next? - -Now that you have your logs streaming into {es}, learn how to unify your logs, -metrics, uptime, and application performance data. - -include::{libbeat-dir}/shared/obs-apps.asciidoc[] - -[TIP] -==== -The {logs-app} shows logs from `filebeat-*` indices by default. To show -{beatname_uc} indices, configure the source to include `journalbeat-*`. You can -do this in the {logs-app} when you configure the source, or you can modify the {kib} -configuration. For -example: - -[source,yaml] ----- -xpack.infra: - sources: - default: - logAlias: "filebeat-*,journalbeat-*" ----- -==== diff --git a/journalbeat/docs/howto/howto.asciidoc b/journalbeat/docs/howto/howto.asciidoc deleted file mode 100644 index 14a26a59c1a..00000000000 --- a/journalbeat/docs/howto/howto.asciidoc +++ /dev/null @@ -1,35 +0,0 @@ -[[howto-guides]] -= How to guides - -[partintro] --- -Learn how to perform common {beatname_uc} configuration tasks. - -* <<{beatname_lc}-template>> -* <> -* <<{beatname_lc}-geoip>> -* <> -* <> -* <> - - --- - -include::{libbeat-dir}/howto/load-index-templates.asciidoc[] - -include::{libbeat-dir}/howto/change-index-name.asciidoc[] - -include::{libbeat-dir}/shared-geoip.asciidoc[] - -:standalone: -include::{libbeat-dir}/shared-env-vars.asciidoc[] -:standalone!: - -include::{libbeat-dir}/shared-config-ingest.asciidoc[] - -:standalone: -include::{libbeat-dir}/yaml.asciidoc[] -:standalone!: - - - diff --git a/journalbeat/docs/images/coordinate-map.png b/journalbeat/docs/images/coordinate-map.png deleted file mode 100644 index 8ac69fe747cfda15ef0eddcf617e18914409b970..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 370029 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

VC(~Wk}*sj{oYoO>%PA;~k!E#ln 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�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�Y)=cFN$-E4 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͜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 mfguYFSzyQlLly{F;Qs+MHH%8#Dv;>_0000( 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

-^jh4b!|u; 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 diff --git a/journalbeat/docs/index.asciidoc b/journalbeat/docs/index.asciidoc deleted file mode 100644 index 4ace63c41fc..00000000000 --- a/journalbeat/docs/index.asciidoc +++ /dev/null @@ -1,47 +0,0 @@ -= Journalbeat Reference - -:libbeat-dir: {docdir}/../../libbeat/docs - -include::{libbeat-dir}/version.asciidoc[] - -include::{asciidoc-dir}/../../shared/versions/stack/{source_branch}.asciidoc[] - -include::{asciidoc-dir}/../../shared/attributes.asciidoc[] - -:beatname_lc: journalbeat -:beatname_uc: Journalbeat -:beatname_pkg: {beatname_lc} -:github_repo_name: beats -:discuss_forum: beats/{beatname_lc} -:beat_default_index_prefix: {beatname_lc} -:beat_kib_app: {kib} Logs -:deb_os: -:rpm_os: -:linux_os: -:docker_platform: -:no_dashboards: -:no_decode_cef_processor: - -include::{libbeat-dir}/shared-beats-attributes.asciidoc[] - -include::./overview.asciidoc[] - -include::./getting-started.asciidoc[] - -include::./setting-up-running.asciidoc[] - -include::./configuring-howto.asciidoc[] - -include::{docdir}/howto/howto.asciidoc[] - -include::./fields.asciidoc[] - -include::{libbeat-dir}/monitoring/monitoring-beats.asciidoc[] - -include::{libbeat-dir}/shared-securing-beat.asciidoc[] - -include::./troubleshooting.asciidoc[] - -include::./faq.asciidoc[] - - diff --git a/journalbeat/docs/overview.asciidoc b/journalbeat/docs/overview.asciidoc deleted file mode 100644 index 645aa87ca48..00000000000 --- a/journalbeat/docs/overview.asciidoc +++ /dev/null @@ -1,11 +0,0 @@ -[id="{beatname_lc}-overview"] -== {beatname_uc} overview - -{beatname_uc} is a lightweight shipper for forwarding and centralizing log data -from https://www.freedesktop.org/software/systemd/man/systemd-journald.service.html[systemd journals]. -Installed as an agent on your servers, {beatname_uc} monitors the journal -locations that you specify, collects log events, and forwards them to either to -https://www.elastic.co/products/elasticsearch[Elasticsearch] or -https://www.elastic.co/products/logstash[Logstash]. - -include::{libbeat-dir}/shared-libbeat-description.asciidoc[] diff --git a/journalbeat/docs/page_header.html b/journalbeat/docs/page_header.html deleted file mode 100644 index 0f01f3bfad5..00000000000 --- a/journalbeat/docs/page_header.html +++ /dev/null @@ -1,4 +0,0 @@ -This functionality is experimental and may be changed or removed completely in a -future release. Elastic will take a best effort approach to fix any issues, but -experimental features are not subject to the support SLA of official GA -features. \ No newline at end of file diff --git a/journalbeat/docs/running-on-docker.asciidoc b/journalbeat/docs/running-on-docker.asciidoc deleted file mode 100644 index dbfcce5b489..00000000000 --- a/journalbeat/docs/running-on-docker.asciidoc +++ /dev/null @@ -1 +0,0 @@ -include::{libbeat-dir}/shared-docker.asciidoc[] diff --git a/journalbeat/docs/setting-up-running.asciidoc b/journalbeat/docs/setting-up-running.asciidoc deleted file mode 100644 index ef95d59b8ff..00000000000 --- a/journalbeat/docs/setting-up-running.asciidoc +++ /dev/null @@ -1,47 +0,0 @@ -///// -// NOTE: -// Each beat has its own setup overview to allow for the addition of content -// that is unique to each beat. -///// - -[[setting-up-and-running]] -== Set up and run {beatname_uc} - -++++ -Set up and run -++++ - -Before reading this section, see -<<{beatname_lc}-installation-configuration>> for basic -installation instructions to get you started. - -This section includes additional information on how to install, set up, and run -{beatname_uc}, including: - -* <> -* <> -* <> -* <> -* <> -* <> -* <<{beatname_lc}-starting>> -* <> - - -//MAINTAINERS: If you add a new file to this section, make sure you update the bulleted list ^^ too. - -include::{libbeat-dir}/shared-directory-layout.asciidoc[] - -include::{libbeat-dir}/keystore.asciidoc[] - -include::{libbeat-dir}/command-reference.asciidoc[] - -include::{libbeat-dir}/repositories.asciidoc[] - -include::./running-on-docker.asciidoc[] - -include::{libbeat-dir}/shared-systemd.asciidoc[] - -include::{libbeat-dir}/shared/start-beat.asciidoc[] - -include::{libbeat-dir}/shared/shutdown.asciidoc[] diff --git a/journalbeat/docs/troubleshooting.asciidoc b/journalbeat/docs/troubleshooting.asciidoc deleted file mode 100644 index b32d1b5fca2..00000000000 --- a/journalbeat/docs/troubleshooting.asciidoc +++ /dev/null @@ -1,31 +0,0 @@ -[[troubleshooting]] -= Troubleshoot - -[partintro] --- - -If you have issues installing or running {beatname_uc}, read the -following tips: - -* <> -* <> -* <> - -//sets block macro for getting-help.asciidoc included in next section - --- - -[[getting-help]] -== Get help - -include::{libbeat-dir}/getting-help.asciidoc[] - -//sets block macro for debugging.asciidoc included in next section - -[id="enable-{beatname_lc}-debugging"] -== Debug - -include::{libbeat-dir}/debugging.asciidoc[] - - - diff --git a/journalbeat/include/fields.go b/journalbeat/include/fields.go deleted file mode 100644 index 0e063a35e4e..00000000000 --- a/journalbeat/include/fields.go +++ /dev/null @@ -1,36 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -// Code generated by beats/dev-tools/cmd/asset/asset.go - DO NOT EDIT. - -package include - -import ( - "github.com/elastic/beats/v7/libbeat/asset" -) - -func init() { - if err := asset.SetFields("journalbeat", "fields.yml", asset.BeatFieldsPri, AssetFieldsYml); err != nil { - panic(err) - } -} - -// AssetFieldsYml returns asset data. -// This is the base64 encoded zlib format compressed contents of fields.yml. -func AssetFieldsYml() string { - return "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" -} diff --git a/journalbeat/input/config.go b/journalbeat/input/config.go deleted file mode 100644 index 6c202030b35..00000000000 --- a/journalbeat/input/config.go +++ /dev/null @@ -1,67 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package input - -import ( - "time" - - "github.com/elastic/beats/v7/journalbeat/pkg/journalfield" - "github.com/elastic/beats/v7/journalbeat/pkg/journalread" - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/common/fmtstr" - "github.com/elastic/beats/v7/libbeat/processors" -) - -// Config stores the options of an input. -type Config struct { - // Unique ID of the input for state persistence purposes. - ID string `config:"id"` - // Paths stores the paths to the journal files to be read. - Paths []string `config:"paths"` - // Backoff is the current interval to wait before - // attemting to read again from the journal. - Backoff time.Duration `config:"backoff" validate:"min=0,nonzero"` - // MaxBackoff is the limit of the backoff time. - MaxBackoff time.Duration `config:"max_backoff" validate:"min=0,nonzero"` - // Seek is the method to read from journals. - Seek journalread.SeekMode `config:"seek"` - // CursorSeekFallback sets where to seek if registry file is not available. - CursorSeekFallback journalread.SeekMode `config:"cursor_seek_fallback"` - // Matches store the key value pairs to match entries. - Matches []journalfield.Matcher `config:"include_matches"` - // SaveRemoteHostname defines if the original source of the entry needs to be saved. - SaveRemoteHostname bool `config:"save_remote_hostname"` - - // Fields and tags to add to events. - common.EventMetadata `config:",inline"` - // Processors to run on events. - Processors processors.PluginConfig `config:"processors"` - // ES output index pattern - Index fmtstr.EventFormatString `config:"index"` -} - -var ( - // DefaultConfig is the defaults for an inputs - DefaultConfig = Config{ - Backoff: 1 * time.Second, - MaxBackoff: 20 * time.Second, - Seek: journalread.SeekCursor, - CursorSeekFallback: journalread.SeekHead, - SaveRemoteHostname: false, - } -) diff --git a/journalbeat/input/input.go b/journalbeat/input/input.go deleted file mode 100644 index f1238d61c81..00000000000 --- a/journalbeat/input/input.go +++ /dev/null @@ -1,274 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package input - -import ( - "context" - "fmt" - "strings" - "sync" - "syscall" - "time" - - "github.com/elastic/beats/v7/libbeat/processors/add_formatted_index" - "github.com/elastic/go-concert/timed" - - "github.com/elastic/beats/v7/libbeat/common/acker" - "github.com/elastic/beats/v7/libbeat/common/atomic" - "github.com/elastic/beats/v7/libbeat/common/fmtstr" - - "github.com/elastic/beats/v7/journalbeat/checkpoint" - "github.com/elastic/beats/v7/journalbeat/reader" - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/libbeat/processors" -) - -// Input manages readers and forwards entries from journals. -type Input struct { - readers []*reader.Reader - done chan struct{} - config Config - client beat.Client - states map[string]checkpoint.JournalState - logger *logp.Logger - eventMeta common.EventMetadata - processors beat.ProcessorList -} - -// New returns a new Inout -func New( - c *common.Config, - info beat.Info, - done chan struct{}, - states map[string]checkpoint.JournalState, -) (*Input, error) { - config := DefaultConfig - if err := c.Unpack(&config); err != nil { - return nil, err - } - - logger := logp.NewLogger("input") - if config.ID != "" { - logger = logger.With("id", config.ID) - } - - var readers []*reader.Reader - if len(config.Paths) == 0 { - cfg := reader.Config{ - Path: reader.LocalSystemJournalID, // used to identify the state in the registry - Backoff: config.Backoff, - MaxBackoff: config.MaxBackoff, - Seek: config.Seek, - CursorSeekFallback: config.CursorSeekFallback, - Matches: config.Matches, - SaveRemoteHostname: config.SaveRemoteHostname, - CheckpointID: checkpointID(config.ID, reader.LocalSystemJournalID), - } - - state := states[cfg.CheckpointID] - r, err := reader.NewLocal(cfg, done, state, logger) - if err != nil { - return nil, fmt.Errorf("error creating reader for local journal: %+v", err) - } - readers = append(readers, r) - } - - for _, p := range config.Paths { - cfg := reader.Config{ - Path: p, - Backoff: config.Backoff, - MaxBackoff: config.MaxBackoff, - Seek: config.Seek, - CursorSeekFallback: config.CursorSeekFallback, - Matches: config.Matches, - SaveRemoteHostname: config.SaveRemoteHostname, - CheckpointID: checkpointID(config.ID, p), - } - - state := states[cfg.CheckpointID] - r, err := reader.New(cfg, done, state, logger) - if err != nil { - return nil, fmt.Errorf("error creating reader for journal: %+v", err) - } - readers = append(readers, r) - } - - inputProcessors, err := processorsForInput(info, config) - if err != nil { - return nil, err - } - - logger.Debugf("New input is created for paths %v", config.Paths) - - return &Input{ - readers: readers, - done: done, - config: config, - states: states, - logger: logger, - eventMeta: config.EventMetadata, - processors: inputProcessors, - }, nil -} - -// Run connects to the output, collects entries from the readers -// and then publishes the events. -func (i *Input) Run(pipeline beat.Pipeline) { - var err error - i.client, err = pipeline.ConnectWith(beat.ClientConfig{ - PublishMode: beat.GuaranteedSend, - Processing: beat.ProcessingConfig{ - EventMetadata: i.eventMeta, - Meta: nil, - Processor: i.processors, - }, - ACKHandler: acker.Counting(func(n int) { - i.logger.Debugw("journalbeat successfully published events", "event.count", n) - }), - }) - if err != nil { - i.logger.Error("Error connecting to output: %v", err) - return - } - - i.publishAll() -} - -// publishAll reads events from all readers and publishes them. -func (i *Input) publishAll() { - out := make(chan *beat.Event) - defer close(out) - - var wg sync.WaitGroup - defer wg.Wait() - for _, r := range i.readers { - wg.Add(1) - r := r - go func() { - defer wg.Done() - - suppressed := atomic.NewBool(false) - ctx, cancel := context.WithCancel(context.Background()) - defer cancel() - - for { - select { - case <-i.done: - return - default: - } - - event, err := r.Next() - if event == nil { - if err != nil { - if i.isErrSuppressed(ctx, err, suppressed) { - i.logger.Debugf("Error message suppressed: EBADMSG") - continue - } - i.logger.Errorf("Error while reading event: %v", err) - } - continue - } - - select { - case <-i.done: - case out <- event: - } - } - }() - } - - for { - select { - case <-i.done: - return - case e := <-out: - i.client.Publish(*e) - } - } -} - -// isErrSuppressed checks if the error is due to a corrupt journal. If yes, only the first error message -// is displayed and then it is suppressed for 5 seconds. -func (i *Input) isErrSuppressed(ctx context.Context, err error, suppressed *atomic.Bool) bool { - if strings.Contains(err.Error(), syscall.EBADMSG.Error()) { - if suppressed.Load() { - return true - } - - suppressed.Store(true) - go func(ctx context.Context, suppressed *atomic.Bool) { - if err := timed.Wait(ctx, 5*time.Second); err == nil { - suppressed.Store(false) - } - - }(ctx, suppressed) - } - - return false -} - -// Stop stops all readers of the input. -func (i *Input) Stop() { - for _, r := range i.readers { - r.Close() - } - i.client.Close() -} - -// Wait waits until all readers are done. -func (i *Input) Wait() { - i.Stop() -} - -func processorsForInput(beatInfo beat.Info, config Config) (*processors.Processors, error) { - procs := processors.NewList(nil) - - // Processor ordering is important: - // 1. Index configuration - if !config.Index.IsEmpty() { - staticFields := fmtstr.FieldsForBeat(beatInfo.Beat, beatInfo.Version) - timestampFormat, err := - fmtstr.NewTimestampFormatString(&config.Index, staticFields) - if err != nil { - return nil, err - } - indexProcessor := add_formatted_index.New(timestampFormat) - procs.AddProcessor(indexProcessor) - } - - // 2. User processors - userProcessors, err := processors.New(config.Processors) - if err != nil { - return nil, err - } - procs.AddProcessors(*userProcessors) - - return procs, nil -} - -// checkpointID returns the identifier used to track persistent state for the -// input. -func checkpointID(id, path string) string { - if id == "" { - return path - } - return "journald::" + path + "::" + id -} diff --git a/journalbeat/input/input_test.go b/journalbeat/input/input_test.go deleted file mode 100644 index eb925f1ef0b..00000000000 --- a/journalbeat/input/input_test.go +++ /dev/null @@ -1,167 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package input - -import ( - "fmt" - "testing" - "time" - - "github.com/stretchr/testify/assert" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/beat/events" - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/processors" - _ "github.com/elastic/beats/v7/libbeat/processors/actions" -) - -func TestProcessorsForInput(t *testing.T) { - testCases := map[string]struct { - beatInfo beat.Info - configStr string - event beat.Event - expectedFields map[string]string - }{ - "Simple static index": { - configStr: "index: 'test'", - expectedFields: map[string]string{ - "@metadata.raw_index": "test", - }, - }, - "Index with agent info + timestamp": { - beatInfo: beat.Info{Beat: "TestBeat", Version: "3.9.27"}, - configStr: "index: 'beat-%{[agent.name]}-%{[agent.version]}-%{+yyyy.MM.dd}'", - event: beat.Event{Timestamp: time.Date(1999, time.December, 31, 23, 0, 0, 0, time.UTC)}, - expectedFields: map[string]string{ - "@metadata.raw_index": "beat-TestBeat-3.9.27-1999.12.31", - }, - }, - "Set field in input config": { - configStr: `processors: [add_fields: {fields: {testField: inputConfig}}]`, - expectedFields: map[string]string{ - "fields.testField": "inputConfig", - }, - }, - } - for description, test := range testCases { - t.Run(description, func(t *testing.T) { - if test.event.Fields == nil { - test.event.Fields = common.MapStr{} - } - config, err := inputConfigFromString(test.configStr) - if err != nil { - t.Errorf("[%s] %v", description, err) - return - } - processors, err := processorsForInput(test.beatInfo, config) - if err != nil { - t.Errorf("[%s] %v", description, err) - return - } - processedEvent, err := processors.Run(&test.event) - // We don't check if err != nil, because we are testing the final outcome - // of running the processors, including when some of them fail. - if processedEvent == nil { - t.Errorf("[%s] Unexpected fatal error running processors: %v\n", - description, err) - } - for key, value := range test.expectedFields { - field, err := processedEvent.GetValue(key) - if err != nil { - t.Errorf("[%s] Couldn't get field %s from event: %v", description, key, err) - return - } - assert.Equal(t, field, value) - fieldStr, ok := field.(string) - if !ok { - // Note that requiring a string here is just to simplify the test setup, - // not a requirement of the underlying api. - t.Errorf("[%s] Field [%s] should be a string", description, key) - return - } - if fieldStr != value { - t.Errorf("[%s] Event field [%s]: expected [%s], got [%s]", description, key, value, fieldStr) - } - } - }) - } -} - -func TestProcessorsForInputIsFlat(t *testing.T) { - // This test is regrettable, and exists because of inconsistencies in - // processor handling between processors.Processors and processing.group - // (which implements beat.ProcessorList) -- see processorsForConfig for - // details. The upshot is that, for now, if the input configuration specifies - // processors, they must be returned as direct children of the resulting - // processors.Processors (rather than being collected in additional tree - // structure). - // This test should be removed once we have a more consistent mechanism for - // collecting and running processors. - configStr := `processors: -- add_fields: {fields: {testField: value}} -- add_fields: {fields: {testField2: stuff}}` - config, err := inputConfigFromString(configStr) - if err != nil { - t.Fatal(err) - } - processors, err := processorsForInput( - beat.Info{}, config) - if err != nil { - t.Fatal(err) - } - assert.Equal(t, 2, len(processors.List)) -} - -// setRawIndex is a bare-bones processor to set the raw_index field to a -// constant string in the event metadata. It is used to test order of operations -// for processorsForConfig. -type setRawIndex struct { - indexStr string -} - -func (p *setRawIndex) Run(event *beat.Event) (*beat.Event, error) { - if event.Meta == nil { - event.Meta = common.MapStr{} - } - event.Meta[events.FieldMetaRawIndex] = p.indexStr - return event, nil -} - -func (p *setRawIndex) String() string { - return fmt.Sprintf("set_raw_index=%v", p.indexStr) -} - -// Helper function to convert from YML input string to an unpacked -// Config -func inputConfigFromString(s string) (Config, error) { - config := DefaultConfig - cfg, err := common.NewConfigFrom(s) - if err != nil { - return config, err - } - err = cfg.Unpack(&config) - return config, err -} - -// makeProcessors wraps one or more bare Processor objects in Processors. -func makeProcessors(procs ...processors.Processor) *processors.Processors { - procList := processors.NewList(nil) - procList.List = procs - return procList -} diff --git a/journalbeat/journalbeat.docker.yml b/journalbeat/journalbeat.docker.yml deleted file mode 100644 index 643eea808b8..00000000000 --- a/journalbeat/journalbeat.docker.yml +++ /dev/null @@ -1,12 +0,0 @@ -journalbeat.inputs: -- paths: [] - seek: cursor - -processors: - - add_cloud_metadata: ~ - - add_docker_metadata: ~ - -output.elasticsearch: - hosts: '${ELASTICSEARCH_HOSTS:elasticsearch:9200}' - username: '${ELASTICSEARCH_USERNAME:}' - password: '${ELASTICSEARCH_PASSWORD:}' diff --git a/journalbeat/journalbeat.reference.yml b/journalbeat/journalbeat.reference.yml deleted file mode 100644 index 19692cfec94..00000000000 --- a/journalbeat/journalbeat.reference.yml +++ /dev/null @@ -1,1561 +0,0 @@ -###################### Journalbeat Configuration Example ######################### - -# This file is an example configuration file highlighting only the most common -# options. The journalbeat.reference.yml file from the same directory contains all the -# supported options with more comments. You can use it as a reference. -# -# You can find the full configuration reference here: -# https://www.elastic.co/guide/en/beats/journalbeat/index.html - -# For more available modules and options, please see the journalbeat.reference.yml sample -# configuration file. - -# ============================= Journalbeat inputs ============================= - -journalbeat.inputs: - # Paths that should be crawled and fetched. Possible values files and directories. - # When setting a directory, all journals under it are merged. - # When empty starts to read from local journal. -- paths: [] - - # An optional unique identifier for the input. By providing a unique `id` you - # can operate multiple inputs on the same journal. This allows each input's - # cursor to be persisted independently in the registry file. - #id: "" - - # The number of seconds to wait before trying to read again from journals. - #backoff: 1s - # The maximum number of seconds to wait before attempting to read again from journals. - #max_backoff: 20s - - # Position to start reading from journal. Valid values: head, tail, cursor - seek: cursor - # Fallback position if no cursor data is available. - #cursor_seek_fallback: head - - # Exact matching for field values of events. - # Matching for nginx entries: "systemd.unit=nginx" - #include_matches: [] - - # Set the option to preserve the remote hostname in entries from a remote journal. - # It is only needed when used with add_host_metadata, so the original host name - # does not get overwritten by the processor. - #save_remote_hostname: false - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - -# ========================= Journalbeat global options ========================= -#journalbeat: - # Name of the registry file. If a relative path is used, it is considered relative to the - # data path. - #registry_file: registry - -# ======================= Elasticsearch template setting ======================= -setup.template.settings: - index.number_of_shards: 1 - #index.codec: best_compression - #_source.enabled: false - -# ================================== General =================================== - -# The name of the shipper that publishes the network data. It can be used to group -# all the transactions sent by a single shipper in the web interface. -# If this options is not defined, the hostname is used. -#name: - -# The tags of the shipper are included in their own field with each -# transaction published. Tags make it easy to group servers by different -# logical properties. -#tags: ["service-X", "web-tier"] - -# Optional fields that you can specify to add additional information to the -# output. Fields can be scalar values, arrays, dictionaries, or any nested -# combination of these. -#fields: -# env: staging - -# If this option is set to true, the custom fields are stored as top-level -# fields in the output document instead of being grouped under a fields -# sub-dictionary. Default is false. -#fields_under_root: false - -# Internal queue configuration for buffering events to be published. -#queue: - # Queue type by name (default 'mem') - # The memory queue will present all available events (up to the outputs - # bulk_max_size) to the output, the moment the output is ready to server - # another batch of events. - #mem: - # Max number of events the queue can buffer. - #events: 4096 - - # Hints the minimum number of events stored in the queue, - # before providing a batch of events to the outputs. - # The default value is set to 2048. - # A value of 0 ensures events are immediately available - # to be sent to the outputs. - #flush.min_events: 2048 - - # Maximum duration after which events are available to the outputs, - # if the number of events stored in the queue is < `flush.min_events`. - #flush.timeout: 1s - - # The disk queue stores incoming events on disk until the output is - # ready for them. This allows a higher event limit than the memory-only - # queue and lets pending events persist through a restart. - #disk: - # The directory path to store the queue's data. - #path: "${path.data}/diskqueue" - - # The maximum space the queue should occupy on disk. Depending on - # input settings, events that exceed this limit are delayed or discarded. - #max_size: 10GB - - # The maximum size of a single queue data file. Data in the queue is - # stored in smaller segments that are deleted after all their events - # have been processed. - #segment_size: 1GB - - # The number of events to read from disk to memory while waiting for - # the output to request them. - #read_ahead: 512 - - # The number of events to accept from inputs while waiting for them - # to be written to disk. If event data arrives faster than it - # can be written to disk, this setting prevents it from overflowing - # main memory. - #write_ahead: 2048 - - # The duration to wait before retrying when the queue encounters a disk - # write error. - #retry_interval: 1s - - # The maximum length of time to wait before retrying on a disk write - # error. If the queue encounters repeated errors, it will double the - # length of its retry interval each time, up to this maximum. - #max_retry_interval: 30s - -# Sets the maximum number of CPUs that can be executing simultaneously. The -# default is the number of logical CPUs available in the system. -#max_procs: - -# ================================= Processors ================================= - -# Processors are used to reduce the number of fields in the exported event or to -# enhance the event with external metadata. This section defines a list of -# processors that are applied one by one and the first one receives the initial -# event: -# -# event -> filter1 -> event1 -> filter2 ->event2 ... -# -# The supported processors are drop_fields, drop_event, include_fields, -# decode_json_fields, and add_cloud_metadata. -# -# For example, you can use the following processors to keep the fields that -# contain CPU load percentages, but remove the fields that contain CPU ticks -# values: -# -#processors: -# - include_fields: -# fields: ["cpu"] -# - drop_fields: -# fields: ["cpu.user", "cpu.system"] -# -# The following example drops the events that have the HTTP response code 200: -# -#processors: -# - drop_event: -# when: -# equals: -# http.code: 200 -# -# The following example renames the field a to b: -# -#processors: -# - rename: -# fields: -# - from: "a" -# to: "b" -# -# The following example tokenizes the string into fields: -# -#processors: -# - dissect: -# tokenizer: "%{key1} - %{key2}" -# field: "message" -# target_prefix: "dissect" -# -# The following example enriches each event with metadata from the cloud -# provider about the host machine. It works on EC2, GCE, DigitalOcean, -# Tencent Cloud, and Alibaba Cloud. -# -#processors: -# - add_cloud_metadata: ~ -# -# The following example enriches each event with the machine's local time zone -# offset from UTC. -# -#processors: -# - add_locale: -# format: offset -# -# The following example enriches each event with docker metadata, it matches -# given fields to an existing container id and adds info from that container: -# -#processors: -# - add_docker_metadata: -# host: "unix:///var/run/docker.sock" -# match_fields: ["system.process.cgroup.id"] -# match_pids: ["process.pid", "process.parent.pid"] -# match_source: true -# match_source_index: 4 -# match_short_id: false -# cleanup_timeout: 60 -# labels.dedot: false -# # To connect to Docker over TLS you must specify a client and CA certificate. -# #ssl: -# # certificate_authority: "/etc/pki/root/ca.pem" -# # certificate: "/etc/pki/client/cert.pem" -# # key: "/etc/pki/client/cert.key" -# -# The following example enriches each event with docker metadata, it matches -# container id from log path available in `source` field (by default it expects -# it to be /var/lib/docker/containers/*/*.log). -# -#processors: -# - add_docker_metadata: ~ -# -# The following example enriches each event with host metadata. -# -#processors: -# - add_host_metadata: ~ -# -# The following example enriches each event with process metadata using -# process IDs included in the event. -# -#processors: -# - add_process_metadata: -# match_pids: ["system.process.ppid"] -# target: system.process.parent -# -# The following example decodes fields containing JSON strings -# and replaces the strings with valid JSON objects. -# -#processors: -# - decode_json_fields: -# fields: ["field1", "field2", ...] -# process_array: false -# max_depth: 1 -# target: "" -# overwrite_keys: false -# -#processors: -# - decompress_gzip_field: -# from: "field1" -# to: "field2" -# ignore_missing: false -# fail_on_error: true -# -# The following example copies the value of message to message_copied -# -#processors: -# - copy_fields: -# fields: -# - from: message -# to: message_copied -# fail_on_error: true -# ignore_missing: false -# -# The following example truncates the value of message to 1024 bytes -# -#processors: -# - truncate_fields: -# fields: -# - message -# max_bytes: 1024 -# fail_on_error: false -# ignore_missing: true -# -# The following example preserves the raw message under event.original -# -#processors: -# - copy_fields: -# fields: -# - from: message -# to: event.original -# fail_on_error: false -# ignore_missing: true -# - truncate_fields: -# fields: -# - event.original -# max_bytes: 1024 -# fail_on_error: false -# ignore_missing: true -# -# The following example URL-decodes the value of field1 to field2 -# -#processors: -# - urldecode: -# fields: -# - from: "field1" -# to: "field2" -# ignore_missing: false -# fail_on_error: true - -# =============================== Elastic Cloud ================================ - -# These settings simplify using Journalbeat with the Elastic Cloud (https://cloud.elastic.co/). - -# The cloud.id setting overwrites the `output.elasticsearch.hosts` and -# `setup.kibana.host` options. -# You can find the `cloud.id` in the Elastic Cloud web UI. -#cloud.id: - -# The cloud.auth setting overwrites the `output.elasticsearch.username` and -# `output.elasticsearch.password` settings. The format is `:`. -#cloud.auth: - -# ================================== Outputs =================================== - -# Configure what output to use when sending the data collected by the beat. - -# ---------------------------- Elasticsearch Output ---------------------------- -output.elasticsearch: - # Boolean flag to enable or disable the output module. - #enabled: true - - # Array of hosts to connect to. - # Scheme and port can be left out and will be set to the default (http and 9200) - # In case you specify and additional path, the scheme is required: http://localhost:9200/path - # IPv6 addresses should always be defined as: https://[2001:db8::1]:9200 - hosts: ["localhost:9200"] - - # Set gzip compression level. - #compression_level: 0 - - # Configure escaping HTML symbols in strings. - #escape_html: false - - # Protocol - either `http` (default) or `https`. - #protocol: "https" - - # Authentication credentials - either API key or username/password. - #api_key: "id:api_key" - #username: "elastic" - #password: "changeme" - - # Dictionary of HTTP parameters to pass within the URL with index operations. - #parameters: - #param1: value1 - #param2: value2 - - # Number of workers per Elasticsearch host. - #worker: 1 - - # Optional index name. The default is "journalbeat" plus date - # and generates [journalbeat-]YYYY.MM.DD keys. - # In case you modify this pattern you must update setup.template.name and setup.template.pattern accordingly. - #index: "journalbeat-%{[agent.version]}-%{+yyyy.MM.dd}" - - # Optional ingest pipeline. By default no pipeline will be used. - #pipeline: "" - - # Optional HTTP path - #path: "/elasticsearch" - - # Custom HTTP headers to add to each request - #headers: - # X-My-Header: Contents of the header - - # Proxy server URL - #proxy_url: http://proxy:3128 - - # Whether to disable proxy settings for outgoing connections. If true, this - # takes precedence over both the proxy_url field and any environment settings - # (HTTP_PROXY, HTTPS_PROXY). The default is false. - #proxy_disable: false - - # The number of times a particular Elasticsearch index operation is attempted. If - # the indexing operation doesn't succeed after this many retries, the events are - # dropped. The default is 3. - #max_retries: 3 - - # The maximum number of events to bulk in a single Elasticsearch bulk API index request. - # The default is 50. - #bulk_max_size: 50 - - # The number of seconds to wait before trying to reconnect to Elasticsearch - # after a network error. After waiting backoff.init seconds, the Beat - # tries to reconnect. If the attempt fails, the backoff timer is increased - # exponentially up to backoff.max. After a successful connection, the backoff - # timer is reset. The default is 1s. - #backoff.init: 1s - - # The maximum number of seconds to wait before attempting to connect to - # Elasticsearch after a network error. The default is 60s. - #backoff.max: 60s - - # Configure HTTP request timeout before failing a request to Elasticsearch. - #timeout: 90 - - # Use SSL settings for HTTPS. - #ssl.enabled: true - - # Controls the verification of certificates. Valid values are: - # * full, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. - # * strict, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. If the Subject Alternative - # Name is empty, it returns an error. - # * certificate, which verifies that the provided certificate is signed by a - # trusted authority (CA), but does not perform any hostname verification. - # * none, which performs no verification of the server's certificate. This - # mode disables many of the security benefits of SSL/TLS and should only be used - # after very careful consideration. It is primarily intended as a temporary - # diagnostic mechanism when attempting to resolve TLS errors; its use in - # production environments is strongly discouraged. - # The default value is full. - #ssl.verification_mode: full - - # List of supported/valid TLS versions. By default all TLS versions from 1.1 - # up to 1.3 are enabled. - #ssl.supported_protocols: [TLSv1.1, TLSv1.2, TLSv1.3] - - # List of root certificates for HTTPS server verifications - #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] - - # Certificate for SSL client authentication - #ssl.certificate: "/etc/pki/client/cert.pem" - - # Client certificate key - #ssl.key: "/etc/pki/client/cert.key" - - # Optional passphrase for decrypting the certificate key. - #ssl.key_passphrase: '' - - # Configure cipher suites to be used for SSL connections - #ssl.cipher_suites: [] - - # Configure curve types for ECDHE-based cipher suites - #ssl.curve_types: [] - - # Configure what types of renegotiation are supported. Valid options are - # never, once, and freely. Default is never. - #ssl.renegotiation: never - - # Configure a pin that can be used to do extra validation of the verified certificate chain, - # this allow you to ensure that a specific certificate is used to validate the chain of trust. - # - # The pin is a base64 encoded string of the SHA-256 fingerprint. - #ssl.ca_sha256: "" - - # Enable Kerberos support. Kerberos is automatically enabled if any Kerberos setting is set. - #kerberos.enabled: true - - # Authentication type to use with Kerberos. Available options: keytab, password. - #kerberos.auth_type: password - - # Path to the keytab file. It is used when auth_type is set to keytab. - #kerberos.keytab: /etc/elastic.keytab - - # Path to the Kerberos configuration. - #kerberos.config_path: /etc/krb5.conf - - # Name of the Kerberos user. - #kerberos.username: elastic - - # Password of the Kerberos user. It is used when auth_type is set to password. - #kerberos.password: changeme - - # Kerberos realm. - #kerberos.realm: ELASTIC - - -# ------------------------------ Logstash Output ------------------------------- -#output.logstash: - # Boolean flag to enable or disable the output module. - #enabled: true - - # The Logstash hosts - #hosts: ["localhost:5044"] - - # Number of workers per Logstash host. - #worker: 1 - - # Set gzip compression level. - #compression_level: 3 - - # Configure escaping HTML symbols in strings. - #escape_html: false - - # Optional maximum time to live for a connection to Logstash, after which the - # connection will be re-established. A value of `0s` (the default) will - # disable this feature. - # - # Not yet supported for async connections (i.e. with the "pipelining" option set) - #ttl: 30s - - # Optionally load-balance events between Logstash hosts. Default is false. - #loadbalance: false - - # Number of batches to be sent asynchronously to Logstash while processing - # new batches. - #pipelining: 2 - - # If enabled only a subset of events in a batch of events is transferred per - # transaction. The number of events to be sent increases up to `bulk_max_size` - # if no error is encountered. - #slow_start: false - - # The number of seconds to wait before trying to reconnect to Logstash - # after a network error. After waiting backoff.init seconds, the Beat - # tries to reconnect. If the attempt fails, the backoff timer is increased - # exponentially up to backoff.max. After a successful connection, the backoff - # timer is reset. The default is 1s. - #backoff.init: 1s - - # The maximum number of seconds to wait before attempting to connect to - # Logstash after a network error. The default is 60s. - #backoff.max: 60s - - # Optional index name. The default index name is set to journalbeat - # in all lowercase. - #index: 'journalbeat' - - # SOCKS5 proxy server URL - #proxy_url: socks5://user:password@socks5-server:2233 - - # Resolve names locally when using a proxy server. Defaults to false. - #proxy_use_local_resolver: false - - # Use SSL settings for HTTPS. - #ssl.enabled: true - - # Controls the verification of certificates. Valid values are: - # * full, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. - # * strict, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. If the Subject Alternative - # Name is empty, it returns an error. - # * certificate, which verifies that the provided certificate is signed by a - # trusted authority (CA), but does not perform any hostname verification. - # * none, which performs no verification of the server's certificate. This - # mode disables many of the security benefits of SSL/TLS and should only be used - # after very careful consideration. It is primarily intended as a temporary - # diagnostic mechanism when attempting to resolve TLS errors; its use in - # production environments is strongly discouraged. - # The default value is full. - #ssl.verification_mode: full - - # List of supported/valid TLS versions. By default all TLS versions from 1.1 - # up to 1.3 are enabled. - #ssl.supported_protocols: [TLSv1.1, TLSv1.2, TLSv1.3] - - # List of root certificates for HTTPS server verifications - #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] - - # Certificate for SSL client authentication - #ssl.certificate: "/etc/pki/client/cert.pem" - - # Client certificate key - #ssl.key: "/etc/pki/client/cert.key" - - # Optional passphrase for decrypting the certificate key. - #ssl.key_passphrase: '' - - # Configure cipher suites to be used for SSL connections - #ssl.cipher_suites: [] - - # Configure curve types for ECDHE-based cipher suites - #ssl.curve_types: [] - - # Configure what types of renegotiation are supported. Valid options are - # never, once, and freely. Default is never. - #ssl.renegotiation: never - - # Configure a pin that can be used to do extra validation of the verified certificate chain, - # this allow you to ensure that a specific certificate is used to validate the chain of trust. - # - # The pin is a base64 encoded string of the SHA-256 fingerprint. - #ssl.ca_sha256: "" - - # The number of times to retry publishing an event after a publishing failure. - # After the specified number of retries, the events are typically dropped. - # Some Beats, such as Filebeat and Winlogbeat, ignore the max_retries setting - # and retry until all events are published. Set max_retries to a value less - # than 0 to retry until all events are published. The default is 3. - #max_retries: 3 - - # The maximum number of events to bulk in a single Logstash request. The - # default is 2048. - #bulk_max_size: 2048 - - # The number of seconds to wait for responses from the Logstash server before - # timing out. The default is 30s. - #timeout: 30s - -# -------------------------------- Kafka Output -------------------------------- -#output.kafka: - # Boolean flag to enable or disable the output module. - #enabled: true - - # The list of Kafka broker addresses from which to fetch the cluster metadata. - # The cluster metadata contain the actual Kafka brokers events are published - # to. - #hosts: ["localhost:9092"] - - # The Kafka topic used for produced events. The setting can be a format string - # using any event field. To set the topic from document type use `%{[type]}`. - #topic: beats - - # The Kafka event key setting. Use format string to create a unique event key. - # By default no event key will be generated. - #key: '' - - # The Kafka event partitioning strategy. Default hashing strategy is `hash` - # using the `output.kafka.key` setting or randomly distributes events if - # `output.kafka.key` is not configured. - #partition.hash: - # If enabled, events will only be published to partitions with reachable - # leaders. Default is false. - #reachable_only: false - - # Configure alternative event field names used to compute the hash value. - # If empty `output.kafka.key` setting will be used. - # Default value is empty list. - #hash: [] - - # Authentication details. Password is required if username is set. - #username: '' - #password: '' - - # SASL authentication mechanism used. Can be one of PLAIN, SCRAM-SHA-256 or SCRAM-SHA-512. - # Defaults to PLAIN when `username` and `password` are configured. - #sasl.mechanism: '' - - # Kafka version Journalbeat is assumed to run against. Defaults to the "1.0.0". - #version: '1.0.0' - - # Configure JSON encoding - #codec.json: - # Pretty-print JSON event - #pretty: false - - # Configure escaping HTML symbols in strings. - #escape_html: false - - # Metadata update configuration. Metadata contains leader information - # used to decide which broker to use when publishing. - #metadata: - # Max metadata request retry attempts when cluster is in middle of leader - # election. Defaults to 3 retries. - #retry.max: 3 - - # Wait time between retries during leader elections. Default is 250ms. - #retry.backoff: 250ms - - # Refresh metadata interval. Defaults to every 10 minutes. - #refresh_frequency: 10m - - # Strategy for fetching the topics metadata from the broker. Default is false. - #full: false - - # The number of concurrent load-balanced Kafka output workers. - #worker: 1 - - # The number of times to retry publishing an event after a publishing failure. - # After the specified number of retries, events are typically dropped. - # Some Beats, such as Filebeat, ignore the max_retries setting and retry until - # all events are published. Set max_retries to a value less than 0 to retry - # until all events are published. The default is 3. - #max_retries: 3 - - # The number of seconds to wait before trying to republish to Kafka - # after a network error. After waiting backoff.init seconds, the Beat - # tries to republish. If the attempt fails, the backoff timer is increased - # exponentially up to backoff.max. After a successful publish, the backoff - # timer is reset. The default is 1s. - #backoff.init: 1s - - # The maximum number of seconds to wait before attempting to republish to - # Kafka after a network error. The default is 60s. - #backoff.max: 60s - - # The maximum number of events to bulk in a single Kafka request. The default - # is 2048. - #bulk_max_size: 2048 - - # Duration to wait before sending bulk Kafka request. 0 is no delay. The default - # is 0. - #bulk_flush_frequency: 0s - - # The number of seconds to wait for responses from the Kafka brokers before - # timing out. The default is 30s. - #timeout: 30s - - # The maximum duration a broker will wait for number of required ACKs. The - # default is 10s. - #broker_timeout: 10s - - # The number of messages buffered for each Kafka broker. The default is 256. - #channel_buffer_size: 256 - - # The keep-alive period for an active network connection. If 0s, keep-alives - # are disabled. The default is 0 seconds. - #keep_alive: 0 - - # Sets the output compression codec. Must be one of none, snappy and gzip. The - # default is gzip. - #compression: gzip - - # Set the compression level. Currently only gzip provides a compression level - # between 0 and 9. The default value is chosen by the compression algorithm. - #compression_level: 4 - - # The maximum permitted size of JSON-encoded messages. Bigger messages will be - # dropped. The default value is 1000000 (bytes). This value should be equal to - # or less than the broker's message.max.bytes. - #max_message_bytes: 1000000 - - # The ACK reliability level required from broker. 0=no response, 1=wait for - # local commit, -1=wait for all replicas to commit. The default is 1. Note: - # If set to 0, no ACKs are returned by Kafka. Messages might be lost silently - # on error. - #required_acks: 1 - - # The configurable ClientID used for logging, debugging, and auditing - # purposes. The default is "beats". - #client_id: beats - - # Use SSL settings for HTTPS. - #ssl.enabled: true - - # Controls the verification of certificates. Valid values are: - # * full, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. - # * strict, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. If the Subject Alternative - # Name is empty, it returns an error. - # * certificate, which verifies that the provided certificate is signed by a - # trusted authority (CA), but does not perform any hostname verification. - # * none, which performs no verification of the server's certificate. This - # mode disables many of the security benefits of SSL/TLS and should only be used - # after very careful consideration. It is primarily intended as a temporary - # diagnostic mechanism when attempting to resolve TLS errors; its use in - # production environments is strongly discouraged. - # The default value is full. - #ssl.verification_mode: full - - # List of supported/valid TLS versions. By default all TLS versions from 1.1 - # up to 1.3 are enabled. - #ssl.supported_protocols: [TLSv1.1, TLSv1.2, TLSv1.3] - - # List of root certificates for HTTPS server verifications - #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] - - # Certificate for SSL client authentication - #ssl.certificate: "/etc/pki/client/cert.pem" - - # Client certificate key - #ssl.key: "/etc/pki/client/cert.key" - - # Optional passphrase for decrypting the certificate key. - #ssl.key_passphrase: '' - - # Configure cipher suites to be used for SSL connections - #ssl.cipher_suites: [] - - # Configure curve types for ECDHE-based cipher suites - #ssl.curve_types: [] - - # Configure what types of renegotiation are supported. Valid options are - # never, once, and freely. Default is never. - #ssl.renegotiation: never - - # Configure a pin that can be used to do extra validation of the verified certificate chain, - # this allow you to ensure that a specific certificate is used to validate the chain of trust. - # - # The pin is a base64 encoded string of the SHA-256 fingerprint. - #ssl.ca_sha256: "" - - # Enable Kerberos support. Kerberos is automatically enabled if any Kerberos setting is set. - #kerberos.enabled: true - - # Authentication type to use with Kerberos. Available options: keytab, password. - #kerberos.auth_type: password - - # Path to the keytab file. It is used when auth_type is set to keytab. - #kerberos.keytab: /etc/security/keytabs/kafka.keytab - - # Path to the Kerberos configuration. - #kerberos.config_path: /etc/krb5.conf - - # The service name. Service principal name is contructed from - # service_name/hostname@realm. - #kerberos.service_name: kafka - - # Name of the Kerberos user. - #kerberos.username: elastic - - # Password of the Kerberos user. It is used when auth_type is set to password. - #kerberos.password: changeme - - # Kerberos realm. - #kerberos.realm: ELASTIC - - # Enables Kerberos FAST authentication. This may - # conflict with certain Active Directory configurations. - #kerberos.enable_krb5_fast: false - -# -------------------------------- Redis Output -------------------------------- -#output.redis: - # Boolean flag to enable or disable the output module. - #enabled: true - - # Configure JSON encoding - #codec.json: - # Pretty print json event - #pretty: false - - # Configure escaping HTML symbols in strings. - #escape_html: false - - # The list of Redis servers to connect to. If load-balancing is enabled, the - # events are distributed to the servers in the list. If one server becomes - # unreachable, the events are distributed to the reachable servers only. - # The hosts setting supports redis and rediss urls with custom password like - # redis://:password@localhost:6379. - #hosts: ["localhost:6379"] - - # The name of the Redis list or channel the events are published to. The - # default is journalbeat. - #key: journalbeat - - # The password to authenticate to Redis with. The default is no authentication. - #password: - - # The Redis database number where the events are published. The default is 0. - #db: 0 - - # The Redis data type to use for publishing events. If the data type is list, - # the Redis RPUSH command is used. If the data type is channel, the Redis - # PUBLISH command is used. The default value is list. - #datatype: list - - # The number of workers to use for each host configured to publish events to - # Redis. Use this setting along with the loadbalance option. For example, if - # you have 2 hosts and 3 workers, in total 6 workers are started (3 for each - # host). - #worker: 1 - - # If set to true and multiple hosts or workers are configured, the output - # plugin load balances published events onto all Redis hosts. If set to false, - # the output plugin sends all events to only one host (determined at random) - # and will switch to another host if the currently selected one becomes - # unreachable. The default value is true. - #loadbalance: true - - # The Redis connection timeout in seconds. The default is 5 seconds. - #timeout: 5s - - # The number of times to retry publishing an event after a publishing failure. - # After the specified number of retries, the events are typically dropped. - # Some Beats, such as Filebeat, ignore the max_retries setting and retry until - # all events are published. Set max_retries to a value less than 0 to retry - # until all events are published. The default is 3. - #max_retries: 3 - - # The number of seconds to wait before trying to reconnect to Redis - # after a network error. After waiting backoff.init seconds, the Beat - # tries to reconnect. If the attempt fails, the backoff timer is increased - # exponentially up to backoff.max. After a successful connection, the backoff - # timer is reset. The default is 1s. - #backoff.init: 1s - - # The maximum number of seconds to wait before attempting to connect to - # Redis after a network error. The default is 60s. - #backoff.max: 60s - - # The maximum number of events to bulk in a single Redis request or pipeline. - # The default is 2048. - #bulk_max_size: 2048 - - # The URL of the SOCKS5 proxy to use when connecting to the Redis servers. The - # value must be a URL with a scheme of socks5://. - #proxy_url: - - # This option determines whether Redis hostnames are resolved locally when - # using a proxy. The default value is false, which means that name resolution - # occurs on the proxy server. - #proxy_use_local_resolver: false - - # Use SSL settings for HTTPS. - #ssl.enabled: true - - # Controls the verification of certificates. Valid values are: - # * full, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. - # * strict, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. If the Subject Alternative - # Name is empty, it returns an error. - # * certificate, which verifies that the provided certificate is signed by a - # trusted authority (CA), but does not perform any hostname verification. - # * none, which performs no verification of the server's certificate. This - # mode disables many of the security benefits of SSL/TLS and should only be used - # after very careful consideration. It is primarily intended as a temporary - # diagnostic mechanism when attempting to resolve TLS errors; its use in - # production environments is strongly discouraged. - # The default value is full. - #ssl.verification_mode: full - - # List of supported/valid TLS versions. By default all TLS versions from 1.1 - # up to 1.3 are enabled. - #ssl.supported_protocols: [TLSv1.1, TLSv1.2, TLSv1.3] - - # List of root certificates for HTTPS server verifications - #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] - - # Certificate for SSL client authentication - #ssl.certificate: "/etc/pki/client/cert.pem" - - # Client certificate key - #ssl.key: "/etc/pki/client/cert.key" - - # Optional passphrase for decrypting the certificate key. - #ssl.key_passphrase: '' - - # Configure cipher suites to be used for SSL connections - #ssl.cipher_suites: [] - - # Configure curve types for ECDHE-based cipher suites - #ssl.curve_types: [] - - # Configure what types of renegotiation are supported. Valid options are - # never, once, and freely. Default is never. - #ssl.renegotiation: never - - # Configure a pin that can be used to do extra validation of the verified certificate chain, - # this allow you to ensure that a specific certificate is used to validate the chain of trust. - # - # The pin is a base64 encoded string of the SHA-256 fingerprint. - #ssl.ca_sha256: "" - - -# -------------------------------- File Output --------------------------------- -#output.file: - # Boolean flag to enable or disable the output module. - #enabled: true - - # Configure JSON encoding - #codec.json: - # Pretty-print JSON event - #pretty: false - - # Configure escaping HTML symbols in strings. - #escape_html: false - - # Path to the directory where to save the generated files. The option is - # mandatory. - #path: "/tmp/journalbeat" - - # Name of the generated files. The default is `journalbeat` and it generates - # files: `journalbeat`, `journalbeat.1`, `journalbeat.2`, etc. - #filename: journalbeat - - # Maximum size in kilobytes of each file. When this size is reached, and on - # every Journalbeat restart, the files are rotated. The default value is 10240 - # kB. - #rotate_every_kb: 10000 - - # Maximum number of files under path. When this number of files is reached, - # the oldest file is deleted and the rest are shifted from last to first. The - # default is 7 files. - #number_of_files: 7 - - # Permissions to use for file creation. The default is 0600. - #permissions: 0600 - - # Configure automatic file rotation on every startup. The default is true. - #rotate_on_startup: true -# ------------------------------- Console Output ------------------------------- -#output.console: - # Boolean flag to enable or disable the output module. - #enabled: true - - # Configure JSON encoding - #codec.json: - # Pretty-print JSON event - #pretty: false - - # Configure escaping HTML symbols in strings. - #escape_html: false - -# =================================== Paths ==================================== - -# The home path for the Journalbeat installation. This is the default base path -# for all other path settings and for miscellaneous files that come with the -# distribution (for example, the sample dashboards). -# If not set by a CLI flag or in the configuration file, the default for the -# home path is the location of the binary. -#path.home: - -# The configuration path for the Journalbeat installation. This is the default -# base path for configuration files, including the main YAML configuration file -# and the Elasticsearch template file. If not set by a CLI flag or in the -# configuration file, the default for the configuration path is the home path. -#path.config: ${path.home} - -# The data path for the Journalbeat installation. This is the default base path -# for all the files in which Journalbeat needs to store its data. If not set by a -# CLI flag or in the configuration file, the default for the data path is a data -# subdirectory inside the home path. -#path.data: ${path.home}/data - -# The logs path for a Journalbeat installation. This is the default location for -# the Beat's log files. If not set by a CLI flag or in the configuration file, -# the default for the logs path is a logs subdirectory inside the home path. -#path.logs: ${path.home}/logs - -# ================================== Keystore ================================== - -# Location of the Keystore containing the keys and their sensitive values. -#keystore.path: "${path.config}/beats.keystore" - -# ================================= Dashboards ================================= - -# These settings control loading the sample dashboards to the Kibana index. Loading -# the dashboards are disabled by default and can be enabled either by setting the -# options here, or by using the `-setup` CLI flag or the `setup` command. -#setup.dashboards.enabled: false - -# The directory from where to read the dashboards. The default is the `kibana` -# folder in the home path. -#setup.dashboards.directory: ${path.home}/kibana - -# The URL from where to download the dashboards archive. It is used instead of -# the directory if it has a value. -#setup.dashboards.url: - -# The file archive (zip file) from where to read the dashboards. It is used instead -# of the directory when it has a value. -#setup.dashboards.file: - -# In case the archive contains the dashboards from multiple Beats, this lets you -# select which one to load. You can load all the dashboards in the archive by -# setting this to the empty string. -#setup.dashboards.beat: journalbeat - -# The name of the Kibana index to use for setting the configuration. Default is ".kibana" -#setup.dashboards.kibana_index: .kibana - -# The Elasticsearch index name. This overwrites the index name defined in the -# dashboards and index pattern. Example: testbeat-* -#setup.dashboards.index: - -# Always use the Kibana API for loading the dashboards instead of autodetecting -# how to install the dashboards by first querying Elasticsearch. -#setup.dashboards.always_kibana: false - -# If true and Kibana is not reachable at the time when dashboards are loaded, -# it will retry to reconnect to Kibana instead of exiting with an error. -#setup.dashboards.retry.enabled: false - -# Duration interval between Kibana connection retries. -#setup.dashboards.retry.interval: 1s - -# Maximum number of retries before exiting with an error, 0 for unlimited retrying. -#setup.dashboards.retry.maximum: 0 - -# ================================== Template ================================== - -# A template is used to set the mapping in Elasticsearch -# By default template loading is enabled and the template is loaded. -# These settings can be adjusted to load your own template or overwrite existing ones. - -# Set to false to disable template loading. -#setup.template.enabled: true - -# Select the kind of index template. From Elasticsearch 7.8, it is possible to -# use component templates. Available options: legacy, component, index. -# By default journalbeat uses the legacy index templates. -#setup.template.type: legacy - -# Template name. By default the template name is "journalbeat-%{[agent.version]}" -# The template name and pattern has to be set in case the Elasticsearch index pattern is modified. -#setup.template.name: "journalbeat-%{[agent.version]}" - -# Template pattern. By default the template pattern is "-%{[agent.version]}-*" to apply to the default index settings. -# The first part is the version of the beat and then -* is used to match all daily indices. -# The template name and pattern has to be set in case the Elasticsearch index pattern is modified. -#setup.template.pattern: "journalbeat-%{[agent.version]}-*" - -# Path to fields.yml file to generate the template -#setup.template.fields: "${path.config}/fields.yml" - -# A list of fields to be added to the template and Kibana index pattern. Also -# specify setup.template.overwrite: true to overwrite the existing template. -#setup.template.append_fields: -#- name: field_name -# type: field_type - -# Enable JSON template loading. If this is enabled, the fields.yml is ignored. -#setup.template.json.enabled: false - -# Path to the JSON template file -#setup.template.json.path: "${path.config}/template.json" - -# Name under which the template is stored in Elasticsearch -#setup.template.json.name: "" - -# Overwrite existing template -# Do not enable this option for more than one instance of journalbeat as it might -# overload your Elasticsearch with too many update requests. -#setup.template.overwrite: false - -# Elasticsearch template settings -setup.template.settings: - - # A dictionary of settings to place into the settings.index dictionary - # of the Elasticsearch template. For more details, please check - # https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html - #index: - #number_of_shards: 1 - #codec: best_compression - - # A dictionary of settings for the _source field. For more details, please check - # https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html - #_source: - #enabled: false - -# ====================== Index Lifecycle Management (ILM) ====================== - -# Configure index lifecycle management (ILM). These settings create a write -# alias and add additional settings to the index template. When ILM is enabled, -# output.elasticsearch.index is ignored, and the write alias is used to set the -# index name. - -# Enable ILM support. Valid values are true, false, and auto. When set to auto -# (the default), the Beat uses index lifecycle management when it connects to a -# cluster that supports ILM; otherwise, it creates daily indices. -#setup.ilm.enabled: auto - -# Set the prefix used in the index lifecycle write alias name. The default alias -# name is 'journalbeat-%{[agent.version]}'. -#setup.ilm.rollover_alias: 'journalbeat' - -# Set the rollover index pattern. The default is "%{now/d}-000001". -#setup.ilm.pattern: "{now/d}-000001" - -# Set the lifecycle policy name. The default policy name is -# 'beatname'. -#setup.ilm.policy_name: "mypolicy" - -# The path to a JSON file that contains a lifecycle policy configuration. Used -# to load your own lifecycle policy. -#setup.ilm.policy_file: - -# Disable the check for an existing lifecycle policy. The default is true. If -# you disable this check, set setup.ilm.overwrite: true so the lifecycle policy -# can be installed. -#setup.ilm.check_exists: true - -# Overwrite the lifecycle policy at startup. The default is false. -#setup.ilm.overwrite: false - -# =================================== Kibana =================================== - -# Starting with Beats version 6.0.0, the dashboards are loaded via the Kibana API. -# This requires a Kibana endpoint configuration. -setup.kibana: - - # Kibana Host - # Scheme and port can be left out and will be set to the default (http and 5601) - # In case you specify and additional path, the scheme is required: http://localhost:5601/path - # IPv6 addresses should always be defined as: https://[2001:db8::1]:5601 - #host: "localhost:5601" - - # Optional protocol and basic auth credentials. - #protocol: "https" - #username: "elastic" - #password: "changeme" - - # Optional HTTP path - #path: "" - - # Optional Kibana space ID. - #space.id: "" - - # Custom HTTP headers to add to each request - #headers: - # X-My-Header: Contents of the header - - # Use SSL settings for HTTPS. - #ssl.enabled: true - - # Controls the verification of certificates. Valid values are: - # * full, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. - # * strict, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. If the Subject Alternative - # Name is empty, it returns an error. - # * certificate, which verifies that the provided certificate is signed by a - # trusted authority (CA), but does not perform any hostname verification. - # * none, which performs no verification of the server's certificate. This - # mode disables many of the security benefits of SSL/TLS and should only be used - # after very careful consideration. It is primarily intended as a temporary - # diagnostic mechanism when attempting to resolve TLS errors; its use in - # production environments is strongly discouraged. - # The default value is full. - #ssl.verification_mode: full - - # List of supported/valid TLS versions. By default all TLS versions from 1.1 - # up to 1.3 are enabled. - #ssl.supported_protocols: [TLSv1.1, TLSv1.2, TLSv1.3] - - # List of root certificates for HTTPS server verifications - #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] - - # Certificate for SSL client authentication - #ssl.certificate: "/etc/pki/client/cert.pem" - - # Client certificate key - #ssl.key: "/etc/pki/client/cert.key" - - # Optional passphrase for decrypting the certificate key. - #ssl.key_passphrase: '' - - # Configure cipher suites to be used for SSL connections - #ssl.cipher_suites: [] - - # Configure curve types for ECDHE-based cipher suites - #ssl.curve_types: [] - - # Configure what types of renegotiation are supported. Valid options are - # never, once, and freely. Default is never. - #ssl.renegotiation: never - - # Configure a pin that can be used to do extra validation of the verified certificate chain, - # this allow you to ensure that a specific certificate is used to validate the chain of trust. - # - # The pin is a base64 encoded string of the SHA-256 fingerprint. - #ssl.ca_sha256: "" - - -# ================================== Logging =================================== - -# There are four options for the log output: file, stderr, syslog, eventlog -# The file output is the default. - -# Sets log level. The default log level is info. -# Available log levels are: error, warning, info, debug -#logging.level: info - -# Enable debug output for selected components. To enable all selectors use ["*"] -# Other available selectors are "beat", "publisher", "service" -# Multiple selectors can be chained. -#logging.selectors: [ ] - -# Send all logging output to stderr. The default is false. -#logging.to_stderr: false - -# Send all logging output to syslog. The default is false. -#logging.to_syslog: false - -# Send all logging output to Windows Event Logs. The default is false. -#logging.to_eventlog: false - -# If enabled, Journalbeat periodically logs its internal metrics that have changed -# in the last period. For each metric that changed, the delta from the value at -# the beginning of the period is logged. Also, the total values for -# all non-zero internal metrics are logged on shutdown. The default is true. -#logging.metrics.enabled: true - -# The period after which to log the internal metrics. The default is 30s. -#logging.metrics.period: 30s - -# A list of metrics namespaces to report in the logs. Defaults to [stats]. -# `stats` contains general Beat metrics. `dataset` may be present in some -# Beats and contains module or input metrics. -#logging.metrics.namespaces: [stats] - -# Logging to rotating files. Set logging.to_files to false to disable logging to -# files. -logging.to_files: true -logging.files: - # Configure the path where the logs are written. The default is the logs directory - # under the home path (the binary location). - #path: /var/log/journalbeat - - # The name of the files where the logs are written to. - #name: journalbeat - - # Configure log file size limit. If limit is reached, log file will be - # automatically rotated - #rotateeverybytes: 10485760 # = 10MB - - # Number of rotated log files to keep. Oldest files will be deleted first. - #keepfiles: 7 - - # The permissions mask to apply when rotating log files. The default value is 0600. - # Must be a valid Unix-style file permissions mask expressed in octal notation. - #permissions: 0600 - - # Enable log file rotation on time intervals in addition to size-based rotation. - # Intervals must be at least 1s. Values of 1m, 1h, 24h, 7*24h, 30*24h, and 365*24h - # are boundary-aligned with minutes, hours, days, weeks, months, and years as - # reported by the local system clock. All other intervals are calculated from the - # Unix epoch. Defaults to disabled. - #interval: 0 - - # Rotate existing logs on startup rather than appending to the existing - # file. Defaults to true. - # rotateonstartup: true - -# ============================= X-Pack Monitoring ============================== -# Journalbeat can export internal metrics to a central Elasticsearch monitoring -# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The -# reporting is disabled by default. - -# Set to true to enable the monitoring reporter. -#monitoring.enabled: false - -# Sets the UUID of the Elasticsearch cluster under which monitoring data for this -# Journalbeat instance will appear in the Stack Monitoring UI. If output.elasticsearch -# is enabled, the UUID is derived from the Elasticsearch cluster referenced by output.elasticsearch. -#monitoring.cluster_uuid: - -# Uncomment to send the metrics to Elasticsearch. Most settings from the -# Elasticsearch output are accepted here as well. -# Note that the settings should point to your Elasticsearch *monitoring* cluster. -# Any setting that is not set is automatically inherited from the Elasticsearch -# output configuration, so if you have the Elasticsearch output configured such -# that it is pointing to your Elasticsearch monitoring cluster, you can simply -# uncomment the following line. -#monitoring.elasticsearch: - - # Array of hosts to connect to. - # Scheme and port can be left out and will be set to the default (http and 9200) - # In case you specify and additional path, the scheme is required: http://localhost:9200/path - # IPv6 addresses should always be defined as: https://[2001:db8::1]:9200 - #hosts: ["localhost:9200"] - - # Set gzip compression level. - #compression_level: 0 - - # Protocol - either `http` (default) or `https`. - #protocol: "https" - - # Authentication credentials - either API key or username/password. - #api_key: "id:api_key" - #username: "beats_system" - #password: "changeme" - - # Dictionary of HTTP parameters to pass within the URL with index operations. - #parameters: - #param1: value1 - #param2: value2 - - # Custom HTTP headers to add to each request - #headers: - # X-My-Header: Contents of the header - - # Proxy server url - #proxy_url: http://proxy:3128 - - # The number of times a particular Elasticsearch index operation is attempted. If - # the indexing operation doesn't succeed after this many retries, the events are - # dropped. The default is 3. - #max_retries: 3 - - # The maximum number of events to bulk in a single Elasticsearch bulk API index request. - # The default is 50. - #bulk_max_size: 50 - - # The number of seconds to wait before trying to reconnect to Elasticsearch - # after a network error. After waiting backoff.init seconds, the Beat - # tries to reconnect. If the attempt fails, the backoff timer is increased - # exponentially up to backoff.max. After a successful connection, the backoff - # timer is reset. The default is 1s. - #backoff.init: 1s - - # The maximum number of seconds to wait before attempting to connect to - # Elasticsearch after a network error. The default is 60s. - #backoff.max: 60s - - # Configure HTTP request timeout before failing an request to Elasticsearch. - #timeout: 90 - - # Use SSL settings for HTTPS. - #ssl.enabled: true - - # Controls the verification of certificates. Valid values are: - # * full, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. - # * strict, which verifies that the provided certificate is signed by a trusted - # authority (CA) and also verifies that the server's hostname (or IP address) - # matches the names identified within the certificate. If the Subject Alternative - # Name is empty, it returns an error. - # * certificate, which verifies that the provided certificate is signed by a - # trusted authority (CA), but does not perform any hostname verification. - # * none, which performs no verification of the server's certificate. This - # mode disables many of the security benefits of SSL/TLS and should only be used - # after very careful consideration. It is primarily intended as a temporary - # diagnostic mechanism when attempting to resolve TLS errors; its use in - # production environments is strongly discouraged. - # The default value is full. - #ssl.verification_mode: full - - # List of supported/valid TLS versions. By default all TLS versions from 1.1 - # up to 1.3 are enabled. - #ssl.supported_protocols: [TLSv1.1, TLSv1.2, TLSv1.3] - - # List of root certificates for HTTPS server verifications - #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] - - # Certificate for SSL client authentication - #ssl.certificate: "/etc/pki/client/cert.pem" - - # Client certificate key - #ssl.key: "/etc/pki/client/cert.key" - - # Optional passphrase for decrypting the certificate key. - #ssl.key_passphrase: '' - - # Configure cipher suites to be used for SSL connections - #ssl.cipher_suites: [] - - # Configure curve types for ECDHE-based cipher suites - #ssl.curve_types: [] - - # Configure what types of renegotiation are supported. Valid options are - # never, once, and freely. Default is never. - #ssl.renegotiation: never - - # Configure a pin that can be used to do extra validation of the verified certificate chain, - # this allow you to ensure that a specific certificate is used to validate the chain of trust. - # - # The pin is a base64 encoded string of the SHA-256 fingerprint. - #ssl.ca_sha256: "" - - # Enable Kerberos support. Kerberos is automatically enabled if any Kerberos setting is set. - #kerberos.enabled: true - - # Authentication type to use with Kerberos. Available options: keytab, password. - #kerberos.auth_type: password - - # Path to the keytab file. It is used when auth_type is set to keytab. - #kerberos.keytab: /etc/elastic.keytab - - # Path to the Kerberos configuration. - #kerberos.config_path: /etc/krb5.conf - - # Name of the Kerberos user. - #kerberos.username: elastic - - # Password of the Kerberos user. It is used when auth_type is set to password. - #kerberos.password: changeme - - # Kerberos realm. - #kerberos.realm: ELASTIC - - #metrics.period: 10s - #state.period: 1m - -# The `monitoring.cloud.id` setting overwrites the `monitoring.elasticsearch.hosts` -# setting. You can find the value for this setting in the Elastic Cloud web UI. -#monitoring.cloud.id: - -# The `monitoring.cloud.auth` setting overwrites the `monitoring.elasticsearch.username` -# and `monitoring.elasticsearch.password` settings. The format is `:`. -#monitoring.cloud.auth: - -# =============================== HTTP Endpoint ================================ - -# Each beat can expose internal metrics through a HTTP endpoint. For security -# reasons the endpoint is disabled by default. This feature is currently experimental. -# Stats can be access through http://localhost:5066/stats . For pretty JSON output -# append ?pretty to the URL. - -# Defines if the HTTP endpoint is enabled. -#http.enabled: false - -# The HTTP endpoint will bind to this hostname, IP address, unix socket or named pipe. -# When using IP addresses, it is recommended to only use localhost. -#http.host: localhost - -# Port on which the HTTP endpoint will bind. Default is 5066. -#http.port: 5066 - -# Define which user should be owning the named pipe. -#http.named_pipe.user: - -# Define which the permissions that should be applied to the named pipe, use the Security -# Descriptor Definition Language (SDDL) to define the permission. This option cannot be used with -# `http.user`. -#http.named_pipe.security_descriptor: - -# Defines if the HTTP pprof endpoints are enabled. -# It is recommended that this is only enabled on localhost as these endpoints may leak data. -#http.pprof.enabled: false - -# ============================== Process Security ============================== - -# Enable or disable seccomp system call filtering on Linux. Default is enabled. -#seccomp.enabled: true - -# ============================== Instrumentation =============================== - -# Instrumentation support for the journalbeat. -#instrumentation: - # Set to true to enable instrumentation of journalbeat. - #enabled: false - - # Environment in which journalbeat is running on (eg: staging, production, etc.) - #environment: "" - - # APM Server hosts to report instrumentation results to. - #hosts: - # - http://localhost:8200 - - # API Key for the APM Server(s). - # If api_key is set then secret_token will be ignored. - #api_key: - - # Secret token for the APM Server(s). - #secret_token: - - # Enable profiling of the server, recording profile samples as events. - # - # This feature is experimental. - #profiling: - #cpu: - # Set to true to enable CPU profiling. - #enabled: false - #interval: 60s - #duration: 10s - #heap: - # Set to true to enable heap profiling. - #enabled: false - #interval: 60s - -# ================================= Migration ================================== - -# This allows to enable 6.7 migration aliases -#migration.6_to_7.enabled: false - diff --git a/journalbeat/journalbeat.yml b/journalbeat/journalbeat.yml deleted file mode 100644 index e049dbc908e..00000000000 --- a/journalbeat/journalbeat.yml +++ /dev/null @@ -1,217 +0,0 @@ -###################### Journalbeat Configuration Example ######################### - -# This file is an example configuration file highlighting only the most common -# options. The journalbeat.reference.yml file from the same directory contains all the -# supported options with more comments. You can use it as a reference. -# -# You can find the full configuration reference here: -# https://www.elastic.co/guide/en/beats/journalbeat/index.html - -# For more available modules and options, please see the journalbeat.reference.yml sample -# configuration file. - -# ============================= Journalbeat inputs ============================= - -journalbeat.inputs: - # Paths that should be crawled and fetched. Possible values files and directories. - # When setting a directory, all journals under it are merged. - # When empty starts to read from local journal. -- paths: [] - - # An optional unique identifier for the input. By providing a unique `id` you - # can operate multiple inputs on the same journal. This allows each input's - # cursor to be persisted independently in the registry file. - #id: "" - - # The number of seconds to wait before trying to read again from journals. - #backoff: 1s - # The maximum number of seconds to wait before attempting to read again from journals. - #max_backoff: 20s - - # Position to start reading from journal. Valid values: head, tail, cursor - seek: cursor - # Fallback position if no cursor data is available. - #cursor_seek_fallback: head - - # Exact matching for field values of events. - # Matching for nginx entries: "systemd.unit=nginx" - #include_matches: [] - - # Optional fields that you can specify to add additional information to the - # output. Fields can be scalar values, arrays, dictionaries, or any nested - # combination of these. - #fields: - # env: staging - - -# ========================= Journalbeat global options ========================= -#journalbeat: - # Name of the registry file. If a relative path is used, it is considered relative to the - # data path. - #registry_file: registry - -# ======================= Elasticsearch template setting ======================= -setup.template.settings: - index.number_of_shards: 1 - #index.codec: best_compression - #_source.enabled: false - -# ================================== General =================================== - -# The name of the shipper that publishes the network data. It can be used to group -# all the transactions sent by a single shipper in the web interface. -#name: - -# The tags of the shipper are included in their own field with each -# transaction published. -#tags: ["service-X", "web-tier"] - -# Optional fields that you can specify to add additional information to the -# output. -#fields: -# env: staging - -# ================================= Dashboards ================================= -# These settings control loading the sample dashboards to the Kibana index. Loading -# the dashboards is disabled by default and can be enabled either by setting the -# options here or by using the `setup` command. -#setup.dashboards.enabled: false - -# The URL from where to download the dashboards archive. By default this URL -# has a value which is computed based on the Beat name and version. For released -# versions, this URL points to the dashboard archive on the artifacts.elastic.co -# website. -#setup.dashboards.url: - -# =================================== Kibana =================================== - -# Starting with Beats version 6.0.0, the dashboards are loaded via the Kibana API. -# This requires a Kibana endpoint configuration. -setup.kibana: - - # Kibana Host - # Scheme and port can be left out and will be set to the default (http and 5601) - # In case you specify and additional path, the scheme is required: http://localhost:5601/path - # IPv6 addresses should always be defined as: https://[2001:db8::1]:5601 - #host: "localhost:5601" - - # Kibana Space ID - # ID of the Kibana Space into which the dashboards should be loaded. By default, - # the Default Space will be used. - #space.id: - -# =============================== Elastic Cloud ================================ - -# These settings simplify using Journalbeat with the Elastic Cloud (https://cloud.elastic.co/). - -# The cloud.id setting overwrites the `output.elasticsearch.hosts` and -# `setup.kibana.host` options. -# You can find the `cloud.id` in the Elastic Cloud web UI. -#cloud.id: - -# The cloud.auth setting overwrites the `output.elasticsearch.username` and -# `output.elasticsearch.password` settings. The format is `:`. -#cloud.auth: - -# ================================== Outputs =================================== - -# Configure what output to use when sending the data collected by the beat. - -# ---------------------------- Elasticsearch Output ---------------------------- -output.elasticsearch: - # Array of hosts to connect to. - hosts: ["localhost:9200"] - - # Protocol - either `http` (default) or `https`. - #protocol: "https" - - # Authentication credentials - either API key or username/password. - #api_key: "id:api_key" - #username: "elastic" - #password: "changeme" - -# ------------------------------ Logstash Output ------------------------------- -#output.logstash: - # The Logstash hosts - #hosts: ["localhost:5044"] - - # Optional SSL. By default is off. - # List of root certificates for HTTPS server verifications - #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"] - - # Certificate for SSL client authentication - #ssl.certificate: "/etc/pki/client/cert.pem" - - # Client Certificate Key - #ssl.key: "/etc/pki/client/cert.key" - -# ================================= Processors ================================= - -# Configure processors to enhance or manipulate events generated by the beat. - -processors: - - add_host_metadata: ~ - - add_cloud_metadata: ~ - - add_docker_metadata: ~ - - -# ================================== Logging =================================== - -# Sets log level. The default log level is info. -# Available log levels are: error, warning, info, debug -#logging.level: debug - -# At debug level, you can selectively enable logging only for some components. -# To enable all selectors use ["*"]. Examples of other selectors are "beat", -# "publisher", "service". -#logging.selectors: ["*"] - -# ============================= X-Pack Monitoring ============================== -# Journalbeat can export internal metrics to a central Elasticsearch monitoring -# cluster. This requires xpack monitoring to be enabled in Elasticsearch. The -# reporting is disabled by default. - -# Set to true to enable the monitoring reporter. -#monitoring.enabled: false - -# Sets the UUID of the Elasticsearch cluster under which monitoring data for this -# Journalbeat instance will appear in the Stack Monitoring UI. If output.elasticsearch -# is enabled, the UUID is derived from the Elasticsearch cluster referenced by output.elasticsearch. -#monitoring.cluster_uuid: - -# Uncomment to send the metrics to Elasticsearch. Most settings from the -# Elasticsearch output are accepted here as well. -# Note that the settings should point to your Elasticsearch *monitoring* cluster. -# Any setting that is not set is automatically inherited from the Elasticsearch -# output configuration, so if you have the Elasticsearch output configured such -# that it is pointing to your Elasticsearch monitoring cluster, you can simply -# uncomment the following line. -#monitoring.elasticsearch: - -# ============================== Instrumentation =============================== - -# Instrumentation support for the journalbeat. -#instrumentation: - # Set to true to enable instrumentation of journalbeat. - #enabled: false - - # Environment in which journalbeat is running on (eg: staging, production, etc.) - #environment: "" - - # APM Server hosts to report instrumentation results to. - #hosts: - # - http://localhost:8200 - - # API Key for the APM Server(s). - # If api_key is set then secret_token will be ignored. - #api_key: - - # Secret token for the APM Server(s). - #secret_token: - - -# ================================= Migration ================================== - -# This allows to enable 6.7 migration aliases -#migration.6_to_7.enabled: true - diff --git a/journalbeat/magefile.go b/journalbeat/magefile.go deleted file mode 100644 index 0ba6de46d4b..00000000000 --- a/journalbeat/magefile.go +++ /dev/null @@ -1,171 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -//go:build mage -// +build mage - -package main - -import ( - "fmt" - "runtime" - "strings" - "time" - - "github.com/magefile/mage/mg" - "github.com/magefile/mage/sh" - - devtools "github.com/elastic/beats/v7/dev-tools/mage" - - // mage:import - "github.com/elastic/beats/v7/dev-tools/mage/target/common" - // mage:import - _ "github.com/elastic/beats/v7/dev-tools/mage/target/integtest/notests" - // mage:import - _ "github.com/elastic/beats/v7/dev-tools/mage/target/unittest" - // mage:import - _ "github.com/elastic/beats/v7/dev-tools/mage/target/test" -) - -func init() { - common.RegisterCheckDeps(Update) - - devtools.BeatDescription = "Journalbeat ships systemd journal entries to Elasticsearch or Logstash." - - devtools.Platforms = devtools.Platforms.Filter("linux !linux/ppc64 !linux/mips64") -} - -const ( - libsystemdDevPkgName = "libsystemd-dev" - libsystemdPkgName = "libsystemd0" - libgcryptPkgName = "libgcrypt20" -) - -// Build builds the Beat binary. -func Build() error { - return devtools.Build(devtools.DefaultBuildArgs()) -} - -// GolangCrossBuild build the Beat binary inside of the golang-builder. -// Do not use directly, use crossBuild instead. -func GolangCrossBuild() error { - mg.Deps(deps.Installer(devtools.Platform.Name)) - return devtools.GolangCrossBuild(devtools.DefaultGolangCrossBuildArgs()) -} - -// BuildGoDaemon builds the go-daemon binary (use crossBuildGoDaemon). -func BuildGoDaemon() error { - return devtools.BuildGoDaemon() -} - -// CrossBuild cross-builds the beat for all target platforms. -func CrossBuild() error { - return devtools.CrossBuild(devtools.ImageSelector(selectImage)) -} - -// CrossBuildXPack cross-builds the beat with XPack for all target platforms. -func CrossBuildXPack() error { - return devtools.CrossBuildXPack(devtools.ImageSelector(selectImage)) -} - -// CrossBuildGoDaemon cross-builds the go-daemon binary using Docker. -func CrossBuildGoDaemon() error { - return devtools.CrossBuildGoDaemon(devtools.ImageSelector(selectImage)) -} - -// Package packages the Beat for distribution. -// Use SNAPSHOT=true to build snapshots. -// Use PLATFORMS to control the target platforms. -func Package() { - start := time.Now() - defer func() { fmt.Println("package ran for", time.Since(start)) }() - - devtools.UseElasticBeatPackaging() - - mg.Deps(Update) - mg.Deps(CrossBuild, CrossBuildXPack, CrossBuildGoDaemon) - mg.SerialDeps(devtools.Package, TestPackages) -} - -// TestPackages tests the generated packages (i.e. file modes, owners, groups). -func TestPackages() error { - return devtools.TestPackages() -} - -// Update updates the generated files (aka make update). -func Update() error { - return sh.Run("make", "update") -} - -// Fields generates a fields.yml for the Beat. -func Fields() error { - return devtools.GenerateFieldsYAML() -} - -// ----------------------------------------------------------------------------- -// Customizations specific to Journalbeat. -// - Install required headers on builders for different architectures. - -var ( - journaldPlatforms = []devtools.PlatformDescription{ - devtools.Linux386, devtools.LinuxAMD64, - devtools.LinuxARM64, devtools.LinuxARM5, devtools.LinuxARM6, devtools.LinuxARM7, - devtools.LinuxMIPS, devtools.LinuxMIPSLE, devtools.LinuxMIPS64LE, - devtools.LinuxPPC64LE, - devtools.LinuxS390x, - } - - deps = devtools.NewPackageInstaller(). - AddEach(journaldPlatforms, libsystemdDevPkgName). - Add(devtools.Linux386, libsystemdPkgName, libgcryptPkgName) -) - -func selectImage(platform string) (string, error) { - tagSuffix := "main" - - switch { - case strings.HasPrefix(platform, "linux/armv7"): - tagSuffix = "armhf" - case strings.HasPrefix(platform, "linux/arm"): - tagSuffix = "arm" - if runtime.GOARCH == "arm64" { - tagSuffix = "base-arm-debian9" - } - case strings.HasPrefix(platform, "linux/mips"): - tagSuffix = "mips" - case strings.HasPrefix(platform, "linux/ppc"): - tagSuffix = "ppc" - case platform == "linux/s390x": - tagSuffix = "s390x" - case strings.HasPrefix(platform, "linux"): - tagSuffix = "main-debian8" - } - - goVersion, err := devtools.GoVersion() - if err != nil { - return "", err - } - - return devtools.BeatsCrossBuildImage + ":" + goVersion + "-" + tagSuffix, nil -} - -// Config generates both the short/reference/docker configs. -func Config() error { - p := devtools.DefaultConfigFileParams() - p.Templates = append(p.Templates, devtools.OSSBeatDir("_meta/config/*.tmpl")) - return devtools.Config(devtools.AllConfigTypes, p, ".") -} diff --git a/journalbeat/main.go b/journalbeat/main.go deleted file mode 100644 index 56c0e645406..00000000000 --- a/journalbeat/main.go +++ /dev/null @@ -1,30 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package main - -import ( - "os" - - "github.com/elastic/beats/v7/journalbeat/cmd" -) - -func main() { - if err := cmd.RootCmd.Execute(); err != nil { - os.Exit(1) - } -} diff --git a/journalbeat/main_test.go b/journalbeat/main_test.go deleted file mode 100644 index 7881c30d52c..00000000000 --- a/journalbeat/main_test.go +++ /dev/null @@ -1,49 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package main - -// This file is mandatory as otherwise the journalbeat.test binary is not generated correctly. - -import ( - "flag" - "testing" - - "github.com/elastic/beats/v7/journalbeat/cmd" - "github.com/elastic/beats/v7/libbeat/tests/system/template" -) - -var systemTest *bool - -func init() { - testing.Init() - systemTest = flag.Bool("systemTest", false, "Set to true when running system tests") - - cmd.RootCmd.PersistentFlags().AddGoFlag(flag.CommandLine.Lookup("systemTest")) - cmd.RootCmd.PersistentFlags().AddGoFlag(flag.CommandLine.Lookup("test.coverprofile")) -} - -// Test started when the test binary is started. Only calls main. -func TestSystem(t *testing.T) { - if *systemTest { - main() - } -} - -func TestTemplate(t *testing.T) { - template.TestTemplate(t, cmd.Name, false) -} diff --git a/journalbeat/reader/config.go b/journalbeat/reader/config.go deleted file mode 100644 index e559681aea7..00000000000 --- a/journalbeat/reader/config.go +++ /dev/null @@ -1,52 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package reader - -import ( - "time" - - "github.com/elastic/beats/v7/journalbeat/pkg/journalfield" - "github.com/elastic/beats/v7/journalbeat/pkg/journalread" -) - -// Config stores the options of a reder. -type Config struct { - // Path is the path to the journal file. - Path string - // Seek specifies the seeking stategy. - // Possible values: head, tail, cursor. - Seek journalread.SeekMode - // CursorSeekFallback sets where to seek if registry file is not available. - CursorSeekFallback journalread.SeekMode - // MaxBackoff is the limit of the backoff time. - MaxBackoff time.Duration - // Backoff is the current interval to wait before - // attemting to read again from the journal. - Backoff time.Duration - // Matches store the key value pairs to match entries. - Matches []journalfield.Matcher - // SaveRemoteHostname defines if the original source of the entry needs to be saved. - SaveRemoteHostname bool - // CheckpointID is the identifier to use when persisting state. - CheckpointID string -} - -const ( - // LocalSystemJournalID is the ID of the local system journal. - LocalSystemJournalID = "LOCAL_SYSTEM_JOURNAL" -) diff --git a/journalbeat/reader/fields.go b/journalbeat/reader/fields.go deleted file mode 100644 index 7076a92a19d..00000000000 --- a/journalbeat/reader/fields.go +++ /dev/null @@ -1,21 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -//go:build linux && cgo -// +build linux,cgo - -package reader diff --git a/journalbeat/reader/journal.go b/journalbeat/reader/journal.go deleted file mode 100644 index 93fc3963348..00000000000 --- a/journalbeat/reader/journal.go +++ /dev/null @@ -1,151 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -//go:build linux && cgo -// +build linux,cgo - -package reader - -import ( - "time" - - "github.com/coreos/go-systemd/v22/sdjournal" - - "github.com/elastic/beats/v7/journalbeat/checkpoint" - "github.com/elastic/beats/v7/journalbeat/cmd/instance" - "github.com/elastic/beats/v7/journalbeat/pkg/journalfield" - "github.com/elastic/beats/v7/journalbeat/pkg/journalread" - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common/backoff" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/go-concert/ctxtool" -) - -// Reader reads entries from journal(s). -type Reader struct { - r *journalread.Reader - journal *sdjournal.Journal - config Config - ctx ctxtool.CancelContext - logger *logp.Logger - backoff backoff.Backoff -} - -// New creates a new journal reader and moves the FP to the configured position. -func New(c Config, done <-chan struct{}, state checkpoint.JournalState, logger *logp.Logger) (*Reader, error) { - return newReader(c.Path, c, done, state, logger) -} - -// NewLocal creates a reader to read form the local journal and moves the FP -// to the configured position. -func NewLocal(c Config, done <-chan struct{}, state checkpoint.JournalState, logger *logp.Logger) (*Reader, error) { - return newReader(LocalSystemJournalID, c, done, state, logger) -} - -func newReader(path string, c Config, done <-chan struct{}, state checkpoint.JournalState, logger *logp.Logger) (*Reader, error) { - logger = logger.With("path", path) - backoff := backoff.NewExpBackoff(done, c.Backoff, c.MaxBackoff) - - var journal *sdjournal.Journal - r, err := journalread.Open(logger, c.Path, backoff, func(j *sdjournal.Journal) error { - journal = j - return journalfield.ApplyMatchersOr(j, c.Matches) - }) - if err != nil { - return nil, err - } - - if err := r.Seek(seekBy(logger, c, state)); err != nil { - logger.Error("Continue from current position. Seek failed with: %v", err) - } - - logger.Debug("New journal is opened for reading") - instance.AddJournalToMonitor(c.Path, journal) - - return &Reader{ - r: r, - journal: journal, - config: c, - ctx: ctxtool.WithCancelContext(ctxtool.FromChannel(done)), - logger: logger, - backoff: backoff, - }, nil -} - -func seekBy(log *logp.Logger, c Config, state checkpoint.JournalState) (journalread.SeekMode, string) { - mode := c.Seek - if mode == journalread.SeekCursor && state.Cursor == "" { - mode = c.CursorSeekFallback - if mode != journalread.SeekHead && mode != journalread.SeekTail { - log.Error("Invalid option for cursor_seek_fallback") - mode = journalread.SeekHead - } - } - return mode, state.Cursor -} - -// Close closes the underlying journal reader. -func (r *Reader) Close() { - instance.StopMonitoringJournal(r.config.Path) - r.ctx.Cancel() - r.r.Close() -} - -// Next waits until a new event shows up and returns it. -// It blocks until an event is returned or an error occurs. -func (r *Reader) Next() (*beat.Event, error) { - entry, err := r.r.Next(r.ctx) - if err != nil { - return nil, err - } - - event := toEvent(r.logger, r.config.CheckpointID, entry, r.config.SaveRemoteHostname) - return event, nil -} - -// toEvent creates a beat.Event from journal entries. -func toEvent(logger *logp.Logger, id string, entry *sdjournal.JournalEntry, saveRemoteHostname bool) *beat.Event { - created := time.Now() - fields := journalfield.NewConverter(logger, nil).Convert(entry.Fields) - fields.Put("event.kind", "event") - - // if entry is coming from a remote journal, add_host_metadata overwrites the source hostname, so it - // has to be copied to a different field - if saveRemoteHostname { - remoteHostname, err := fields.GetValue("host.hostname") - if err == nil { - fields.Put("log.source.address", remoteHostname) - } - } - - state := checkpoint.JournalState{ - Path: id, - Cursor: entry.Cursor, - RealtimeTimestamp: entry.RealtimeTimestamp, - MonotonicTimestamp: entry.MonotonicTimestamp, - } - - fields.Put("event.created", created) - receivedByJournal := time.Unix(0, int64(entry.RealtimeTimestamp)*1000) - - event := beat.Event{ - Timestamp: receivedByJournal, - Fields: fields, - Private: state, - } - return &event -} diff --git a/journalbeat/reader/journal_other.go b/journalbeat/reader/journal_other.go deleted file mode 100644 index a44d1a07db0..00000000000 --- a/journalbeat/reader/journal_other.go +++ /dev/null @@ -1,56 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -//go:build !linux || !cgo -// +build !linux !cgo - -package reader - -import ( - "errors" - - "github.com/elastic/beats/v7/journalbeat/checkpoint" - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/logp" -) - -// Reader stub for non linux builds. -type Reader struct{} - -// New creates a new journal reader and moves the FP to the configured position. -// -// Note: New fails if journalbeat is not compiled for linux -func New(c Config, done chan struct{}, state checkpoint.JournalState, logger *logp.Logger) (*Reader, error) { - return nil, errors.New("journald reader only supported on linux") -} - -// NewLocal creates a reader to read form the local journal and moves the FP -// to the configured position. -// -// Note: NewLocal fails if journalbeat is not compiled for linux -func NewLocal(c Config, done chan struct{}, state checkpoint.JournalState, logger *logp.Logger) (*Reader, error) { - return nil, errors.New("journald reader only supported on linux") -} - -// Next waits until a new event shows up and returns it. -// It blocks until an event is returned or an error occurs. -func (r *Reader) Next() (*beat.Event, error) { - return nil, nil -} - -// Close closes the underlying journal reader. -func (r *Reader) Close() {} diff --git a/journalbeat/tests/system/config/journalbeat.yml.j2 b/journalbeat/tests/system/config/journalbeat.yml.j2 deleted file mode 100644 index 858181ca409..00000000000 --- a/journalbeat/tests/system/config/journalbeat.yml.j2 +++ /dev/null @@ -1,13 +0,0 @@ -journalbeat.inputs: -{% for input in inputs %} -- {{ input | tojson }} -{% endfor %} - -{% if registry_file is defined %} -journalbeat.registry_file: {{ registry_file }} -{% endif %} - -output: - file: - path: {{ output_file_path|default(beat.working_dir + "/output") }} - filename: {{ output_file_filename|default("journalbeat") }} diff --git a/journalbeat/tests/system/input/test.journal b/journalbeat/tests/system/input/test.journal deleted file mode 100644 index c42b825e62dcb7e934e0dc17cc218e46de463a66..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8388608 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 z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfWYA;uz6HIDJbIMRh?=G5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfWW>9ly1u<10(L+ETaezAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ 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 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+0D=E+hYm;p00004{eRt#KqqLxfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r a3>YwAz<>b*1`HT5V8DO@0|pEj7!CwYf~a}` diff --git a/journalbeat/tests/system/input/test.registry b/journalbeat/tests/system/input/test.registry deleted file mode 100644 index 9b9dee108b3..00000000000 --- a/journalbeat/tests/system/input/test.registry +++ /dev/null @@ -1,6 +0,0 @@ -update_time: 2018-09-11T10:06:50.895829905Z -journal_entries: -- path: /home/n/go/src/github.com/elastic/beats/journalbeat/tests/system/input/test.journal - cursor: s=018329e08e3a45a0ae03694421c4f553;i=2015d;b=fa3c2e3080dc4cd5be5cb5a43e140d51;m=29102136a4;t=5ab0792b1dc62;x=84a1467480b8f1af - realtime_timestamp: 1595423897803874 - monotonic_timestamp: 176364271268 diff --git a/journalbeat/tests/system/journalbeat.py b/journalbeat/tests/system/journalbeat.py deleted file mode 100644 index 2ad3bd3c37f..00000000000 --- a/journalbeat/tests/system/journalbeat.py +++ /dev/null @@ -1,12 +0,0 @@ -import os -import sys -from beat.beat import TestCase - - -class BaseTest(TestCase): - - @classmethod - def setUpClass(self): - self.beat_name = "journalbeat" - self.beat_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../")) - super(BaseTest, self).setUpClass() diff --git a/journalbeat/tests/system/test_base.py b/journalbeat/tests/system/test_base.py deleted file mode 100644 index 2d7269dd5f4..00000000000 --- a/journalbeat/tests/system/test_base.py +++ /dev/null @@ -1,210 +0,0 @@ -from journalbeat import BaseTest - -import os -import sys -import unittest -import time -import yaml -from shutil import copyfile -from beat import common_tests - - -class Test(BaseTest, common_tests.TestExportsMixin): - - @unittest.skipUnless(sys.platform.startswith("linux"), "Journald only on Linux") - def test_start_with_local_journal(self): - """ - Journalbeat is able to start with the local journal. - """ - - self.render_config_template( - inputs=[{ - "paths": [], - }], - ) - journalbeat_proc = self.start_beat() - - self.wait_until(lambda: self.log_contains("journalbeat is running")) - - exit_code = journalbeat_proc.kill_and_wait() - assert exit_code == 0 - - @unittest.skipUnless(sys.platform.startswith("linux"), "Journald only on Linux") - def test_start_with_journal_directory(self): - """ - Journalbeat is able to open a directory of journal files and starts tailing them. - """ - - self.render_config_template( - inputs=[{ - "paths": [ - self.beat_path + "/tests/system/input/", - ], - "seek": "tail", - }], - ) - journalbeat_proc = self.start_beat() - - self.wait_until(lambda: self.log_contains("journalbeat is running")) - - exit_code = journalbeat_proc.kill_and_wait() - assert exit_code == 0 - - # journalbeat is tailing an inactive journal - assert self.output_is_empty() - - @unittest.skipUnless(sys.platform.startswith("linux"), "Journald only on Linux") - def test_start_with_selected_journal_file(self): - """ - Journalbeat is able to open a journal file and start to read it from the begining. - """ - - self.render_config_template( - inputs=[{ - "paths": [ - self.beat_path + "/tests/system/input/test.journal", - ], - "seek": "head", - }], - ) - journalbeat_proc = self.start_beat() - - self.wait_until(lambda: self.output_has(lines=23)) - - exit_code = journalbeat_proc.kill_and_wait() - assert exit_code == 0 - - @unittest.skipUnless(sys.platform.startswith("linux"), "Journald only on Linux") - def test_start_with_selected_journal_file_with_cursor_fallback(self): - """ - Journalbeat is able to open a journal file and start to read it from the position configured by seek and cursor_seek_fallback. - """ - - self.render_config_template( - inputs=[{ - "paths": [ - self.beat_path + "/tests/system/input/test.journal", - ], - "seek": "cursor", - "cursor_seek_fallback": "tail", - }], - ) - journalbeat_proc = self.start_beat() - - self.wait_until(lambda: self.log_contains("journalbeat is running")) - - exit_code = journalbeat_proc.kill_and_wait() - assert exit_code == 0 - - # journalbeat is tailing an inactive journal with no cursor data - assert self.output_is_empty() - - @unittest.skipUnless(sys.platform.startswith("linux"), "Journald only on Linux") - def test_read_events_with_existing_registry(self): - """ - Journalbeat is able to follow reading a from a journal with an existing registry file. - """ - - registry_path = os.path.join(os.path.abspath(self.working_dir), "data", "registry") - os.mkdir(os.path.dirname(registry_path)) - copyfile(self.beat_path + "/tests/system/input/test.registry", - os.path.join(os.path.abspath(self.working_dir), "data/registry")) - input_path = self.beat_path + "/tests/system/input/test.journal" - self._prepare_registry_file(registry_path, input_path) - - self.render_config_template( - inputs=[{ - "paths": [input_path], - "seek": "cursor", - "cursor_seek_fallback": "tail", - }], - ) - journalbeat_proc = self.start_beat() - - self.wait_until(lambda: self.output_has(lines=9)) - - exit_code = journalbeat_proc.kill_and_wait() - assert exit_code == 0 - - @unittest.skipUnless(sys.platform.startswith("linux"), "Journald only on Linux") - def test_read_events_with_include_matches(self): - """ - Journalbeat is able to pass matchers to the journal reader and read filtered messages. - """ - - self.render_config_template( - inputs=[{ - "paths": [ - self.beat_path + "/tests/system/input/test.journal", - ], - "seek": "head", - "include_matches": [ - "syslog.priority=6", - ] - }], - ) - journalbeat_proc = self.start_beat() - - self.wait_until(lambda: self.output_has(lines=6)) - - exit_code = journalbeat_proc.kill_and_wait() - assert exit_code == 0 - - @unittest.skipUnless(sys.platform.startswith("linux"), "Journald only on Linux") - def test_input_id(self): - """ - Journalbeat persists states with IDs. - """ - - self.render_config_template( - inputs=[ - { - "id": "serviceA.unit", - "paths": [ - self.beat_path + "/tests/system/input/test.journal", - ], - }, - { - "id": "serviceB unit", - "paths": [ - self.beat_path + "/tests/system/input/test.journal", - ], - } - ], - ) - - # Run the beat until it publishes events from both inputs. - journalbeat_proc = self.start_beat() - expected_msg = 'successfully published events' - self.wait_until(lambda: self.log_contains(expected_msg)) - self.wait_until(lambda: self.log_contains(expected_msg)) - journalbeat_proc.check_kill_and_wait() - - # Verify that registry paths are prefixed with an ID. - registry_data = self.read_registry() - self.assertIn("journal_entries", registry_data) - journal_entries = registry_data['journal_entries'] - self.assertGreater(len(journal_entries), 0) - for item in journal_entries: - self.assertTrue(item['path'].startswith('journald::'), "starts with journald::") - self.assertTrue(item['path'].find('::service'), "ends with ::") - - def _prepare_registry_file(self, registry_path, journal_path): - lines = [] - with open(registry_path, "r") as registry_file: - lines = registry_file.readlines() - lines[2] = "- path: " + journal_path + "\n" - - with open(registry_path, "w") as registry_file: - for line in lines: - registry_file.write(line) - - def read_registry(self): - registry_path = os.path.join(os.path.abspath(self.working_dir), "data", "registry") - - with open(registry_path, "r") as stream: - return yaml.safe_load(stream) - - -if __name__ == '__main__': - unittest.main() diff --git a/libbeat/docs/getting-started.asciidoc b/libbeat/docs/getting-started.asciidoc index 619ed2e03cb..7bb7043ae70 100644 --- a/libbeat/docs/getting-started.asciidoc +++ b/libbeat/docs/getting-started.asciidoc @@ -13,4 +13,4 @@ Each Beat is a separately installable product. To learn how to get started, see: If you're planning to use the {metrics-app} or the {logs-app} in {kib}, see {observability-guide}/analyze-metrics.html[Analyze metrics] -and {observability-guide}/monitor-logs.html[Monitor logs]. \ No newline at end of file +and {observability-guide}/monitor-logs.html[Monitor logs]. diff --git a/libbeat/docs/overview.asciidoc b/libbeat/docs/overview.asciidoc index 6306874112f..c76aa8558e5 100644 --- a/libbeat/docs/overview.asciidoc +++ b/libbeat/docs/overview.asciidoc @@ -8,7 +8,7 @@ for capturing: [horizontal] Audit data:: https://www.elastic.co/products/beats/auditbeat[Auditbeat] -Log files:: https://www.elastic.co/products/beats/filebeat[Filebeat] +Log files and journals:: https://www.elastic.co/products/beats/filebeat[Filebeat] Cloud data:: https://www.elastic.co/products/beats/functionbeat[Functionbeat] Availability:: https://www.elastic.co/products/beats/heartbeat[Heartbeat] Metrics:: https://www.elastic.co/products/beats/metricbeat[Metricbeat] diff --git a/libbeat/docs/shared-docker.asciidoc b/libbeat/docs/shared-docker.asciidoc index 2e7e04e6c7a..389bedb7b54 100644 --- a/libbeat/docs/shared-docker.asciidoc +++ b/libbeat/docs/shared-docker.asciidoc @@ -80,16 +80,6 @@ setup -E setup.kibana.host=kibana:5601 \ -------------------------------------------- endif::[] -ifeval::["{beatname_lc}"=="journalbeat"] -["source", "sh", subs="attributes"] --------------------------------------------- -docker run \ -{dockerimage} \ -setup -E setup.kibana.host=kibana:5601 \ --E output.elasticsearch.hosts=["elasticsearch:9200"] <1> <2> --------------------------------------------- -endif::[] - ifeval::["{beatname_lc}"=="packetbeat"] ["source", "sh", subs="attributes"] -------------------------------------------- @@ -161,24 +151,6 @@ docker run -d \ -------------------------------------------- endif::[] -ifeval::["{beatname_lc}"=="journalbeat"] -Make sure you include the path to the host's journal. The path might be -`/var/log/journal` or `/run/log/journal`. - -["source", "sh", subs="attributes"] --------------------------------------------- -sudo docker run -d \ - --name={beatname_lc} \ - --user=root \ - --volume="/var/log/journal:/var/log/journal" \ - --volume="/etc/machine-id:/etc/machine-id" \ - --volume="/run/systemd:/run/systemd" \ - --volume="/etc/hostname:/etc/hostname:ro" \ - {dockerimage} {beatname_lc} -e -strict.perms=false \ - -E output.elasticsearch.hosts=["elasticsearch:9200"] <1> <2> --------------------------------------------- -endif::[] - ifeval::["{beatname_lc}"=="metricbeat"] ["source", "sh", subs="attributes"] -------------------------------------------- diff --git a/libbeat/processors/decode_csv_fields/docs/decode_csv_fields.asciidoc b/libbeat/processors/decode_csv_fields/docs/decode_csv_fields.asciidoc index 53cc3787543..11746040970 100644 --- a/libbeat/processors/decode_csv_fields/docs/decode_csv_fields.asciidoc +++ b/libbeat/processors/decode_csv_fields/docs/decode_csv_fields.asciidoc @@ -9,7 +9,7 @@ experimental[] The `decode_csv_fields` processor decodes fields containing records in comma-separated format (CSV). It will output the values as an array of strings. -This processor is available for Filebeat and Journalbeat. +This processor is available for Filebeat. [source,yaml] ----------------------------------------------------- diff --git a/libbeat/scripts/Makefile b/libbeat/scripts/Makefile index 00d3231c371..7b16cf7cea8 100755 --- a/libbeat/scripts/Makefile +++ b/libbeat/scripts/Makefile @@ -141,11 +141,9 @@ ${BEAT_NAME}.test: $(GOFILES_ALL) .PHONY: crosscompile crosscompile: ## @build Cross-compile beat for the OS'es specified in GOX_OS variable. The binaries are placed in the build/bin directory. crosscompile: $(GOFILES) -ifneq ($(shell [[ $(BEAT_NAME) == journalbeat ]] && echo true ),true) go ${INSTALL_CMD} github.com/mitchellh/gox mkdir -p ${BUILD_DIR}/bin gox -output="${BUILD_DIR}/bin/{{.Dir}}-{{.OS}}-{{.Arch}}" -os="$(strip $(GOX_OS))" -osarch="$(strip $(GOX_OSARCH))" ${GOX_FLAGS} -endif .PHONY: check check: check-headers mage ## @build Checks project and source code if everything is according to standard diff --git a/script/renamed_fields.py b/script/renamed_fields.py index 2de05c012b4..08059698bf1 100644 --- a/script/renamed_fields.py +++ b/script/renamed_fields.py @@ -3,7 +3,7 @@ def migration(): - beats = ["Auditbeat", "Filebeat", "Heartbeat", "Journalbeat", "Metricbeat", "Packetbeat", "Winlogbeat"] + beats = ["Auditbeat", "Filebeat", "Heartbeat", "Metricbeat", "Packetbeat", "Winlogbeat"] for beat in beats: print(".{} renamed fields in 7.0".format(beat)) diff --git a/x-pack/elastic-agent/pkg/agent/program/program_test.go b/x-pack/elastic-agent/pkg/agent/program/program_test.go index 04c3519af65..b75ac9dceaa 100644 --- a/x-pack/elastic-agent/pkg/agent/program/program_test.go +++ b/x-pack/elastic-agent/pkg/agent/program/program_test.go @@ -400,10 +400,6 @@ func TestConfiguration(t *testing.T) { // programs: []string{"auditbeat"}, // expected: 1, // }, - // "journal_config": { - // programs: []string{"journalbeat"}, - // expected: 1, - // }, "fleet_server": { programs: []string{"fleet-server"}, expected: 1, diff --git a/x-pack/elastic-agent/pkg/agent/program/testdata/journal_config-journalbeat.yml b/x-pack/elastic-agent/pkg/agent/program/testdata/journal_config-journalbeat.yml deleted file mode 100644 index 60e6261fc0e..00000000000 --- a/x-pack/elastic-agent/pkg/agent/program/testdata/journal_config-journalbeat.yml +++ /dev/null @@ -1,15 +0,0 @@ -journalbeat: - inputs: - - type: log/journal - paths: [] - backoff: 1s - max_backoff: 20s - seek: cursor - cursor_seek_fallback: head - include_matches: [] - save_remote_hostname: false -output: - elasticsearch: - hosts: [127.0.0.1:9200, 127.0.0.1:9300] - username: elastic - password: changeme diff --git a/x-pack/elastic-agent/spec/journalbeat.yml.disabled b/x-pack/elastic-agent/spec/journalbeat.yml.disabled deleted file mode 100644 index ce35cc75aaf..00000000000 --- a/x-pack/elastic-agent/spec/journalbeat.yml.disabled +++ /dev/null @@ -1,22 +0,0 @@ -name: Journalbeat -cmd: journalbeat -args: ["-E", "setup.ilm.enabled=false", "-E", "setup.template.enabled=false"] -rules: -- filter_values: - selector: streams - key: type - values: - - log/journal -- copy: - from: streams - to: journalbeat -- rename: - from: journalbeat.streams - to: inputs -- filter: - selectors: - - journalbeat - - output - - keystore -when: HasItems(%{[journalbeat.inputs]}) && HasNamespace('output', 'elasticsearch', - 'redis', 'kafka', 'logstash') diff --git a/x-pack/journalbeat/cmd/root.go b/x-pack/journalbeat/cmd/root.go deleted file mode 100644 index d549011f73a..00000000000 --- a/x-pack/journalbeat/cmd/root.go +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package cmd - -import ( - journalbeatCmd "github.com/elastic/beats/v7/journalbeat/cmd" - "github.com/elastic/beats/v7/libbeat/cmd" - - _ "github.com/elastic/beats/v7/x-pack/libbeat/include" -) - -// RootCmd to handle beats cli -var RootCmd *cmd.BeatsRootCmd - -func init() { - settings := journalbeatCmd.JournalbeatSettings() - settings.ElasticLicensed = true - RootCmd = journalbeatCmd.Initialize(settings) -} diff --git a/x-pack/journalbeat/main.go b/x-pack/journalbeat/main.go deleted file mode 100644 index 232a3e6fc49..00000000000 --- a/x-pack/journalbeat/main.go +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. - -package main - -import ( - "os" - - "github.com/elastic/beats/v7/x-pack/journalbeat/cmd" - - _ "github.com/elastic/beats/v7/journalbeat/include" -) - -func main() { - if err := cmd.RootCmd.Execute(); err != nil { - os.Exit(1) - } -} diff --git a/x-pack/journalbeat/main_test.go b/x-pack/journalbeat/main_test.go deleted file mode 100644 index fcac188a31c..00000000000 --- a/x-pack/journalbeat/main_test.go +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License; -// you may not use this file except in compliance with the Elastic License. -package main - -// This file is mandatory as otherwise the journalbeat.test binary is not generated correctly. -import ( - "flag" - "testing" - - "github.com/elastic/beats/v7/journalbeat/cmd" - "github.com/elastic/beats/v7/libbeat/tests/system/template" -) - -var systemTest *bool - -func init() { - testing.Init() - systemTest = flag.Bool("systemTest", false, "Set to true when running system tests") - cmd.RootCmd.PersistentFlags().AddGoFlag(flag.CommandLine.Lookup("systemTest")) - cmd.RootCmd.PersistentFlags().AddGoFlag(flag.CommandLine.Lookup("test.coverprofile")) -} - -// Test started when the test binary is started. Only calls main. -func TestSystem(t *testing.T) { - if *systemTest { - main() - } -} - -func TestTemplate(t *testing.T) { - template.TestTemplate(t, cmd.Name, true) -} From 180e7f3e6d285f715880b87a4062981712cc1799 Mon Sep 17 00:00:00 2001 From: Dan Kortschak <90160302+efd6@users.noreply.github.com> Date: Tue, 30 Nov 2021 21:34:22 +1030 Subject: [PATCH 07/12] winlogbeat/sys/winevent: use reflect IsZero method (#29190) --- winlogbeat/sys/winevent/event_test.go | 22 ++++++++++++++++++---- winlogbeat/sys/winevent/maputil.go | 26 +++++++------------------- 2 files changed, 25 insertions(+), 23 deletions(-) diff --git a/winlogbeat/sys/winevent/event_test.go b/winlogbeat/sys/winevent/event_test.go index 4ed391b91be..b6d893957ed 100644 --- a/winlogbeat/sys/winevent/event_test.go +++ b/winlogbeat/sys/winevent/event_test.go @@ -26,6 +26,8 @@ import ( "time" "github.com/stretchr/testify/assert" + + "github.com/elastic/beats/v7/libbeat/common" ) const allXML = ` @@ -79,9 +81,10 @@ const allXML = ` func TestXML(t *testing.T) { allXMLTimeCreated, _ := time.Parse(time.RFC3339Nano, "2016-01-28T20:33:27.990735300Z") - var tests = []struct { - xml string - event Event + tests := []struct { + xml string + event Event + mapstr common.MapStr }{ { xml: allXML, @@ -150,6 +153,14 @@ func TestXML(t *testing.T) { }, }, }, + mapstr: common.MapStr{ + "event_id": "0", + "time_created": time.Time{}, + "user_data": common.MapStr{ + "Id": "{00000000-0000-0000-0000-000000000000}", + "xml_name": "Operation_ClientFailure", + }, + }, }, } @@ -160,6 +171,9 @@ func TestXML(t *testing.T) { continue } assert.Equal(t, test.event, event) + if test.mapstr != nil { + assert.Equal(t, test.mapstr, event.Fields()) + } if testing.Verbose() { json, err := json.MarshalIndent(event, "", " ") @@ -174,7 +188,7 @@ func TestXML(t *testing.T) { // Tests that control characters other than CR and LF are escaped // when the event is decoded. func TestInvalidXML(t *testing.T) { - evXML := strings.Replace(allXML, "%1", "\t \n\x1b", -1) + evXML := strings.ReplaceAll(allXML, "%1", "\t \n\x1b") ev, err := UnmarshalXML([]byte(evXML)) assert.Equal(t, nil, err) assert.Equal(t, "Creating WSMan shell on server with ResourceUri: \t\r\n\\u001b", ev.Message) diff --git a/winlogbeat/sys/winevent/maputil.go b/winlogbeat/sys/winevent/maputil.go index 45a265ae8c6..82ae2ad2a3c 100644 --- a/winlogbeat/sys/winevent/maputil.go +++ b/winlogbeat/sys/winevent/maputil.go @@ -20,6 +20,7 @@ package winevent import ( "fmt" "reflect" + "time" "github.com/elastic/beats/v7/libbeat/common" "github.com/elastic/beats/v7/winlogbeat/sys" @@ -80,25 +81,12 @@ func AddPairs(m common.MapStr, key string, pairs []KeyValue) common.MapStr { // isZero return true if the given value is the zero value for its type. func isZero(i interface{}) bool { - if i == nil { + switch i := i.(type) { + case nil: return true + case time.Time: + return false + default: + return reflect.ValueOf(i).IsZero() } - - v := reflect.ValueOf(i) - switch v.Kind() { - case reflect.Array, reflect.String: - return v.Len() == 0 - case reflect.Bool: - return !v.Bool() - case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: - return v.Int() == 0 - case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: - return v.Uint() == 0 - case reflect.Float32, reflect.Float64: - return v.Float() == 0 - case reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice: - return v.IsNil() - } - - return false } From 51463bf4ebcd4b425f8e751fa10edc651f0c2001 Mon Sep 17 00:00:00 2001 From: Nicolas Ruflin Date: Tue, 30 Nov 2021 14:50:15 +0100 Subject: [PATCH 08/12] [Elastic Agent] Add process error handling guidelines (#29152) We don't have a good place yet to document expectations around services run by Elastic Agent. I'm starting this document to have a place to add more content to it but I expect long term we need to figure out a better place. This guideline comes out of recent issues we had in Cloud and local setups of fleet-server (https://github.com/elastic/fleet-server/pull/883). We never set clear guidlines on what the expectation is of a service run by Elastic Agent and Elastic Agent itself. This PR is kick off the discussion. Co-authored-by: Gil Raphaelli --- x-pack/elastic-agent/GUIDELINES.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 x-pack/elastic-agent/GUIDELINES.md diff --git a/x-pack/elastic-agent/GUIDELINES.md b/x-pack/elastic-agent/GUIDELINES.md new file mode 100644 index 00000000000..3fa741fc991 --- /dev/null +++ b/x-pack/elastic-agent/GUIDELINES.md @@ -0,0 +1,9 @@ +# Guidelines + +This document contains architecture details around Elastic Agent and guidelines on how new inputs and processes should be built. + +## Processes running as service and error handling + +All the processes started by Elastic Agent are running as service. Each service is expected to handle local errors on its own and continue working. A process should only fail on startup if an invalid configuration is passed in. As soon as a process is running and partial updates to the config are made without restart, the service is expected to keep running but report the errors. + +A service that needs to do setup tasks on startup is expected to retry until it succeeds and not error out after a certain timeout. From 8fcad13cb02b26e881303ee3e6cb70d0c6be9b85 Mon Sep 17 00:00:00 2001 From: Tiago Queiroz Date: Tue, 30 Nov 2021 16:54:27 +0000 Subject: [PATCH 09/12] Adopt `parsers` in Filebeat's journald input (#29070) One test is added that runs Filebeat reading from a journald file, it only tests one parser, however that should be enough to ensure parsers are supported on journald input. Splits from #26130 --- CHANGELOG.next.asciidoc | 1 + .../config/filebeat.inputs.reference.yml.tmpl | 19 ++ filebeat/filebeat.reference.yml | 19 ++ filebeat/input/journald/config.go | 4 + filebeat/input/journald/environment_test.go | 286 ++++++++++++++++++ filebeat/input/journald/input.go | 62 +++- filebeat/input/journald/input_parsers_test.go | 62 ++++ .../testdata/input-multiline-parser.journal | Bin 0 -> 8388608 bytes libbeat/reader/message.go | 3 +- x-pack/filebeat/filebeat.reference.yml | 19 ++ 10 files changed, 464 insertions(+), 11 deletions(-) create mode 100644 filebeat/input/journald/environment_test.go create mode 100644 filebeat/input/journald/input_parsers_test.go create mode 100644 filebeat/input/journald/testdata/input-multiline-parser.journal diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index b8bb5c5d542..99e82e6dc32 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -345,6 +345,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Add support in aws-s3 input for s3 notification from SNS to SQS. {pull}28800[28800] - Add support in aws-s3 input for custom script parsing of s3 notifications. {pull}28946[28946] - Improve error handling in aws-s3 input for malformed s3 notifications. {issue}28828[28828] {pull}28946[28946] +- Add support for parsers on journald input {pull}29070[29070] *Heartbeat* diff --git a/filebeat/_meta/config/filebeat.inputs.reference.yml.tmpl b/filebeat/_meta/config/filebeat.inputs.reference.yml.tmpl index 8da4a2e75fd..a1c7166cac0 100644 --- a/filebeat/_meta/config/filebeat.inputs.reference.yml.tmpl +++ b/filebeat/_meta/config/filebeat.inputs.reference.yml.tmpl @@ -559,3 +559,22 @@ filebeat.inputs: # Configure stream to filter to a specific stream: stdout, stderr or all (default) #stream: all +#------------------------------ Journald input -------------------------------- +# Journald input is experimental. +#- type: journald + #enabled: true + #id: service-foo + + # You may wish to have separate inputs for each service. You can use + # include_matches to specify a list of filter expressions that are + # applied as a logical OR. You may specify filter + #include_matches: + #- _SYSTEMD_UNIT=foo.service + + # Parsers are also supported, here is an example of the multiline + # parser. + #parsers: + #- multiline: + #type: count + #count_lines: 3 + diff --git a/filebeat/filebeat.reference.yml b/filebeat/filebeat.reference.yml index 6f85f929d28..9b6a421d6c4 100644 --- a/filebeat/filebeat.reference.yml +++ b/filebeat/filebeat.reference.yml @@ -966,6 +966,25 @@ filebeat.inputs: # Configure stream to filter to a specific stream: stdout, stderr or all (default) #stream: all +#------------------------------ Journald input -------------------------------- +# Journald input is experimental. +#- type: journald + #enabled: true + #id: service-foo + + # You may wish to have separate inputs for each service. You can use + # include_matches to specify a list of filter expressions that are + # applied as a logical OR. You may specify filter + #include_matches: + #- _SYSTEMD_UNIT=foo.service + + # Parsers are also supported, here is an example of the multiline + # parser. + #parsers: + #- multiline: + #type: count + #count_lines: 3 + # =========================== Filebeat autodiscover ============================ diff --git a/filebeat/input/journald/config.go b/filebeat/input/journald/config.go index e3bf6bdd509..cb3b32e14c9 100644 --- a/filebeat/input/journald/config.go +++ b/filebeat/input/journald/config.go @@ -26,6 +26,7 @@ import ( "github.com/elastic/beats/v7/filebeat/input/journald/pkg/journalfield" "github.com/elastic/beats/v7/filebeat/input/journald/pkg/journalread" + "github.com/elastic/beats/v7/libbeat/reader/parser" ) // Config stores the options of a journald input. @@ -51,6 +52,9 @@ type config struct { // SaveRemoteHostname defines if the original source of the entry needs to be saved. SaveRemoteHostname bool `config:"save_remote_hostname"` + + // Parsers configuration + Parsers parser.Config `config:",inline"` } var errInvalidSeekFallback = errors.New("invalid setting for cursor_seek_fallback") diff --git a/filebeat/input/journald/environment_test.go b/filebeat/input/journald/environment_test.go new file mode 100644 index 00000000000..5c05759b2c2 --- /dev/null +++ b/filebeat/input/journald/environment_test.go @@ -0,0 +1,286 @@ +// Licensed to Elasticsearch B.V. under one or more contributor +// license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright +// ownership. Elasticsearch B.V. licenses this file to you under +// the Apache License, Version 2.0 (the "License"); you may +// not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +//go:build linux && cgo && withjournald +// +build linux,cgo,withjournald + +package journald + +import ( + "context" + "fmt" + "os" + "path/filepath" + "sync" + "testing" + "time" + + input "github.com/elastic/beats/v7/filebeat/input/v2" + v2 "github.com/elastic/beats/v7/filebeat/input/v2" + "github.com/elastic/beats/v7/libbeat/beat" + "github.com/elastic/beats/v7/libbeat/common" + "github.com/elastic/beats/v7/libbeat/common/acker" + "github.com/elastic/beats/v7/libbeat/logp" + "github.com/elastic/beats/v7/libbeat/statestore" + "github.com/elastic/beats/v7/libbeat/statestore/storetest" + "github.com/elastic/go-concert/unison" +) + +type inputTestingEnvironment struct { + t *testing.T + workingDir string + stateStore *testInputStore + pipeline *mockPipelineConnector + + pluginInitOnce sync.Once + plugin v2.Plugin + + wg sync.WaitGroup + grp unison.TaskGroup +} + +func newInputTestingEnvironment(t *testing.T) *inputTestingEnvironment { + return &inputTestingEnvironment{ + t: t, + workingDir: t.TempDir(), + stateStore: openTestStatestore(), + pipeline: &mockPipelineConnector{}, + } +} + +func (e *inputTestingEnvironment) getManager() v2.InputManager { + e.pluginInitOnce.Do(func() { + e.plugin = Plugin(logp.L(), e.stateStore) + }) + return e.plugin.Manager +} + +func (e *inputTestingEnvironment) mustCreateInput(config map[string]interface{}) v2.Input { + e.t.Helper() + e.grp = unison.TaskGroup{} + manager := e.getManager() + if err := manager.Init(&e.grp, v2.ModeRun); err != nil { + e.t.Fatalf("failed to initialise manager: %+v", err) + } + + c := common.MustNewConfigFrom(config) + inp, err := manager.Create(c) + if err != nil { + e.t.Fatalf("failed to create input using manager: %+v", err) + } + + return inp +} + +func (e *inputTestingEnvironment) startInput(ctx context.Context, inp v2.Input) { + e.wg.Add(1) + go func(wg *sync.WaitGroup, grp *unison.TaskGroup) { + defer wg.Done() + defer grp.Stop() + + inputCtx := input.Context{Logger: logp.L(), Cancelation: ctx} + inp.Run(inputCtx, e.pipeline) + }(&e.wg, &e.grp) +} + +// waitUntilEventCount waits until total count events arrive to the client. +func (e *inputTestingEnvironment) waitUntilEventCount(count int) { + e.t.Helper() + for { + sum := len(e.pipeline.GetAllEvents()) + if sum == count { + return + } + if count < sum { + e.t.Fatalf("too many events; expected: %d, actual: %d", count, sum) + } + time.Sleep(10 * time.Millisecond) + } +} + +func (e *inputTestingEnvironment) waitUntilInputStops() { + e.wg.Wait() +} + +func (e *inputTestingEnvironment) abspath(filename string) string { + return filepath.Join(e.workingDir, filename) +} + +func (e *inputTestingEnvironment) mustWriteFile(filename string, lines []byte) { + e.t.Helper() + path := e.abspath(filename) + if err := os.WriteFile(path, lines, 0644); err != nil { + e.t.Fatalf("failed to write file '%s': %+v", path, err) + } +} + +type testInputStore struct { + registry *statestore.Registry +} + +func openTestStatestore() *testInputStore { + return &testInputStore{ + registry: statestore.NewRegistry(storetest.NewMemoryStoreBackend()), + } +} + +func (s *testInputStore) Close() { + s.registry.Close() +} + +func (s *testInputStore) Access() (*statestore.Store, error) { + return s.registry.Get("filebeat") +} + +func (s *testInputStore) CleanupInterval() time.Duration { + return 24 * time.Hour +} + +type mockClient struct { + publishing []beat.Event + published []beat.Event + ackHandler beat.ACKer + closed bool + mtx sync.Mutex + canceler context.CancelFunc +} + +// GetEvents returns the published events +func (c *mockClient) GetEvents() []beat.Event { + c.mtx.Lock() + defer c.mtx.Unlock() + + return c.published +} + +// Publish mocks the Client Publish method +func (c *mockClient) Publish(e beat.Event) { + c.PublishAll([]beat.Event{e}) +} + +// PublishAll mocks the Client PublishAll method +func (c *mockClient) PublishAll(events []beat.Event) { + c.mtx.Lock() + defer c.mtx.Unlock() + + c.publishing = append(c.publishing, events...) + for _, event := range events { + c.ackHandler.AddEvent(event, true) + } + c.ackHandler.ACKEvents(len(events)) + + for _, event := range events { + c.published = append(c.published, event) + } +} + +func (c *mockClient) waitUntilPublishingHasStarted() { + for len(c.publishing) == 0 { + time.Sleep(10 * time.Millisecond) + } +} + +// Close mocks the Client Close method +func (c *mockClient) Close() error { + c.mtx.Lock() + defer c.mtx.Unlock() + + if c.closed { + return fmt.Errorf("mock client already closed") + } + + c.closed = true + return nil +} + +// mockPipelineConnector mocks the PipelineConnector interface +type mockPipelineConnector struct { + blocking bool + clients []*mockClient + mtx sync.Mutex +} + +// GetAllEvents returns all events associated with a pipeline +func (pc *mockPipelineConnector) GetAllEvents() []beat.Event { + pc.mtx.Lock() + defer pc.mtx.Unlock() + + var evList []beat.Event + for _, clientEvents := range pc.clients { + evList = append(evList, clientEvents.GetEvents()...) + } + + return evList +} + +// Connect mocks the PipelineConnector Connect method +func (pc *mockPipelineConnector) Connect() (beat.Client, error) { + return pc.ConnectWith(beat.ClientConfig{}) +} + +// ConnectWith mocks the PipelineConnector ConnectWith method +func (pc *mockPipelineConnector) ConnectWith(config beat.ClientConfig) (beat.Client, error) { + pc.mtx.Lock() + defer pc.mtx.Unlock() + + ctx, cancel := context.WithCancel(context.Background()) + c := &mockClient{ + canceler: cancel, + ackHandler: newMockACKHandler(ctx, pc.blocking, config), + } + + pc.clients = append(pc.clients, c) + + return c, nil + +} + +func (pc *mockPipelineConnector) cancelAllClients() { + pc.mtx.Lock() + defer pc.mtx.Unlock() + + for _, client := range pc.clients { + client.canceler() + } +} + +func (pc *mockPipelineConnector) cancelClient(i int) { + pc.mtx.Lock() + defer pc.mtx.Unlock() + + if len(pc.clients) < i+1 { + return + } + + pc.clients[i].canceler() +} + +func newMockACKHandler(starter context.Context, blocking bool, config beat.ClientConfig) beat.ACKer { + if !blocking { + return config.ACKHandler + } + + return acker.Combine(blockingACKer(starter), config.ACKHandler) + +} + +func blockingACKer(starter context.Context) beat.ACKer { + return acker.EventPrivateReporter(func(acked int, private []interface{}) { + for starter.Err() == nil { + } + }) +} diff --git a/filebeat/input/journald/input.go b/filebeat/input/journald/input.go index 7c8f5085dea..e9e2f0b40c4 100644 --- a/filebeat/input/journald/input.go +++ b/filebeat/input/journald/input.go @@ -34,6 +34,8 @@ import ( "github.com/elastic/beats/v7/libbeat/common/backoff" "github.com/elastic/beats/v7/libbeat/feature" "github.com/elastic/beats/v7/libbeat/logp" + "github.com/elastic/beats/v7/libbeat/reader" + "github.com/elastic/beats/v7/libbeat/reader/parser" ) type journald struct { @@ -43,6 +45,7 @@ type journald struct { CursorSeekFallback journalread.SeekMode Matches []journalfield.Matcher SaveRemoteHostname bool + Parsers parser.Config } type checkpoint struct { @@ -103,6 +106,7 @@ func configure(cfg *common.Config) ([]cursor.Source, cursor.Input, error) { CursorSeekFallback: config.CursorSeekFallback, Matches: config.Matches, SaveRemoteHostname: config.SaveRemoteHostname, + Parsers: config.Parsers, }, nil } @@ -123,7 +127,7 @@ func (inp *journald) Run( publisher cursor.Publisher, ) error { log := ctx.Logger.With("path", src.Name()) - checkpoint := initCheckpoint(log, cursor) + currentCheckpoint := initCheckpoint(log, cursor) reader, err := inp.open(ctx.Logger, ctx.Cancelation, src) if err != nil { @@ -131,23 +135,20 @@ func (inp *journald) Run( } defer reader.Close() - if err := reader.Seek(seekBy(ctx.Logger, checkpoint, inp.Seek, inp.CursorSeekFallback)); err != nil { + if err := reader.Seek(seekBy(ctx.Logger, currentCheckpoint, inp.Seek, inp.CursorSeekFallback)); err != nil { log.Error("Continue from current position. Seek failed with: %v", err) } + parser := inp.Parsers.Create(&readerAdapter{r: reader, canceler: ctx.Cancelation}) + for { - entry, err := reader.Next(ctx.Cancelation) + entry, err := parser.Next() if err != nil { return err } - event := eventFromFields(ctx.Logger, entry.RealtimeTimestamp, entry.Fields, inp.SaveRemoteHostname) - - checkpoint.Position = entry.Cursor - checkpoint.RealtimeTimestamp = entry.RealtimeTimestamp - checkpoint.MonotonicTimestamp = entry.MonotonicTimestamp - - if err := publisher.Publish(event, checkpoint); err != nil { + event := entry.ToEvent() + if err := publisher.Publish(event, event.Private); err != nil { return err } } @@ -204,3 +205,44 @@ func seekBy(log *logp.Logger, cp checkpoint, seek, defaultSeek journalread.SeekM } return mode, cp.Position } + +// readerAdapter is an adapter so journalread.Reader can +// behave like reader.Reader +type readerAdapter struct { + r *journalread.Reader + canceler input.Canceler +} + +func (r *readerAdapter) Close() error { + return r.r.Close() +} + +func (r *readerAdapter) Next() (reader.Message, error) { + data, err := r.r.Next(r.canceler) + if err != nil { + return reader.Message{}, err + } + + content := []byte(data.Fields["MESSAGE"]) + delete(data.Fields, "MESSAGE") + + fields := make(map[string]interface{}, len(data.Fields)) + for k, v := range data.Fields { + fields[k] = v + } + + m := reader.Message{ + Ts: time.UnixMicro(int64(data.RealtimeTimestamp)), + Content: content, + Bytes: len(content), + Fields: fields, + Private: checkpoint{ + Version: cursorVersion, + RealtimeTimestamp: data.RealtimeTimestamp, + MonotonicTimestamp: data.MonotonicTimestamp, + Position: data.Cursor, + }, + } + + return m, nil +} diff --git a/filebeat/input/journald/input_parsers_test.go b/filebeat/input/journald/input_parsers_test.go new file mode 100644 index 00000000000..6aadb031cd2 --- /dev/null +++ b/filebeat/input/journald/input_parsers_test.go @@ -0,0 +1,62 @@ +// Licensed to Elasticsearch B.V. under one or more contributor +// license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright +// ownership. Elasticsearch B.V. licenses this file to you under +// the Apache License, Version 2.0 (the "License"); you may +// not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +//go:build linux && cgo && withjournald +// +build linux,cgo,withjournald + +package journald + +import ( + "context" + "path" + "testing" + + "github.com/elastic/beats/v7/libbeat/common" +) + +// TestInputParsers ensures journald input support parsers, +// it only tests a single parser, but that is enough to ensure +// we're correctly using the parsers +func TestInputParsers(t *testing.T) { + inputParsersExpected := []string{"1st line\n2nd line\n3rd line", "4th line\n5th line\n6th line"} + env := newInputTestingEnvironment(t) + + inp := env.mustCreateInput(common.MapStr{ + "paths": []string{path.Join("testdata", "input-multiline-parser.journal")}, + "include_matches": []string{"_SYSTEMD_USER_UNIT=log-service.service"}, + "parsers": []common.MapStr{ + { + "multiline": common.MapStr{ + "type": "count", + "count_lines": 3, + }, + }, + }, + }) + + ctx, cancelInput := context.WithCancel(context.Background()) + env.startInput(ctx, inp) + env.waitUntilEventCount(len(inputParsersExpected)) + + for idx, event := range env.pipeline.clients[0].GetEvents() { + if got, expected := event.Fields["message"], inputParsersExpected[idx]; got != expected { + t.Errorf("expecting event message %q, got %q", expected, got) + } + } + + cancelInput() +} diff --git a/filebeat/input/journald/testdata/input-multiline-parser.journal b/filebeat/input/journald/testdata/input-multiline-parser.journal new file mode 100644 index 0000000000000000000000000000000000000000..9aecfd442f0c394344f7edc70ed4897419dc3800 GIT binary patch literal 8388608 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 zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNApP6C@>&n0oAmQ!|F2@oJafB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkKc=m_kclutGrb?EHeP6-eoK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72n>FK?z8jBCZi7i z9or!R0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z28O`cG5I7&)Pa#o3IYTO5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNC9H-W~n>A%kxwQt=<6Cgl<009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs zfmC46hh+(1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK%o2tx-U72NzAC_kXc3o1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF9FM?(bJM>+74>*}j3GdP009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjU};Lg+YNu;O)EuTCD2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV6R+2<*EspKK%QVAzvA5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U 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 z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB=F2X@?F3000001o>MJav@~EfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r z3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@ z0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VK zfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5 zV8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM z7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b* z1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd z0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwA zz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEj zFkrxd0RsjM7%*VKfB^#r3>YwAz<>b*1`HT5V8DO@0|pEjFkrxd0RsjM7%*VKfB^#r T3>YwAz<>b*1`HT5VBkFvBU;nY literal 0 HcmV?d00001 diff --git a/libbeat/reader/message.go b/libbeat/reader/message.go index 79116bfcfad..0eae606f80b 100644 --- a/libbeat/reader/message.go +++ b/libbeat/reader/message.go @@ -31,7 +31,8 @@ type Message struct { Content []byte // actual content read Bytes int // total number of bytes read to generate the message Fields common.MapStr // optional fields that can be added by reader - Meta common.MapStr + Meta common.MapStr // deprecated + Private interface{} } // IsEmpty returns true in case the message is empty diff --git a/x-pack/filebeat/filebeat.reference.yml b/x-pack/filebeat/filebeat.reference.yml index 50cb79578be..fae9d78fb5d 100644 --- a/x-pack/filebeat/filebeat.reference.yml +++ b/x-pack/filebeat/filebeat.reference.yml @@ -2954,6 +2954,25 @@ filebeat.inputs: # Configure stream to filter to a specific stream: stdout, stderr or all (default) #stream: all +#------------------------------ Journald input -------------------------------- +# Journald input is experimental. +#- type: journald + #enabled: true + #id: service-foo + + # You may wish to have separate inputs for each service. You can use + # include_matches to specify a list of filter expressions that are + # applied as a logical OR. You may specify filter + #include_matches: + #- _SYSTEMD_UNIT=foo.service + + # Parsers are also supported, here is an example of the multiline + # parser. + #parsers: + #- multiline: + #type: count + #count_lines: 3 + #------------------------------ NetFlow input -------------------------------- # Experimental: Config options for the Netflow/IPFIX collector over UDP input From db2903b1d35cce2d5f53f0aba80354b5ed4f6150 Mon Sep 17 00:00:00 2001 From: Alan Hinchliff Date: Tue, 30 Nov 2021 12:24:38 -0500 Subject: [PATCH 10/12] #28472 fix flaky tests in libbeat fmtstr to use time.UTC instead of time.Local (#28473) From 37b240a73bb3d8acd079fbcae388d0aff931e39c Mon Sep 17 00:00:00 2001 From: Michel Laterman <82832767+michel-laterman@users.noreply.github.com> Date: Tue, 30 Nov 2021 12:00:18 -0800 Subject: [PATCH 11/12] Change elastic-agent pprof default to false (#29155) Change agent.monitoring.pprof to false, allow it to toggle beat behaviour as well as the agent's. --- x-pack/elastic-agent/CHANGELOG.next.asciidoc | 2 +- x-pack/elastic-agent/_meta/config/common.p2.yml.tmpl | 2 +- .../elastic-agent/_meta/config/common.reference.p2.yml.tmpl | 2 +- .../_meta/config/elastic-agent.docker.yml.tmpl | 2 +- x-pack/elastic-agent/elastic-agent.docker.yml | 2 +- x-pack/elastic-agent/elastic-agent.reference.yml | 2 +- x-pack/elastic-agent/elastic-agent.yml | 2 +- .../pkg/core/monitoring/beats/beats_monitor.go | 6 +++++- x-pack/elastic-agent/pkg/core/monitoring/config/config.go | 2 +- 9 files changed, 13 insertions(+), 9 deletions(-) diff --git a/x-pack/elastic-agent/CHANGELOG.next.asciidoc b/x-pack/elastic-agent/CHANGELOG.next.asciidoc index d0de29fdea8..759fe407853 100644 --- a/x-pack/elastic-agent/CHANGELOG.next.asciidoc +++ b/x-pack/elastic-agent/CHANGELOG.next.asciidoc @@ -149,4 +149,4 @@ - Add diagnostics command to gather beat metadata. {pull}28265[28265] - Add diagnostics collect command to gather beat metadata, config, policy, and logs and bundle it into an archive. {pull}28461[28461] - Add `KIBANA_FLEET_SERVICE_TOKEN` to Elastic Agent container. {pull}28096[28096] -- Enable pprof endpoints for beats processes. Allow pprof endpoints for elastic-agent if enabled. {pull}28983[28983] +- Allow pprof endpoints for elastic-agent or beats if enabled. {pull}28983[28983] {pull}29155[29155] diff --git a/x-pack/elastic-agent/_meta/config/common.p2.yml.tmpl b/x-pack/elastic-agent/_meta/config/common.p2.yml.tmpl index a451165969f..de16df8ea7f 100644 --- a/x-pack/elastic-agent/_meta/config/common.p2.yml.tmpl +++ b/x-pack/elastic-agent/_meta/config/common.p2.yml.tmpl @@ -35,7 +35,7 @@ inputs: # metrics: true # # exposes /debug/pprof/ endpoints # # recommended that these endpoints are only enabled if the monitoring endpoint is set to localhost -# pprof: true +# pprof: false # # exposes agent metrics using http, by default sockets and named pipes are used # http: # # enables http endpoint diff --git a/x-pack/elastic-agent/_meta/config/common.reference.p2.yml.tmpl b/x-pack/elastic-agent/_meta/config/common.reference.p2.yml.tmpl index 922e6a4dd6a..43e48464630 100644 --- a/x-pack/elastic-agent/_meta/config/common.reference.p2.yml.tmpl +++ b/x-pack/elastic-agent/_meta/config/common.reference.p2.yml.tmpl @@ -109,7 +109,7 @@ inputs: # metrics: false # # exposes /debug/pprof/ endpoints # # recommended that these endpoints are only enabled if the monitoring endpoint is set to localhost -# pprof: true +# pprof: false # # exposes agent metrics using http, by default sockets and named pipes are used # http: # # enables http endpoint diff --git a/x-pack/elastic-agent/_meta/config/elastic-agent.docker.yml.tmpl b/x-pack/elastic-agent/_meta/config/elastic-agent.docker.yml.tmpl index a8236033303..69a80678db8 100644 --- a/x-pack/elastic-agent/_meta/config/elastic-agent.docker.yml.tmpl +++ b/x-pack/elastic-agent/_meta/config/elastic-agent.docker.yml.tmpl @@ -109,7 +109,7 @@ inputs: # metrics: false # # exposes /debug/pprof/ endpoints # # recommended that these endpoints are only enabled if the monitoring endpoint is set to localhost -# pprof: true +# pprof: false # # exposes agent metrics using http, by default sockets and named pipes are used # http: # # enables http endpoint diff --git a/x-pack/elastic-agent/elastic-agent.docker.yml b/x-pack/elastic-agent/elastic-agent.docker.yml index a1ef12ae405..9bf7307aacf 100644 --- a/x-pack/elastic-agent/elastic-agent.docker.yml +++ b/x-pack/elastic-agent/elastic-agent.docker.yml @@ -109,7 +109,7 @@ inputs: # metrics: false # # exposes /debug/pprof/ endpoints # # recommended that these endpoints are only enabled if the monitoring endpoint is set to localhost -# pprof: true +# pprof: false # # exposes agent metrics using http, by default sockets and named pipes are used # http: # # enables http endpoint diff --git a/x-pack/elastic-agent/elastic-agent.reference.yml b/x-pack/elastic-agent/elastic-agent.reference.yml index d41b7c54ed8..67922a1d89c 100644 --- a/x-pack/elastic-agent/elastic-agent.reference.yml +++ b/x-pack/elastic-agent/elastic-agent.reference.yml @@ -115,7 +115,7 @@ inputs: # metrics: false # # exposes /debug/pprof/ endpoints # # recommended that these endpoints are only enabled if the monitoring endpoint is set to localhost -# pprof: true +# pprof: false # # exposes agent metrics using http, by default sockets and named pipes are used # http: # # enables http endpoint diff --git a/x-pack/elastic-agent/elastic-agent.yml b/x-pack/elastic-agent/elastic-agent.yml index 2ea81fda476..d40b6518e8d 100644 --- a/x-pack/elastic-agent/elastic-agent.yml +++ b/x-pack/elastic-agent/elastic-agent.yml @@ -41,7 +41,7 @@ inputs: # metrics: true # # exposes /debug/pprof/ endpoints # # recommended that these endpoints are only enabled if the monitoring endpoint is set to localhost -# pprof: true +# pprof: false # # exposes agent metrics using http, by default sockets and named pipes are used # http: # # enables http endpoint diff --git a/x-pack/elastic-agent/pkg/core/monitoring/beats/beats_monitor.go b/x-pack/elastic-agent/pkg/core/monitoring/beats/beats_monitor.go index d506c22a6cb..cb0519f9806 100644 --- a/x-pack/elastic-agent/pkg/core/monitoring/beats/beats_monitor.go +++ b/x-pack/elastic-agent/pkg/core/monitoring/beats/beats_monitor.go @@ -122,8 +122,12 @@ func (b *Monitor) EnrichArgs(spec program.Spec, pipelineID string, args []string appendix = append(appendix, "-E", "http.enabled=true", "-E", "http.host="+endpoint, - "-E", "http.pprof.enabled=true", ) + if b.config.Pprof { + appendix = append(appendix, + "-E", "http.pprof.enabled=true", + ) + } } loggingPath := b.generateLoggingPath(spec, pipelineID) diff --git a/x-pack/elastic-agent/pkg/core/monitoring/config/config.go b/x-pack/elastic-agent/pkg/core/monitoring/config/config.go index 10a3a6bd4a9..10f220fcc5a 100644 --- a/x-pack/elastic-agent/pkg/core/monitoring/config/config.go +++ b/x-pack/elastic-agent/pkg/core/monitoring/config/config.go @@ -39,6 +39,6 @@ func DefaultConfig() *MonitoringConfig { Port: defaultPort, }, Namespace: defaultNamespace, - Pprof: true, + Pprof: false, } } From 1dd971490b684aa3d2e37bbe70526343ceece087 Mon Sep 17 00:00:00 2001 From: Andrew Kroh Date: Tue, 30 Nov 2021 21:47:25 -0500 Subject: [PATCH 12/12] [libbeat] Fix add_labels flattening of arrays values (#29211) * Fix add_labels flattening of arrays values The processor was not working as described in the docs. For example: ```yaml processors: - add_labels: labels: number: 1 with.dots: test nested: with.dots: nested array: - do - re - with.field: mi ``` ```json { "labels": { "array": [ "do", "re", { "with": { "field": "mi" } } ], "nested.with.dots": "nested", "number": 1, "with.dots": "test" } ``` ```json { "labels": { "number": 1, "with.dots": "test", "nested.with.dots": "nested", "array.0": "do", "array.1": "re", "array.2.with.field": "mi" } } ``` * Expose ucfg FlattenedKeys() in common.Config --- CHANGELOG.next.asciidoc | 3 +- libbeat/common/config.go | 5 +++ libbeat/processors/actions/add_labels.go | 39 ++++++++++++++++--- libbeat/processors/actions/add_labels_test.go | 11 ++++++ 4 files changed, 52 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 99e82e6dc32..fbef98864e6 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -142,6 +142,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Fix the wrong beat name on monitoring and state endpoint {issue}27755[27755] - Skip configuration checks in autodiscover for configurations that are already running {pull}29048[29048] - Fix `decode_json_processor` to always respect `add_error_key` {pull}29107[29107] +- Fix `add_labels` flattening of array values. {pull}29211[29211] *Auditbeat* @@ -188,7 +189,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Revert usageDetails api version to 2019-01-01. {pull}28995[28995] - Fix in `aws-s3` input regarding provider discovery through endpoint {pull}28963[28963] - Fix `threatintel.misp` filters configuration. {issue}27970[27970] -- Fix opening files on Windows in filestream so open files can be deleted. {issue}29113[29113] {pull}29180[29180] +- Fix opening files on Windows in filestream so open files can be deleted. {issue}29113[29113] {pull}29180[29180] *Heartbeat* diff --git a/libbeat/common/config.go b/libbeat/common/config.go index e4155c4f3af..3efff0b702c 100644 --- a/libbeat/common/config.go +++ b/libbeat/common/config.go @@ -259,6 +259,11 @@ func (c *Config) IsArray() bool { return c.access().IsArray() } +// FlattenedKeys return a sorted flattened views of the set keys in the configuration. +func (c *Config) FlattenedKeys() []string { + return c.access().FlattenedKeys(configOpts...) +} + func (c *Config) PrintDebugf(msg string, params ...interface{}) { selector := selectorConfigWithPassword filtered := false diff --git a/libbeat/processors/actions/add_labels.go b/libbeat/processors/actions/add_labels.go index 76696659265..93096898960 100644 --- a/libbeat/processors/actions/add_labels.go +++ b/libbeat/processors/actions/add_labels.go @@ -41,10 +41,15 @@ func createAddLabels(c *common.Config) (processors.Processor, error) { }{} err := c.Unpack(&config) if err != nil { - return nil, fmt.Errorf("fail to unpack the add_fields configuration: %s", err) + return nil, fmt.Errorf("fail to unpack the add_fields configuration: %w", err) } - return makeFieldsProcessor(LabelsKey, config.Labels.Flatten(), true), nil + flatLabels, err := flattenLabels(config.Labels) + if err != nil { + return nil, fmt.Errorf("failed to flatten labels: %w", err) + } + + return makeFieldsProcessor(LabelsKey, flatLabels, true), nil } // NewAddLabels creates a new processor adding the given object to events. Set @@ -53,8 +58,32 @@ func createAddLabels(c *common.Config) (processors.Processor, error) { // If labels contains nested objects, NewAddLabels will flatten keys into labels by // by joining names with a dot ('.') . // The labels will be inserted into the 'labels' field. -func NewAddLabels(labels common.MapStr, shared bool) processors.Processor { +func NewAddLabels(labels common.MapStr, shared bool) (processors.Processor, error) { + flatLabels, err := flattenLabels(labels) + if err != nil { + return nil, fmt.Errorf("failed to flatten labels: %w", err) + } + return NewAddFields(common.MapStr{ - LabelsKey: labels.Flatten(), - }, shared, true) + LabelsKey: flatLabels, + }, shared, true), nil +} + +func flattenLabels(labels common.MapStr) (common.MapStr, error) { + labelConfig, err := common.NewConfigFrom(labels) + if err != nil { + return nil, err + } + + flatKeys := labelConfig.FlattenedKeys() + flatMap := make(common.MapStr, len(flatKeys)) + for _, k := range flatKeys { + v, err := labelConfig.String(k, -1) + if err != nil { + return nil, err + } + flatMap[k] = v + } + + return flatMap, nil } diff --git a/libbeat/processors/actions/add_labels_test.go b/libbeat/processors/actions/add_labels_test.go index 24ddcbab58f..ca9dd22a528 100644 --- a/libbeat/processors/actions/add_labels_test.go +++ b/libbeat/processors/actions/add_labels_test.go @@ -59,5 +59,16 @@ func TestAddLabels(t *testing.T) { `{add_labels.labels: {l2: b, lc: b}}`, ), }, + "add array": { + event: common.MapStr{}, + want: common.MapStr{ + "labels": common.MapStr{ + "array.0": "foo", + "array.1": "bar", + "array.2.hello": "world", + }, + }, + cfg: single(`{add_labels: {labels: {array: ["foo", "bar", {"hello": "world"}]}}}`), + }, }) }