blob: 68f7f6709c8d976f8937eed881eb9c0dd80f4bd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
[Unit]
Description=vminsert - accepts the ingested data and spreads it among vmstorage nodes according to consistent hashing over metric name and all its labels
Documentation=https://docs.victoriametrics.com/cluster-victoriametrics
Requires=network-online.target
Before=vmauth.service
After=network-online.target nss-lookup.target basic.target
Wants=network-online.target nss-lookup.target
[Service]
User=victoriametrics
Group=victoriametrics
EnvironmentFile=-/etc/conf.d/vminsert
ExecStart=/usr/bin/vminsert --loggerDisableTimestamps --loggerOutput="stdout" $VMINSERT_ARGS
ExecStop=/bin/kill -s SIGTERM $MAINPID
ExecReload=/bin/kill -HUP $MAINPID
LimitNOFILE=1048576
LimitNPROC=1048576
SyslogIdentifier=vminsert
NoNewPrivileges=true
PrivateTmp=true
ProtectHome=true
ProtectSystem=full
ProtectHostname=true
ProtectControlGroups=true
ProtectKernelModules=true
ProtectKernelTunables=true
LockPersonality=true
RestrictRealtime=true
RestrictNamespaces=true
MemoryDenyWriteExecute=true
PrivateDevices=true
CapabilityBoundingSet=
[Install]
WantedBy=multi-user.target
|