forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinclude.go
More file actions
19 lines (15 loc) · 802 Bytes
/
include.go
File metadata and controls
19 lines (15 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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 include
import (
// Register Fleet
_ "github.com/elastic/beats/v7/x-pack/libbeat/management"
// register processors
_ "github.com/elastic/beats/v7/x-pack/libbeat/processors/add_cloudfoundry_metadata"
_ "github.com/elastic/beats/v7/x-pack/libbeat/processors/add_nomad_metadata"
// register autodiscover providers
_ "github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws/ec2"
_ "github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws/elb"
_ "github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/nomad"
)