forked from Deuxfleurs/nixcfg
Scrape meterics from system process on each node
This commit is contained in:
parent
bd2abf3449
commit
7dcb4072dc
4 changed files with 121 additions and 65 deletions
|
@ -14,9 +14,7 @@ receivers:
|
||||||
scrape_interval: 5s
|
scrape_interval: 5s
|
||||||
static_configs:
|
static_configs:
|
||||||
- targets:
|
- targets:
|
||||||
- "10.42.2.21:3909"
|
- "localhost:3909"
|
||||||
- "10.42.2.22:3909"
|
|
||||||
- "10.42.2.23:3909"
|
|
||||||
|
|
||||||
exporters:
|
exporters:
|
||||||
logging:
|
logging:
|
||||||
|
|
|
@ -57,5 +57,64 @@ EOH
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
group "collector" {
|
||||||
|
network {
|
||||||
|
port "otel_grpc" {
|
||||||
|
static = 4317
|
||||||
|
}
|
||||||
|
port "apm" {
|
||||||
|
static = 8200
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,53 +2,13 @@ job "telemetry" {
|
||||||
datacenters = ["neptune"]
|
datacenters = ["neptune"]
|
||||||
type = "service"
|
type = "service"
|
||||||
|
|
||||||
group "grafana" {
|
group "kibana" {
|
||||||
count = 1
|
count = 1
|
||||||
|
|
||||||
constraint {
|
|
||||||
attribute = "${attr.unique.hostname}"
|
|
||||||
operator = "="
|
|
||||||
value = "carcajou"
|
|
||||||
}
|
|
||||||
|
|
||||||
network {
|
network {
|
||||||
port "otel_grpc" {
|
|
||||||
static = 4317
|
|
||||||
}
|
|
||||||
port "kibana" {
|
port "kibana" {
|
||||||
static = 5601
|
static = 5601
|
||||||
}
|
}
|
||||||
port "apm" {
|
|
||||||
static = 8200
|
|
||||||
}
|
|
||||||
port "grafana" {
|
|
||||||
static = 3333
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
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 "kibana" {
|
task "kibana" {
|
||||||
|
@ -74,28 +34,43 @@ EOH
|
||||||
memory = 1500
|
memory = 1500
|
||||||
cpu = 500
|
cpu = 500
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
task "apm" {
|
service {
|
||||||
driver = "docker"
|
tags = [
|
||||||
config {
|
"kibana",
|
||||||
image = "docker.elastic.co/apm/apm-server:7.17.0"
|
"tricot kibana.home.adnab.me",
|
||||||
network_mode = "host"
|
|
||||||
ports = [ "apm" ]
|
|
||||||
args = [ "--strict.perms=false" ]
|
|
||||||
volumes = [
|
|
||||||
"secrets/apm-config.yaml:/usr/share/apm-server/apm-server.yml:ro"
|
|
||||||
]
|
]
|
||||||
|
port = 5601
|
||||||
|
address_mode = "driver"
|
||||||
|
name = "kibana"
|
||||||
|
check {
|
||||||
|
type = "tcp"
|
||||||
|
port = 5601
|
||||||
|
address_mode = "driver"
|
||||||
|
interval = "60s"
|
||||||
|
timeout = "5s"
|
||||||
|
check_restart {
|
||||||
|
limit = 3
|
||||||
|
grace = "90s"
|
||||||
|
ignore_warnings = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
template {
|
group "grafana" {
|
||||||
data = file("../config/apm-config.yaml")
|
count = 1
|
||||||
destination = "secrets/apm-config.yaml"
|
|
||||||
|
constraint {
|
||||||
|
attribute = "${attr.unique.hostname}"
|
||||||
|
operator = "="
|
||||||
|
value = "carcajou"
|
||||||
}
|
}
|
||||||
|
|
||||||
resources {
|
network {
|
||||||
memory = 200
|
port "grafana" {
|
||||||
cpu = 100
|
static = 3333
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
# create elasticsearch folders on all nodes
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p /mnt/ssd/telemetry/es_data/nodes
|
||||||
|
chown 1000 /mnt/ssd/telemetry/es_data/nodes
|
||||||
|
```
|
||||||
|
|
||||||
|
# generate ca and tls certs for elasticsearch cluster
|
||||||
|
|
||||||
|
start a `bash` in an elasticsearch image, such as `docker.elastic.co/elasticsearch/elasticsearch:7.17.0`: `docker run -ti docker.elastic.co/elasticsearch/elasticsearch:7.17.0 bash`
|
||||||
|
|
||||||
|
generate a ca and node certs:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./bin/elasticsearch-certutil ca
|
||||||
|
./bin/elasticsearch-certutil cert --ca elastic-stack-ca.p12
|
||||||
|
```
|
||||||
|
|
||||||
|
copy `elastic-certificates.p12` to `/mnt/ssd/telemetry/es_data` in all nodes, and chown it:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
chown 1000 /mnt/ssd/telemetry/es_data/elastic-certificates.p12
|
||||||
|
```
|
||||||
|
|
||||||
# create elasticsearch passwords
|
# create elasticsearch passwords
|
||||||
|
|
||||||
in elasticsearch container
|
in elasticsearch container
|
||||||
|
|
Loading…
Reference in a new issue