jenssaade on gh-pages
meetup (compare)
jenssaade on v0.7
jenssaade on master
Merge branch 'master' into deve… fixed class references after re… Merge branch 'release/v0.7' (compare)
jenssaade on develop
Merge branch 'master' into deve… fixed class references after re… (compare)
jenssaade on master
fixed URL (compare)
jenssaade on master
fixed URL (compare)
jenssaade on develop
refactored advisorcontext refactored repository and api t… adapting changes to commons-oss and 2 more (compare)
$ docker run verticleio/apexbeat
starting apexbeat
2017/05/17 14:45:44.702564 beat.go:276: INFO Home path: [/go/src/app] Config path: [/go/src/app] Data path: [/go/src/app/data] Logs path: [/go/src/app/logs]
2017/05/17 14:45:44.702823 beat.go:182: INFO Setup Beat: apexbeat; Version: 6.0.0-alpha1
2017/05/17 14:45:44.702869 processor.go:44: DBG Processors:
2017/05/17 14:45:44.702902 beat.go:188: DBG Initializing output plugins
2017/05/17 14:45:44.704363 metrics.go:23: INFO Metrics logging every 30s
2017/05/17 14:45:44.703196 output.go:254: INFO Loading template enabled. Reading template file: /go/src/app/apexbeat.template.json
2017/05/17 14:45:44.711508 output.go:265: INFO Loading template enabled for Elasticsearch 2.x. Reading template file: /go/src/app/apexbeat.template-es2x.json
2017/05/17 14:45:44.711839 client.go:123: INFO Elasticsearch url: http://elasticsearch:9200
2017/05/17 14:45:44.711969 outputs.go:108: INFO Activated elasticsearch as output plugin.
2017/05/17 14:45:44.712115 publish.go:238: DBG Create output worker
2017/05/17 14:45:44.712248 publish.go:280: DBG No output is defined to store the topology. The server fields might not be filled.
2017/05/17 14:45:44.712342 publish.go:295: INFO Publisher name: 4e6e3be15ebd
2017/05/17 14:45:44.712977 async.go:63: INFO Flush Interval set to: 1s
2017/05/17 14:45:44.713020 async.go:64: INFO Max Bulk Size set to: 50
2017/05/17 14:45:44.713037 async.go:72: DBG create bulk processing worker (interval=1s, bulk size=50)
2017/05/17 14:45:44.716309 beat.go:212: INFO apexbeat start running.
2017/05/17 14:45:44.716481 apexbeat.go:47: INFO apexbeat is running (port 8089)! Hit CTRL-C to stop it.
FROM golang:alpine
MAINTAINER Jens Saade "jens@verticle.io"
RUN apk update && \
apk upgrade && \
apk add git
RUN cd /go/src/
RUN git clone https://github.com/verticle-io/apexbeat.git
RUN mv apexbeat /go/src/app
ADD beatconfig/apexbeat.yml /go/src/app/apexbeat.yml
RUN go get -d -v app
RUN go install -v app
ADD entrypoint.sh /entrypoint.sh
RUN chmod a+x /entrypoint.sh
VOLUME /go/src/app
CMD ["/entrypoint.sh"]