1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| [Unit] Description=Thanos Receive Service After=network.target
[Service] User=root ExecStart=/usr/bin/thanos receive \ --grpc-address=0.0.0.0:10907 \ --remote-write.address=0.0.0.0:19291 \ # --objstore.config-file=/etc/thanos/bucket_config.yaml \ --log.level=debug \ --log.format=logfmt \ --tsdb.path=/root/thanos/data \ --tsdb.retention=15d \ --tsdb.min-block-duration=2h \ --tsdb.max-block-duration=2h \ --label=replica='"thanos"' Restart=on-failure
[Install] WantedBy=multi-user.target
|