Skip to content

Commit

Permalink
Repository renamed to libbeat
Browse files Browse the repository at this point in the history
  • Loading branch information
Tudor Golubenco committed Apr 14, 2015
1 parent b923de7 commit b16f8c8
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
InfraBeat
libBeat
=========

The Beats are a collection of daemons that capture and ship data from your
Expand All @@ -11,4 +11,4 @@ possible examples being: a Beat for reading and shipping log files (LogBeat), a
Beat for various metrics (MetricsBeat), a Beat for real user monitoring
(RumBeat), etc.

InfraBeat is the repository containing the Go packages common to all the Beats.
libBeat is the repository containing the Go packages common to all the Beats.
2 changes: 1 addition & 1 deletion common/droppriv/droppriv_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"
"syscall"

"github.com/elastic/infrabeat/logp"
"github.com/elastic/libbeat/logp"
)

type RunOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion filters/filters.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package filters
import (
"fmt"

"github.com/elastic/infrabeat/common"
"github.com/elastic/libbeat/common"
)

// The FilterPlugin interface needs to be implemented
Expand Down
4 changes: 2 additions & 2 deletions filters/nop/nop.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
package nop

import (
"github.com/elastic/infrabeat/common"
"github.com/elastic/infrabeat/filters"
"github.com/elastic/libbeat/common"
"github.com/elastic/libbeat/filters"
)

type Nop struct {
Expand Down
2 changes: 1 addition & 1 deletion filters/nop/nop_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package nop
import (
"testing"

"github.com/elastic/infrabeat/common"
"github.com/elastic/libbeat/common"

"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion outputs/geolite.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"path/filepath"

"github.com/elastic/infrabeat/logp"
"github.com/elastic/libbeat/logp"

"github.com/nranchev/go-libGeoIP"
)
Expand Down
4 changes: 2 additions & 2 deletions outputs/output_elasticsearch.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"time"

"github.com/elastic/infrabeat/common"
"github.com/elastic/infrabeat/logp"
"github.com/elastic/libbeat/common"
"github.com/elastic/libbeat/logp"

"github.com/packetbeat/elastigo/api"
"github.com/packetbeat/elastigo/core"
Expand Down
4 changes: 2 additions & 2 deletions outputs/output_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"
"time"

"github.com/elastic/infrabeat/common"
"github.com/elastic/infrabeat/logp"
"github.com/elastic/libbeat/common"
"github.com/elastic/libbeat/logp"
)

const RotatorMaxFiles = 1000
Expand Down
2 changes: 1 addition & 1 deletion outputs/output_file_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"testing"

"github.com/elastic/infrabeat/logp"
"github.com/elastic/libbeat/logp"
)

func Test_Rotator(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions outputs/output_redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"strings"
"time"

"github.com/elastic/infrabeat/common"
"github.com/elastic/infrabeat/logp"
"github.com/elastic/libbeat/common"
"github.com/elastic/libbeat/logp"

"github.com/garyburd/redigo/redis"
)
Expand Down
2 changes: 1 addition & 1 deletion outputs/outputs.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package outputs
import (
"time"

"github.com/elastic/infrabeat/common"
"github.com/elastic/libbeat/common"
)

type OutputInterface interface {
Expand Down
4 changes: 2 additions & 2 deletions outputs/publish.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"
"time"

"github.com/elastic/infrabeat/common"
"github.com/elastic/infrabeat/logp"
"github.com/elastic/libbeat/common"
"github.com/elastic/libbeat/logp"
)

type PublisherType struct {
Expand Down

0 comments on commit b16f8c8

Please sign in to comment.