-
Notifications
You must be signed in to change notification settings - Fork 11
/
checkrr.yaml.example
194 lines (194 loc) · 4 KB
/
checkrr.yaml.example
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
lang: "en-us"
checkrr:
checkpath:
- "/Movies/"
- "/Movies-4k/"
- "/tv/"
- "/anime/"
- "/Music/"
database: ./checkrr.db
debug: true
csvfile: "./badfiles.csv"
cron: "@daily"
ignorehidden: true
ignorepaths:
- '/tv/ignored'
removevideo:
- "avi"
- "avc"
- "h265"
removelang:
- unknown
removeaudio:
- "DTS - 5.1"
ignoreexts:
- .txt
- .nfo
- .nzb
- .url
logs:
stdout:
out: stdout
formatter: default
file:
out: file
path: "/path/to/log"
formatter: default
jsonfile:
out: file
path: "/path/to/file"
formatter: json
syslog:
out: syslog
formatter: default
protocol: udp
addr: "localhost:514"
arr:
radarr:
process: false
service: radarr # should be one of: sonarr radarr lidarr
address: ""
apikey: ""
baseurl: /
port: 7878
ssl: false
mappings: # maps directories between docker and arr services
"/mnt/user/Movies/": "/Movies/" # what radarr sees: what checkrr sees
radarr-4k:
process: false
service: radarr
address: ""
apikey: ""
baseurl: /
port: 7979
ssl: true
mappings:
"/mnt/user/Movies-4k/": "/Movies-4k/"
sonarr:
process: false
service: sonarr
address: 127.0.0.1
apikey: ""
baseurl: /
port: 8989
ssl: false
mappings:
"/mnt/user/tv/": "/tv/"
anime:
process: false
service: sonarr
address: 127.0.0.1
apikey: ""
baseurl: /
port: 8888
ssl: false
mappings:
"/mnt/user/anime/": "/anime/"
lidarr:
process: false
service: lidarr
address: 127.0.0.1
apikey: ""
baseurl: /
port: 8686
ssl: false
mappings:
"/mnt/user/Music/": "/Music"
notifications:
discord:
url: ""
notificationtypes:
- reacquire
- unknowndetected
- startrun
- endrun
healthchecks:
url: ""
notificationtypes: # start and end are required
- startrun
- endrun
- reacquire
telegram:
apitoken: ""
username: "@username" # This must start with an @ to send to a user, otherwise, list the channel name
chatid: 0 # Start checkrr, DM the bot, and then trigger a run. Checkrr will log the chatid to the console. Place the chatid value here.
notificationtypes:
- reacquire
- unknowndetected
- startrun
- endrun
webhook:
url: ""
notificationtypes:
- reacquire
- unknowndetected
- startrun
- endrun
pushbullet:
apitoken: ""
devices:
- myDevice1
- iPhone14
notificationtypes:
- reacquire
- unknowndetected
- startrun
- endrun
pushover:
apitoken: ""
recipient: ""
notificationtypes:
- reacquire
- unknowndetected
- startrun
- endrun
gotify:
url: ""
authtoken: ""
notificationtypes:
- reacquire
- unknowndetected
- startrun
- endrun
splunk:
url: ""
token: ""
notificationtypes:
- reacquire
- unknowndetected
- startrun
- endrun
ntfy:
host: ""
topic: ""
token: "" # either use a token or a user and pass, not both.
user: ""
pass: ""
notificationtypes:
- reacquire
- unknowndetected
- startrun
- endrun
stats: # These will slow down the runtime substantually, but... DATA
influxdb1:
url: ""
user: "" # leave this and pass blank if your server requires no authentication
pass: ""
bucket: "checkrr" # this database must exist already. Use influx command to create the database.
influxdb2:
url: ""
token: ""
org: "default"
bucket: "checkrr"
splunk:
address: "https://127.0.0.1:8088/services/collector" # You must have HTTP Event Collection enabled and configured
token: "HEC Token" # this is the HEC token for your input. Configure it to force ingestion into a metrics index
webserver:
port: 8585
tls: false
certs:
cert: "/path/to/cert.pem"
key: "/path/to/privkey.pem"
baseurl: "/"
trustedproxies:
- 127.0.0.1