Skip to content

Commit e653788

Browse files
committed
Merged in feature/SCFF-20 (pull request #1)
Feature/SCFF-20
2 parents ec8696d + 459bc39 commit e653788

18 files changed

Lines changed: 68 additions & 64 deletions

File tree

caching/caching_boltdb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package caching
33
import (
44
"fmt"
55
"github.com/boltdb/bolt"
6-
"github.com/cloudfoundry-community/firehose-to-syslog/logging"
6+
"bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/logging"
77
cfClient "github.com/cloudfoundry-community/go-cfclient"
88
json "github.com/mailru/easyjson"
99
"log"

caching/cachingfakes/fake_caching.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"sync"
66
"time"
77

8-
"github.com/cloudfoundry-community/firehose-to-syslog/caching"
8+
"bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/caching"
99
)
1010

1111
type FakeCaching struct {

ci/build-all/build-all

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ export ROOT_DIR=$PWD
44
export GOPATH=$PWD/gopath
55
export PATH=$GOPATH/bin:$PATH
66
export BUILD_NUMBER=`[ ${VERSION_APP} ] && cat ${VERSION_APP} || echo "0.0.0"`
7-
cd $GOPATH/src/github.com/cloudfoundry-community/firehose-to-syslog/
7+
cd $GOPATH/src/bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic
88

99
make clean
1010
make compile
1111

12-
mv dist ${ROOT_DIR}/firehose-to-syslog-ci-build/
12+
mv dist ${ROOT_DIR}/firehouse-to-sumologic-ci-build/

ci/build-all/build-all.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ image_resource:
88

99

1010
inputs:
11-
- name: firehose-to-syslog-ci
12-
path: gopath/src/github.com/cloudfoundry-community/firehose-to-syslog/
11+
- name: firehouse-to-sumologic-ci
12+
path: gopath/src/bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/
1313
- name: version
1414

1515
outputs:
16-
- name: firehose-to-syslog-ci-build
16+
- name: firehouse-to-sumologic-ci-build
1717

1818
run:
19-
path: gopath/src/github.com/cloudfoundry-community/firehose-to-syslog/ci/build-all/build-all
19+
path: gopath/src/bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/ci/build-all/build-all
2020
params:
2121
VERSION_APP:

ci/pipeline.yml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
groups:
3-
- name: firehose-to-syslog
3+
- name: firehouse-to-sumologic
44
jobs:
55
- unit-testing
66
- downstream-master
@@ -24,59 +24,59 @@ jobs:
2424
public: true
2525
serial: true
2626
plan:
27-
- get: firehose-to-syslog-ci
28-
resource: firehose-to-syslog-develop
27+
- get: firehouse-to-sumologic-ci
28+
resource: firehouse-to-sumologic-develop
2929
trigger: true
3030
- task: unit-testing
31-
file: firehose-to-syslog-ci/ci/unit-testing/unit-testing.yml
31+
file: firehouse-to-sumologic-ci/ci/unit-testing/unit-testing.yml
3232

3333

3434
- name: unit-testing-master
3535
public: true
3636
serial: true
3737
plan:
38-
- get: firehose-to-syslog-ci
39-
resource: firehose-to-syslog-master
38+
- get: firehouse-to-sumologic-ci
39+
resource: firehouse-to-sumologic-master
4040
trigger: true
4141
- task: unit-testing
42-
file: firehose-to-syslog-ci/ci/unit-testing/unit-testing.yml
42+
file: firehouse-to-sumologic-ci/ci/unit-testing/unit-testing.yml
4343

4444

4545
- name: tag-master
4646
public: true
4747
serial: true
4848
plan:
49-
- get: firehose-to-syslog-ci
50-
resource: firehose-to-syslog-master
49+
- get: firehouse-to-sumologic-ci
50+
resource: firehouse-to-sumologic-master
5151
passed: [unit-testing-master]
5252
- put: version
5353
params: {bump: minor}
54-
- put: firehose-to-syslog-master
54+
- put: firehouse-to-sumologic-master
5555
params:
5656
only_tag: true
57-
repository: firehose-to-syslog-ci
57+
repository: firehouse-to-sumologic-ci
5858
tag: version/number
5959

6060

6161
- name: ship-it
6262
public: true
6363
serial: true
6464
plan:
65-
- get: firehose-to-syslog-ci
66-
resource: firehose-to-syslog-master
65+
- get: firehouse-to-sumologic-ci
66+
resource: firehouse-to-sumologic-master
6767
passed: [tag-master]
6868
trigger: true
6969
- get: version
7070
- task: build-binary
71-
file: firehose-to-syslog-ci/ci/build-all/build-all.yml
71+
file: firehouse-to-sumologic-ci/ci/build-all/build-all.yml
7272
params:
7373
VERSION_APP: version/number
7474
- put: gh-release
7575
params :
7676
name: version/number
7777
tag: version/number
7878
globs:
79-
- firehose-to-syslog-ci-build/dist/*/*/*
79+
- firehouse-to-sumologic-ci-build/dist/*/*/*
8080

8181

8282

@@ -86,16 +86,16 @@ jobs:
8686
serial: true
8787
plan:
8888
- aggregate:
89-
- get: firehose-to-syslog-ci
90-
resource: firehose-to-syslog-develop
89+
- get: firehouse-to-sumologic-ci
90+
resource: firehouse-to-sumologic-develop
9191
- get: release-repo-master
92-
resource: firehose-to-syslog-master
92+
resource: firehouse-to-sumologic-master
9393
trigger: true
9494
passed: [tag-master]
9595
- get: release-repo
96-
resource: firehose-to-syslog-merge-target
96+
resource: firehouse-to-sumologic-merge-target
9797
- task: merge-master-to-develop
98-
file: firehose-to-syslog-ci/ci/merge-master-to-develop/merge-master-to-develop.yml
98+
file: firehouse-to-sumologic-ci/ci/merge-master-to-develop/merge-master-to-develop.yml
9999
params:
100100
GIT_USERNAME: {{github-username}}
101101
GIT_EMAIL: {{github-email}}
@@ -104,24 +104,24 @@ jobs:
104104

105105

106106
resources:
107-
- name: firehose-to-syslog-merge-target
107+
- name: firehouse-to-sumologic-merge-target
108108
type: git
109109
source:
110110
branch: develop
111111
private_key: {{private-key-github-concourse}}
112-
uri: git@github.com:cloudfoundry-community/firehose-to-syslog.git
112+
uri: git@github.com:cloudfoundry-community/firehouse-to-sumologic.git
113113

114-
- name: firehose-to-syslog-develop
114+
- name: firehouse-to-sumologic-develop
115115
type: git
116116
source:
117-
uri: git@github.com:cloudfoundry-community/firehose-to-syslog.git
117+
uri: git@github.com:cloudfoundry-community/firehouse-to-sumologic.git
118118
branch: develop
119119
private_key: {{private-key-github-concourse}}
120120

121-
- name: firehose-to-syslog-master
121+
- name: firehouse-to-sumologic-master
122122
type: git
123123
source:
124-
uri: git@github.com:cloudfoundry-community/firehose-to-syslog.git
124+
uri: git@github.com:cloudfoundry-community/firehouse-to-sumologic.git
125125
branch: master
126126
private_key: {{private-key-github-concourse}}
127127

@@ -131,14 +131,14 @@ resources:
131131
type: github-release
132132
source:
133133
user: cloudfoundry-community
134-
repository: firehose-to-syslog
134+
repository: firehouse-to-sumologic
135135
access_token: {{github-access-token}}
136136

137137
- name: version
138138
type: semver-gwenn
139139
source:
140140
driver: git
141-
uri: git@github.com:cloudfoundry-community/firehose-to-syslog.git
141+
uri: git@github.com:cloudfoundry-community/firehouse-to-sumologic.git
142142
branch: version
143143
file: version
144144
private_key: {{private-key-github-concourse}}

ci/unit-testing/unit-testing

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export PATH=$GOPATH/bin:$PATH
88
go get github.com/onsi/ginkgo/ginkgo
99
go get github.com/onsi/gomega
1010

11-
cd $GOPATH/src/github.com/cloudfoundry-community/firehose-to-syslog/
11+
cd $GOPATH/src/bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/
1212

1313

1414
make test

ci/unit-testing/unit-testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ image_resource:
77
repository: getourneau/alpine-golang-bash
88

99
inputs:
10-
- name: firehose-to-syslog-ci
11-
path: gopath/src/github.com/cloudfoundry-community/firehose-to-syslog/
10+
- name: firehouse-to-sumologic-ci
11+
path: gopath/src/bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/
1212

1313
run:
14-
path: gopath/src/github.com/cloudfoundry-community/firehose-to-syslog/ci/unit-testing/unit-testing
14+
path: gopath/src/bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/ci/unit-testing/unit-testing
1515

eventRouting/eventRouting_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package eventRouting_test
22

33
import (
4-
. "github.com/cloudfoundry-community/firehose-to-syslog/caching/cachingfakes"
5-
. "github.com/cloudfoundry-community/firehose-to-syslog/eventRouting"
6-
. "github.com/cloudfoundry-community/firehose-to-syslog/logging/loggingfakes"
4+
. "bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/caching/cachingfakes"
5+
. "bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/eventRouting"
6+
. "bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/logging/loggingfakes"
77
. "github.com/cloudfoundry/sonde-go/events"
88
. "github.com/onsi/ginkgo"
99
. "github.com/onsi/gomega"

eventRouting/eventrouting.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package eventRouting
33
import (
44
"fmt"
55
"github.com/Sirupsen/logrus"
6-
"github.com/cloudfoundry-community/firehose-to-syslog/caching"
7-
fevents "github.com/cloudfoundry-community/firehose-to-syslog/events"
8-
"github.com/cloudfoundry-community/firehose-to-syslog/extrafields"
9-
"github.com/cloudfoundry-community/firehose-to-syslog/logging"
6+
"bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/caching"
7+
fevents "bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/events"
8+
"bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/extrafields"
9+
"bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/logging"
1010
"github.com/cloudfoundry/sonde-go/events"
1111
"os"
1212
"sort"

events/events.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package events
33
import (
44
"fmt"
55
"github.com/Sirupsen/logrus"
6-
"github.com/cloudfoundry-community/firehose-to-syslog/caching"
7-
"github.com/cloudfoundry-community/firehose-to-syslog/utils"
6+
"bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/caching"
7+
"bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/utils"
88
"github.com/cloudfoundry/sonde-go/events"
99
)
1010

0 commit comments

Comments
 (0)