Skip to content

Commit

Permalink
[CHG] mpucholblasco -> sequra
Browse files Browse the repository at this point in the history
  • Loading branch information
mpucholblasco committed Apr 7, 2019
1 parent 3cbd676 commit 41cebb8
Show file tree
Hide file tree
Showing 26 changed files with 80 additions and 602 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
.DS_Store
/s3logsbeat
/s3logsbeat.test
logs/
*.pyc
config.yml
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ before_install:
- umask 022
- chmod -R go-w $GOPATH/src/github.com/elastic/beats
# Redo the travis setup but with the elastic/libbeat path. This is needed so the package path is correct
- mkdir -p $HOME/gopath/src/github.com/mpucholblasco/s3logsbeat/
- rsync -az ${TRAVIS_BUILD_DIR}/ $HOME/gopath/src/github.com/mpucholblasco/s3logsbeat/
- export TRAVIS_BUILD_DIR=$HOME/gopath/src/github.com/mpucholblasco/s3logsbeat/
- cd $HOME/gopath/src/github.com/mpucholblasco/s3logsbeat/
- mkdir -p $HOME/gopath/src/github.com/sequra/s3logsbeat/
- rsync -az ${TRAVIS_BUILD_DIR}/ $HOME/gopath/src/github.com/sequra/s3logsbeat/
- export TRAVIS_BUILD_DIR=$HOME/gopath/src/github.com/sequra/s3logsbeat/
- cd $HOME/gopath/src/github.com/sequra/s3logsbeat/

install:
- true
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BEAT_NAME=s3logsbeat
BEAT_PATH=github.com/mpucholblasco/s3logsbeat
BEAT_PATH=github.com/sequra/s3logsbeat
BEAT_GOPATH=$(firstword $(subst :, ,${GOPATH}))
BEAT_URL=https://${BEAT_PATH}
SYSTEM_TESTS=false
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ It will create a clean git history for each major step. Note that you can always
To push S3logsbeat in the git repository, run the following commands:
```
git remote set-url origin https://github.com/mpucholblasco/s3logsbeat
git remote set-url origin https://github.com/sequra/s3logsbeat
git push origin master
```
Expand Down Expand Up @@ -336,8 +336,8 @@ make clean
To clone S3logsbeat from the git repository, run the following commands:
```
mkdir -p ${GOPATH}/src/github.com/mpucholblasco/s3logsbeat
git clone https://github.com/mpucholblasco/s3logsbeat ${GOPATH}/src/github.com/mpucholblasco/s3logsbeat
mkdir -p ${GOPATH}/src/github.com/sequra/s3logsbeat
git clone https://github.com/sequra/s3logsbeat ${GOPATH}/src/github.com/sequra/s3logsbeat
```
Expand Down
189 changes: 0 additions & 189 deletions _meta/fields.generated.yml

This file was deleted.

2 changes: 1 addition & 1 deletion beater/acker.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package beater

import (
"github.com/mpucholblasco/s3logsbeat/pipeline"
"github.com/sequra/s3logsbeat/pipeline"
)

// eventAcker handles publisher pipeline ACKs and forwards
Expand Down
4 changes: 2 additions & 2 deletions beater/channels.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package beater
import (
"sync"

"github.com/mpucholblasco/s3logsbeat/pipeline"
"github.com/mpucholblasco/s3logsbeat/registrar"
"github.com/sequra/s3logsbeat/pipeline"
"github.com/sequra/s3logsbeat/registrar"

"github.com/elastic/beats/libbeat/monitoring"
)
Expand Down
8 changes: 4 additions & 4 deletions beater/s3logsbeat.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"flag"
"fmt"

"github.com/mpucholblasco/s3logsbeat/config"
"github.com/mpucholblasco/s3logsbeat/crawler"
"github.com/mpucholblasco/s3logsbeat/pipeline"
"github.com/mpucholblasco/s3logsbeat/registrar"
"github.com/sequra/s3logsbeat/config"
"github.com/sequra/s3logsbeat/crawler"
"github.com/sequra/s3logsbeat/pipeline"
"github.com/sequra/s3logsbeat/registrar"

"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/pflag"

"github.com/mpucholblasco/s3logsbeat/beater"
"github.com/sequra/s3logsbeat/beater"

cmd "github.com/elastic/beats/libbeat/cmd"
)
Expand Down
6 changes: 3 additions & 3 deletions crawler/crawler.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import (
"fmt"
"sync"

"github.com/mpucholblasco/s3logsbeat/input"
"github.com/mpucholblasco/s3logsbeat/pipeline"
"github.com/sequra/s3logsbeat/input"
"github.com/sequra/s3logsbeat/pipeline"

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

// Used to load all available inputs
_ "github.com/mpucholblasco/s3logsbeat/include"
_ "github.com/sequra/s3logsbeat/include"
)

// Crawler object
Expand Down
Loading

0 comments on commit 41cebb8

Please sign in to comment.