Skip to content

Commit

Permalink
missing changing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ph committed Dec 21, 2017
1 parent 6501bed commit 0af0e45
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion filebeat/crawler/crawler.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

"github.com/elastic/beats/filebeat/channel"
"github.com/elastic/beats/filebeat/fileset"
"github.com/elastic/beats/filebeat/input"
"github.com/elastic/beats/filebeat/input/file"
input "github.com/elastic/beats/filebeat/prospector"
"github.com/elastic/beats/filebeat/registrar"
"github.com/elastic/beats/libbeat/cfgfile"
"github.com/elastic/beats/libbeat/common"
Expand Down
2 changes: 1 addition & 1 deletion filebeat/fileset/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/mitchellh/hashstructure"

"github.com/elastic/beats/filebeat/channel"
input "github.com/elastic/beats/filebeat/prospector"
"github.com/elastic/beats/filebeat/input"
"github.com/elastic/beats/filebeat/registrar"
"github.com/elastic/beats/libbeat/cfgfile"
"github.com/elastic/beats/libbeat/common"
Expand Down
5 changes: 2 additions & 3 deletions filebeat/prospector/prospector.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//
//+build go1.9

// Package prospector allows to define new way of reading data in Filebeat
// Deprecated: See the input package
Expand All @@ -10,10 +10,9 @@ import "github.com/elastic/beats/filebeat/input"
// Deprecated: See input.input
type Prospectorer = input.Input

// Runner encapsulate the lifecycle of a prospectorer
// Prospector encapsulate the lifecycle of a prospectorer
// Deprecated: See input.Runner
type Prospector = input.Runner
type Runner = input.Runner

// Context wrapper for backward compatibility
// Deprecated: See input.Context
Expand Down

0 comments on commit 0af0e45

Please sign in to comment.