forked from hotio/qbitmanage
-
Notifications
You must be signed in to change notification settings - Fork 0
02. Configuration
engels74 edited this page Nov 17, 2024
·
2 revisions
This page details all the configuration options available for TGraph Bot. These settings are managed through the config.yml
file in your configuration directory.
-
TAUTULLI_API_KEY
: Your Tautulli API key. -
TAUTULLI_URL
: The URL to your Tautulli instance (e.g.,http://localhost:8181/api/v2
). -
DISCORD_TOKEN
: The token for your Discord bot. -
CHANNEL_ID
: The ID of the Discord channel where you want to post the graphs.
-
UPDATE_DAYS
: The interval in days for how often to post the graphs (default: 7). -
FIXED_UPDATE_TIME
: A specific time of day to post the graphs (format: "HH:MM", 24-hour clock). Set to "XX:XX" to disable and useUPDATE_DAYS
interval instead. -
KEEP_DAYS
: The number of days to keep the generated images (default: 7). -
TIME_RANGE_DAYS
: The time range in days for the graphs (default: 30).
-
LANGUAGE
: The language to use for the bot (default:en
).- Supported languages:
en
(English),da
(Danish).
- Supported languages:
-
CENSOR_USERNAMES
: Enable/disable censoring of usernames in the top 10 users graph (default: true). -
ENABLE_GRAPH_GRID
: Enable/disable grid on graphs (default: false). -
ENABLE_DAILY_PLAY_COUNT
: Enable/disable daily play count graph (default: true). -
ENABLE_PLAY_COUNT_BY_DAYOFWEEK
: Enable/disable play count by day of week graph (default: true). -
ENABLE_PLAY_COUNT_BY_HOUROFDAY
: Enable/disable play count by hour of day graph (default: true). -
ENABLE_TOP_10_PLATFORMS
: Enable/disable top 10 platforms graph (default: true). -
ENABLE_TOP_10_USERS
: Enable/disable top 10 users graph (default: true). -
ENABLE_PLAY_COUNT_BY_MONTH
: Enable/disable play count by month graph (default: true).
-
TV_COLOR
: The color to use for TV shows in graphs (default: "#1f77b4", a shade of blue). -
MOVIE_COLOR
: The color to use for movies in graphs (default: "#ff7f0e", a shade of orange). -
GRAPH_BACKGROUND_COLOR
: The color to use for the graph background (default: "#ffffff", white). -
ANNOTATION_COLOR
: The color to use for number annotations on graphs (default: "#ffffff", white). -
ANNOTATION_OUTLINE_COLOR
: The color to use for the annotation outline (default: "#000000", black). -
ENABLE_ANNOTATION_OUTLINE
: Enable/disable annotation outline (default: true).
Note: Colors can be specified using hex codes. For more color options, see Matplotlib colors.
-
ANNOTATE_DAILY_PLAY_COUNT
: Enable/disable annotations on daily play count graph (default: true). -
ANNOTATE_PLAY_COUNT_BY_DAYOFWEEK
: Enable/disable annotations on play count by day of week graph (default: true). -
ANNOTATE_PLAY_COUNT_BY_HOUROFDAY
: Enable/disable annotations on play count by hour of day graph (default: true). -
ANNOTATE_TOP_10_PLATFORMS
: Enable/disable annotations on top 10 platforms graph (default: true). -
ANNOTATE_TOP_10_USERS
: Enable/disable annotations on top 10 users graph (default: true). -
ANNOTATE_PLAY_COUNT_BY_MONTH
: Enable/disable annotations on play count by month graph (default: true).
-
CONFIG_COOLDOWN_MINUTES
: Minutes between config command uses per user (default: 0). -
CONFIG_GLOBAL_COOLDOWN_SECONDS
: Seconds between any config command uses (default: 0). -
UPDATE_GRAPHS_COOLDOWN_MINUTES
: Cooldown period in minutes for updating graphs (default: 0). -
UPDATE_GRAPHS_GLOBAL_COOLDOWN_SECONDS
: Global cooldown period in seconds for updating graphs (default: 0). -
MY_STATS_COOLDOWN_MINUTES
: The cooldown period in minutes for individual users using the/my_stats
command (default: 5). -
MY_STATS_GLOBAL_COOLDOWN_SECONDS
: The global cooldown period in seconds between any two uses of the/my_stats
command (default: 60).
Here's an example of a config.yml
file with some customized settings:
# Basic settings
TAUTULLI_API_KEY: 1234567890abcdef1234567890abcdef
TAUTULLI_URL: https://example.com/api/v2
DISCORD_TOKEN: OTx5MzQ23zY3NDMXNzg0MzYzNzg.GfSipt.5SKhBNYj5Mj5ofBTgRcVriI27YyCU5ruDwA26s
CHANNEL_ID: 9873543210987654311
UPDATE_DAYS: 5
FIXED_UPDATE_TIME: "14:30"
KEEP_DAYS: 7
TIME_RANGE_DAYS: 30
LANGUAGE: en
# Graph options
CENSOR_USERNAMES: true
ENABLE_GRAPH_GRID: false
ENABLE_DAILY_PLAY_COUNT: true
ENABLE_PLAY_COUNT_BY_DAYOFWEEK: true
ENABLE_PLAY_COUNT_BY_HOUROFDAY: true
ENABLE_TOP_10_PLATFORMS: true
ENABLE_TOP_10_USERS: true
ENABLE_PLAY_COUNT_BY_MONTH: true
# Graph colors
TV_COLOR: "#1f77b4"
MOVIE_COLOR: "#ff7f0e"
GRAPH_BACKGROUND_COLOR: "#ffffff"
ANNOTATION_COLOR: "#ff0000"
ANNOTATION_OUTLINE_COLOR: "#000000"
ENABLE_ANNOTATION_OUTLINE: true
# Annotation options
ANNOTATE_DAILY_PLAY_COUNT: true
ANNOTATE_PLAY_COUNT_BY_DAYOFWEEK: true
ANNOTATE_PLAY_COUNT_BY_HOUROFDAY: true
ANNOTATE_TOP_10_PLATFORMS: true
ANNOTATE_TOP_10_USERS: true
ANNOTATE_PLAY_COUNT_BY_MONTH: true
# Command cooldown options
CONFIG_COOLDOWN_MINUTES: 5
CONFIG_GLOBAL_COOLDOWN_SECONDS: 60
UPDATE_GRAPHS_COOLDOWN_MINUTES: 5
UPDATE_GRAPHS_GLOBAL_COOLDOWN_SECONDS: 10
MY_STATS_COOLDOWN_MINUTES: 5
MY_STATS_GLOBAL_COOLDOWN_SECONDS: 60
Remember to restart the TGraph Bot container after making changes to the config.yml
file for the changes to take effect.
Some configuration options can be updated directly through Discord using the /config edit
command. For more information on using this command, see the Slash Commands page.