remove influx from docker (#120)

This commit is contained in:
Tyr Mactire 2022-08-30 11:34:51 -07:00 committed by GitHub
parent 6b07ecbab5
commit 7fd0763f46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 42 deletions

View File

@ -9,6 +9,18 @@ services:
- POSTGRES_DB=test
networks:
- integration
faktory:
image: contribsys/faktory:1.6.1
command: /faktory -b :7419 -w :7420 -e production
environment:
- FAKTORY_PASSWORD=test
networks:
- integration
redis:
image: redis:6
command: redis-server --requirepass test
networks:
- integration
networks:
integration:

View File

@ -25,23 +25,3 @@ services:
ports:
- "127.0.0.1:6379:6379/tcp"
restart: always
influxdb:
image: influxdb:2.1
ports:
- 127.0.0.1:8086:8086/tcp
environment:
- DOCKER_INFLUXDB_INIT_MODE=setup
- DOCKER_INFLUXDB_INIT_USERNAME=test
- DOCKER_INFLUXDB_INIT_PASSWORD=test1234
- DOCKER_INFLUXDB_INIT_ORG=test
- DOCKER_INFLUXDB_INIT_BUCKET=test
- DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=test
restart: always
telegraf:
image: telegraf:1.22
ports:
- 127.0.0.1:8125:8125/udp
volumes:
- ./telegraf-test.conf:/etc/telegraf/telegraf.conf:ro
restart: always

View File

@ -1,22 +0,0 @@
[agent]
interval = "10s"
round_interval = true
metric_batch_size = 1000
metric_buffer_limit = 10000
collection_jitter = "0s"
flush_interval = "10s"
flush_jitter = "0s"
precision = "0s"
hostname = "test"
omit_hostname = false
[[outputs.influxdb_v2]]
urls = ["http://influxdb:8086"]
token = "test"
organization = "test"
bucket = "test"
[[inputs.statsd]]
service_address = ":8125"
percentiles = [50.0, 90.0, 99.0, 99.9, 99.95, 100.0]
parse_data_dog_tags = true