Possible new monitoring stack.
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Check and Create PR (push) Has been cancelled
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Docker Compose & Ansible Lints (push) Has been cancelled
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Cloudflare DNS Setup (push) Has been cancelled
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Update README & Generate List of Modified Services (push) Has been cancelled
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / PR Merge (push) Has been cancelled
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Deploy via Ansible & Docker Compose (push) Has been cancelled

This commit is contained in:
2025-02-13 06:51:49 -05:00
parent 397f09e0a4
commit 85a0307e55
3 changed files with 103 additions and 3 deletions
@@ -308,7 +308,7 @@ jobs:
uses: keatonLiu/docker-compose-remote-action@v1.2
with:
docker_compose_file: docker-compose.yml
docker_args: -d --remove-orphans --pull missing --parallel -1 ${{ steps.regenerate-readme-modified-services.outputs.modified_services }}
docker_args: -d --remove-orphans --pull missing --parallel -1
ssh_user: gitea-deploy
ssh_host: 192.168.1.254
ssh_host_public_key: ${{ secrets.RINOA_GITEA_PUBLIC_SSH_KEY }}
+71 -2
View File
@@ -3372,6 +3372,30 @@ services:
type: bind
bind:
create_host_path: true
netalertx:
container_name: netalertx
environment:
TZ: ${TZ}
PORT: 20211
image: jokobsk/netalertx:latest
network_mode: host
labels:
homepage.group: Infrastructure/App Performance Monitoring
homepage.name: NetAlertX
homepage.href: http://192.168.1.254:20211
homepage.icon: netalertx.svg
homepage.description: Network Monitoring
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_CONFIG}/netalertx/config:/app/config
- ${DOCKER_VOLUME_CONFIG}/netalertx/db:/app/db
# (optional) useful for debugging if you have issues setting up the container
# - ${DOCKER_VOLUME_CONFIG}/netalertx/logs:/app/log
# (API: OPTION 1) use for performance
- type: tmpfs
target: /app/api
# (API: OPTION 2) use when debugging issues
# - ${DOCKER_VOLUME_CONFIG}/netalertx/api:/app/api
netbird-dashboard:
container_name: netbird-dashboard
environment:
@@ -3661,6 +3685,40 @@ services:
type: bind
bind:
create_host_path: true
parseable:
command: [ "parseable", "s3-store" ]
depends_on:
- minio
environment:
P_STAGING_DIR: /staging
P_ADDR: 0.0.0.0:8000
P_USERNAME: admin
P_PASSWORD: ${PARSEABLE_PASSWORD}
P_S3_URL: http://minio:9000
P_S3_BUCKET: parseable
P_S3_ACCESS_KEY: ${PARSEABLE_S3_ACCESS_KEY}
P_S3_SECRET_KEY: ${PARSEABLE_S3_SECRET_KEY}
P_S3_REGION: us-east-fh-pln
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8000/api/v1/liveness" ]
interval: 15s
timeout: 20s
retries: 5
image: containers.parseable.com/parseable/parseable:latest
labels:
homepage.group: Infrastructure/App Performance Monitoring
homepage.name: Parseable
homepage.href: https://logs.${MY_TLD}
homepage.icon: parseable.svg
homepage.description: Backups for PostgreSQL
swag: enable
swag_proto: http
swag_port: 8000
swag_url: logs.${MY_TLD}
volumes:
- /parseable/staging:/staging
ports:
- 14453:8000
pgbackweb:
container_name: pgbackweb
depends_on:
@@ -3824,17 +3882,18 @@ services:
swag: enable
swag_auth: authelia
swag_proto: http
swag_port: 9000
swag_port: 8080
swag_url: portall.${MY_TLD}
swag.uptime-kuma.enabled: true
swag.uptime-kuma.monitor.url: https://portall.${MY_TLD}
homepage.group: System Administration
homepage.name: Portall
homepage.href: https://portainer.${MY_TLD}
homepage.href: https://portall.${MY_TLD}
homepage.icon: sh-portall.png
homepage.description: Management for container ports
ports:
- 8000:8080
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_CONFIG}/portall:/app/instance
postal-smtp:
@@ -6284,6 +6343,16 @@ services:
volumes:
- ${DOCKER_VOLUME_CONFIG}/hashicorp-vault/config/:/vault/config
- ${DOCKER_VOLUME_CONFIG}/hashicorp-vault/logs/:/vault/logs
vector:
image: timberio/vector:0.44.0-alpine
container_name: vector
environment:
DOCKER_HOST: tcp://dockerproxy:2375
ports:
- 60157:8686
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_CONFIG}/vector/vector.yaml:/etc/vector/vector.yaml:ro
wallabag:
container_name: wallabag
depends_on:
+31
View File
@@ -0,0 +1,31 @@
sources:
rinoa_docker_logs:
type: docker_logs
exclude_containers:
- zammad-init
sinks:
parseable:
type: http
method: post
batch:
max_bytes: 10485760
max_events: 1000
timeout_secs: 10
compression: gzip
inputs:
- rinoa_docker_logs
encoding:
codec: json
uri: http://parseable:8000/api/v1/ingest'
auth:
strategy: basic
user: admin
password: {{ lookup('community.hashi_vault.vault_kv2_get', 'env', engine_mount_point='rinoa-docker', url=vault_addr, token=vault_token_cleaned)['secret']['PARSEABLE_PASSWORD'] }}
request:
headers:
X-P-Stream: vectordemo
healthcheck:
enabled: true
path: 'http://parseable:8000/api/v1/liveness'
port: 80