Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions metricbeat/module/aerospike/_meta/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ARG AEROSPIKE_VERSION
FROM aerospike:${AEROSPIKE_VERSION}
FROM aerospike/aerospike-server-enterprise:${AEROSPIKE_VERSION}

RUN apt-get update && apt-get install -y netcat-openbsd
HEALTHCHECK --interval=1s --retries=90 CMD nc -z localhost 3000
HEALTHCHECK --interval=1s --retries=90 CMD asinfo -v "namespace/test" | grep "ns_cluster_size=1" -q
10 changes: 6 additions & 4 deletions metricbeat/module/aerospike/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
version: '2.3'

services:
aerospike:
image: docker.elastic.co/integrations-ci/beats-aerospike:${AEROSPIKE_VERSION:-3.9.0}-1
image: docker.elastic.co/integrations-ci/beats-aerospike:${AEROSPIKE_VERSION:-7.2.0.1}-1
ulimits:
nofile:
soft: 20000
hard: 20000
build:
context: ./_meta
args:
AEROSPIKE_VERSION: ${AEROSPIKE_VERSION:-3.9.0}
AEROSPIKE_VERSION: ${AEROSPIKE_VERSION:-7.2.0.1}
ports:
- 3000