Plex-Meta-Manager/docs/defaults/chart/tautulli.md

70 lines
7.5 KiB
Markdown
Raw Normal View History

2022-10-10 07:10:05 +00:00
# Tautulli Charts Collections
2022-10-10 07:10:05 +00:00
The `tautulli` Default Metadata File is used to create collections based on Tautulli/Plex Charts.
![](../images/tautulli.png)
## Requirements & Recommendations
2022-10-10 07:10:05 +00:00
Supported Library Types: Movie, Show
Requirements: [Tautulli Authentication](../../config/tautulli)
2022-10-10 07:10:05 +00:00
## Collections Section 01
2022-11-16 14:30:04 +00:00
| Collection | Key | Description |
|:---------------|:----------|:-----------------------------------------------------|
2022-10-10 07:10:05 +00:00
| `Plex Popular` | `popular` | Collection of the most Popular Movies/Shows on Plex. |
| `Plex Watched` | `watched` | Collection of the most Watched Movies/Shows on Plex. |
## Config
The below YAML in your config.yml will create the collections:
2022-10-08 16:31:06 +00:00
```yaml
libraries:
Movies:
metadata_path:
2022-10-06 17:34:41 +00:00
- pmm: tautulli
2022-10-08 16:31:06 +00:00
TV Shows:
metadata_path:
- pmm: tautulli
```
2022-10-08 16:31:06 +00:00
## Template Variables
2022-10-08 16:31:06 +00:00
Template Variables can be used to manipulate the file in various ways to slightly change how it works without having to make your own local copy.
2023-01-04 19:46:04 +00:00
Note that the `template_variables:` section only needs to be used if you do want to actually change how the defaults work. Any value not specified is its default value if it has one if not it's just ignored.
2022-11-08 03:02:07 +00:00
All [Shared Collection Variables](../collection_variables) are available as well as the additional Variables below which can be used to customize the file.
2022-10-18 20:54:28 +00:00
| Variable | Description & Values |
|:---------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `list_days` | **Description:** Changes the `list_days` attribute of the builder for all collections in a Defaults file.<br>**Values:** Number greater then 0 |
2022-10-17 12:13:48 +00:00
| `list_days_<<key>>`<sup>1</sup> | **Description:** Changes the `list_days` attribute of the builder of the specified key's collection.<br>**Values:** Number greater then 0 |
2022-10-18 20:54:28 +00:00
| `list_size` | **Description:** Changes the `list_size` attribute of the builder for all collections in a Defaults file.<br>**Values:** Number greater then 0 |
2022-10-17 12:13:48 +00:00
| `list_size_<<key>>`<sup>1</sup> | **Description:** Changes the `list_size` attribute of the builder of the specified key's collection.<br>**Values:** Number greater then 0 |
2022-12-09 16:30:18 +00:00
| `sync_mode` | **Description:** Changes the Sync Mode for all collections in a Defaults file.<br>**Default:** `sync`<br>**Values:**<table class="clearTable"><tr><td>`sync`</td><td>Add and Remove Items based on Builders</td></tr><tr><td>`append`</td><td>Only Add Items based on Builders</td></tr></table> |
| `sync_mode_<<key>>`<sup>1</sup> | **Description:** Changes the Sync Mode of the specified key's collection.<br>**Default:** `sync_mode`<br>**Values:**<table class="clearTable"><tr><td>`sync`</td><td>Add and Remove Items based on Builders</td></tr><tr><td>`append`</td><td>Only Add Items based on Builders</td></tr></table> |
2022-10-18 20:54:28 +00:00
| `collection_order` | **Description:** Changes the Collection Order for all collections in a Defaults file.<br>**Default:** `custom`<br>**Values:**<table class="clearTable"><tr><td>`release`</td><td>Order Collection by Release Dates</td></tr><tr><td>`alpha`</td><td>Order Collection Alphabetically</td></tr><tr><td>`custom`</td><td>Order Collection Via the Builder Order</td></tr><tr><td>[Any `plex_search` Sort Option](../../metadata/builders/plex.md#sort-options)</td><td>Order Collection by any `plex_search` Sort Option</td></tr></table> |
2022-10-17 12:13:48 +00:00
| `collection_order_<<key>>`<sup>1</sup> | **Description:** Changes the Collection Order of the specified key's collection.<br>**Default:** `collection_order`<br>**Values:**<table class="clearTable"><tr><td>`release`</td><td>Order Collection by Release Dates</td></tr><tr><td>`alpha`</td><td>Order Collection Alphabetically</td></tr><tr><td>`custom`</td><td>Order Collection Via the Builder Order</td></tr><tr><td>[Any `plex_search` Sort Option](../../metadata/builders/plex.md#sort-options)</td><td>Order Collection by any `plex_search` Sort Option</td></tr></table> |
1. Each default collection has a `key` that when calling to effect a specific collection you must replace `<<key>>` with when calling.
2022-10-08 16:31:06 +00:00
The below is an example config.yml extract with some Template Variables added in to change how the file works.
```yaml
libraries:
Movies:
metadata_path:
- pmm: tautulli
template_variables:
use_watched: false
2022-10-08 16:31:06 +00:00
list_days_popular: 7
list_size_popular: 10
visible_library_watched: true
visible_home_watched: true
visible_shared_watched: true
```