-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtauticord.yaml.example
511 lines (506 loc) · 17.4 KB
/
tauticord.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
# yaml-language-server: $schema=https://raw.githubusercontent.com/nwithan8/tauticord/master/.schema/config_v2.schema.json
# Tautulli settings
Tautulli:
# The URL of the Tautulli server
URL: "http://127.0.0.1:8181"
# The API key for the Tautulli server
APIKey: "thisismyapikey"
# Whether to use a self-signed certificate
UseSelfSignedCert: false
# How often (in seconds) the bot pulls new data. 5-second minimum built-in, it's for your own good
RefreshSeconds: 15
# The message to display when a stream is terminated
TerminateMessage: "Your stream has been terminated. Please contact the admin in the Discord."
# Discord settings
Discord:
# The token for the Discord bot
BotToken: "thisismydiscordbottoken"
# The ID of the server
ServerID: '000000000000000001' # Right-click on your server's icon -> "Copy ID"
# List of admin IDs
AdminIDs:
- '00000000000000000001' # Right-click on your profile picture -> "Copy ID"
# Whether to post a live stats summary message
PostSummaryMessage: true
# The name of the channel where the live stats summary message will be posted
ChannelName: "tautulli"
# Whether to enable termination capabilities (requires Plex Pass)
EnableTermination: true
# Whether to enable slash commands
EnableSlashCommands: true
# Settings for the activity/status message
StatusMessage:
# Whether to enable the status message
Enable: true
# A custom message to display in the status message, overriding the default message
CustomMessage: ''
# Whether to display the number of streams in the default message
ShowStreamCount: true
# Display settings
Display:
# Anonymization settings
Anonymize:
# Whether to hide bandwidth
HideBandwidth: false
# Whether to hide ETA
HideETA: false
# Whether to hide platforms
HidePlatforms: false
# Whether to hide player names
HidePlayerNames: false
# Whether to hide progress
HideProgress: false
# Whether to hide quality
HideQuality: false
# Whether to hide transcode
HideTranscode: false
# Whether to hide usernames
HideUsernames: false
# The name of the server
ServerName: ''
# The thousands separator
ThousandsSeparator: ''
# Time settings
Time:
# The time zone of the server
ServerTimeZone: America/Denver
# Whether to use 24 hour time
Use24HourTime: false
# Whether to use Plex users' names instead of usernames
UseFriendlyNames: true
# Extra settings
Extras:
# Whether to allow analytics. See README.md for details
AllowAnalytics: true
# Whether to enable reminders to update Tauticord
EnableUpdateReminders: true
# Stats settings
Stats:
# Activity stats about the Plex server
Activity:
# The name of the category
CategoryName: "Plex Stats"
# Whether to enable the stats
Enable: true
# The types of stats
StatTypes:
# Bandwidth settings
Bandwidth:
# The custom name
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable bandwidth stats
Enable: false
# The ID of the voice channel
VoiceChannelID: 0
# Local bandwidth settings
LocalBandwidth:
# The custom name
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable local bandwidth stats
Enable: false
# The ID of the voice channel
VoiceChannelID: 0
# Plex server availability settings
PlexServerAvailability:
# The custom name
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable Plex server availability stats
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
# Remote bandwidth settings
RemoteBandwidth:
# The custom name
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable remote bandwidth stats
Enable: false
# The ID of the voice channel
VoiceChannelID: 0
# Stream count settings
StreamCount:
# The custom name
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable stream count stats
Enable: false
# The ID of the voice channel
VoiceChannelID: 0
# Transcode count settings
TranscodeCount:
# The custom name
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable transcode count stats
Enable: false
# The ID of the voice channel
VoiceChannelID: 0
# Stats about the Plex server's libraries
Libraries:
# Whether to enable library stats
Enable: true
# The name of the category
CategoryName: "Plex Libraries"
# How often (in seconds) to refresh the stats
RefreshSeconds: 3600
# The libraries
Libraries:
# The name of the library in Plex
- Name: "Audiobooks"
# A friendlier name for the library to use in Discord
AlternateName: "My Audiobooks"
# The ID of the library in Tautulli, to differentiate between libraries with the same name. Set to 0 to ignore
ID: 0
# How to display stats for each type of media in this library
# Only relevant stats will be included based on library type (e.g. a TV Show library will ignore Album settings)
Albums:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# Use a specific voice channel for this library's stats, rather than generating a new one
VoiceChannelID: 0
Artists:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Episodes:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Movies:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Series:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Tracks:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
RecentlyAdded:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
# The number of hours to consider items "recently added"
Hours: 24
# The name of the library in Plex
- Name: "Movies (4K)"
# A friendlier name for the library to use in Discord
AlternateName: "My 4K Movies"
# The ID of the library in Tautulli, to differentiate between libraries with the same name. Set to 0 to ignore
ID: 0
# How to display stats for each type of media in this library
# Only relevant stats will be included based on library type (e.g. a TV Show library will ignore Album settings)
Albums:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Artists:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Episodes:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Movies:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Series:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Tracks:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
RecentlyAdded:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
# The number of hours to consider items "recently added"
Hours: 24
# The name of the library in Plex
- Name: "TV Shows (Non-English)"
# A friendlier name for the library to use in Discord
AlternateName: "My Non-English TV Shows"
# The ID of the library in Tautulli, to differentiate between libraries with the same name. Set to 0 to ignore
ID: 0
# How to display stats for each type of media in this library
# Only relevant stats will be included based on library type (e.g. a TV Show library will ignore Album settings)
Albums:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Artists:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Episodes:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Movies:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Series:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Tracks:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
RecentlyAdded:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
# The number of hours to consider items "recently added"
Hours: 24
# Libraries to combine into an aggregate library
CombinedLibraries:
# The name of the aggregate library
- Name: "All Movies"
# Which Plex libraries to combine into this aggregate library
Libraries:
# The name of the library in Plex
- Name: "Movies"
# The ID of the library in Tautulli, to differentiate between libraries with the same name. Set to 0 to ignore
ID: 0
- Name: "Movies (Non-English)"
# The ID of the library in Tautulli, to differentiate between libraries with the same name. Set to 0 to ignore
ID: 0
- Name: "Movies (4K)"
# The ID of the library in Tautulli, to differentiate between libraries with the same name. Set to 0 to ignore
ID: 0
# How to display stats for each type of media in this library
# Only relevant stats will be included based on library type (e.g. a TV Show library will ignore Album settings)
Albums:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Artists:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Episodes:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Movies:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Series:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
Tracks:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
RecentlyAdded:
# The custom name for this metric
CustomName: ''
# The custom emoji for this metric
CustomEmoji: ''
# Whether to display this metric for this library
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
# The number of hours to consider items "recently added"
Hours: 24
# Stats about the Tauticord host's performance
Performance:
# The name of the category
CategoryName: "Performance"
# Whether to enable performance stats
Enable: true
# The metrics
Metrics:
# CPU settings
CPU:
# The custom name for this metric
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable CPU stats
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
# Disk space settings
DiskSpace:
# The custom name for this metric
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable disk space stats
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
# Memory settings
Memory:
# The custom name for this metric
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable memory stats
Enable: true
# The ID of the voice channel
VoiceChannelID: 0
# User count settings
UserCount:
# The custom name for this metric
CustomName: ''
# The custom emoji
CustomEmoji: ''
# Whether to enable user count stats
Enable: true
# The ID of the voice channel
VoiceChannelID: 0