2022-02-26 19:14:55 +00:00
|
|
|
job "telemetry-system" {
|
|
|
|
datacenters = ["neptune"]
|
|
|
|
type = "system"
|
|
|
|
|
|
|
|
group "elasticsearch" {
|
|
|
|
network {
|
|
|
|
port "elastic" {
|
|
|
|
static = 9200
|
|
|
|
}
|
|
|
|
port "elastic_internal" {
|
|
|
|
static = 9300
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task "elastic" {
|
|
|
|
driver = "docker"
|
|
|
|
config {
|
|
|
|
image = "docker.elastic.co/elasticsearch/elasticsearch:7.17.0"
|
|
|
|
network_mode = "host"
|
|
|
|
volumes = [
|
|
|
|
"/mnt/ssd/telemetry/es_data:/usr/share/elasticsearch/data",
|
|
|
|
]
|
|
|
|
ports = [ "elastic", "elastic_internal" ]
|
|
|
|
sysctl = {
|
|
|
|
#"vm.max_map_count" = "262144",
|
|
|
|
}
|
|
|
|
ulimit = {
|
|
|
|
memlock = "9223372036854775807:9223372036854775807",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resources {
|
2022-02-26 20:31:58 +00:00
|
|
|
memory = 1500
|
2022-02-26 19:14:55 +00:00
|
|
|
cpu = 500
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = <<EOH
|
|
|
|
node.name={{ env "attr.unique.hostname" }}
|
|
|
|
http.port=9200
|
|
|
|
transport.port=9300
|
|
|
|
cluster.name=es-deuxfleurs
|
|
|
|
cluster.initial_master_nodes=caribou,cariacou,carcajou
|
|
|
|
discovery.seed_hosts=carcajou,caribou,cariacou
|
|
|
|
bootstrap.memory_lock=true
|
|
|
|
xpack.security.enabled=true
|
|
|
|
xpack.security.authc.api_key.enabled=true
|
|
|
|
xpack.security.transport.ssl.enabled=true
|
|
|
|
xpack.security.transport.ssl.verification_mode=certificate
|
|
|
|
xpack.security.transport.ssl.client_authentication=required
|
|
|
|
xpack.security.transport.ssl.keystore.path=/usr/share/elasticsearch/data/elastic-certificates.p12
|
|
|
|
xpack.security.transport.ssl.truststore.path=/usr/share/elasticsearch/data/elastic-certificates.p12
|
|
|
|
ES_JAVA_OPTS=-Xms512M -Xmx512M
|
|
|
|
EOH
|
|
|
|
destination = "secrets/env"
|
|
|
|
env = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-26 19:31:57 +00:00
|
|
|
|
|
|
|
group "collector" {
|
|
|
|
network {
|
|
|
|
port "otel_grpc" {
|
|
|
|
static = 4317
|
|
|
|
}
|
|
|
|
port "apm" {
|
|
|
|
static = 8200
|
|
|
|
}
|
2022-02-26 21:06:37 +00:00
|
|
|
port "node_exporter" {
|
|
|
|
static = 9100
|
|
|
|
}
|
2022-02-26 19:31:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task "otel" {
|
|
|
|
driver = "docker"
|
|
|
|
config {
|
|
|
|
image = "otel/opentelemetry-collector-contrib:0.44.0"
|
|
|
|
args = [
|
|
|
|
"--config=/etc/otel-config.yaml",
|
|
|
|
]
|
|
|
|
network_mode = "host"
|
|
|
|
ports= [ "otel_grpc" ]
|
|
|
|
volumes = [
|
|
|
|
"secrets/otel-config.yaml:/etc/otel-config.yaml"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = file("../config/otel-config.yaml")
|
|
|
|
destination = "secrets/otel-config.yaml"
|
|
|
|
}
|
|
|
|
|
|
|
|
resources {
|
|
|
|
memory = 200
|
|
|
|
cpu = 100
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task "apm" {
|
|
|
|
driver = "docker"
|
|
|
|
config {
|
|
|
|
image = "docker.elastic.co/apm/apm-server:7.17.0"
|
|
|
|
network_mode = "host"
|
|
|
|
ports = [ "apm" ]
|
|
|
|
args = [ "--strict.perms=false" ]
|
|
|
|
volumes = [
|
|
|
|
"secrets/apm-config.yaml:/usr/share/apm-server/apm-server.yml:ro"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = file("../config/apm-config.yaml")
|
|
|
|
destination = "secrets/apm-config.yaml"
|
|
|
|
}
|
|
|
|
|
|
|
|
resources {
|
|
|
|
memory = 200
|
|
|
|
cpu = 100
|
|
|
|
}
|
|
|
|
}
|
2022-02-26 21:06:37 +00:00
|
|
|
|
|
|
|
task "node_exporter" {
|
|
|
|
driver = "docker"
|
|
|
|
config {
|
|
|
|
image = "quay.io/prometheus/node-exporter:v1.1.2"
|
|
|
|
network_mode = "host"
|
|
|
|
ports = [ "node_exporter" ]
|
|
|
|
volumes = [
|
|
|
|
"/:/host:ro,rslave"
|
|
|
|
]
|
|
|
|
args = [ "--path.rootfs=/host" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
resources {
|
|
|
|
cpu = 50
|
|
|
|
memory = 40
|
|
|
|
}
|
|
|
|
}
|
2022-02-26 19:31:57 +00:00
|
|
|
}
|
2022-02-26 19:14:55 +00:00
|
|
|
}
|
|
|
|
|