Plex-Meta-Manager/docs/config/tautulli.md

48 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

2022-03-08 08:06:22 +00:00
# Tautulli Attributes
2023-12-31 16:45:00 +00:00
Configuring [Tautulli](https://tautulli.com/) is optional but can allow you to create Collections based on Tautulli's
Watch Statistics.
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
A `tautulli` mapping can be either in the root of the config file as global mapping for all libraries, or you can
specify the `tautulli` mapping individually per library.
2022-03-08 08:06:22 +00:00
Below is a `tautulli` mapping example and the full set of attributes:
```yaml
tautulli:
url: http://192.168.1.12:8659
apikey: ################################
```
2023-12-13 21:44:44 +00:00
| Attribute | Allowed Values | Default | Required |
|:----------|:------------------------------------------------------|:--------|:------------------------------------------:|
| `url` | Tautulli URL<br>**Example:** http://192.168.1.12:8659 | N/A | :fontawesome-solid-circle-check:{ .green } |
| `apikey` | Tautulli API Key | N/A | :fontawesome-solid-circle-check:{ .green } |
2022-03-08 08:06:22 +00:00
???+ tip
The apikey can be found by going to Tautulli > Settings > Web Interface > API > API Key
2022-03-29 15:30:30 +00:00
# Other examples
2022-03-29 15:30:30 +00:00
Specifying a second Tautulli instance for a specific library:
In this example we have a separate Tautulli instance for TV.
```yaml
libraries:
Movies:
collection_files:
2022-03-29 15:30:30 +00:00
- file: config/Movies.yml
TV Shows:
collection_files:
2022-03-29 15:30:30 +00:00
- file: config/TV.yml
tautulli:
url: http://192.168.1.14:8659
apikey: SOME_KEY
...
tautulli:
url: http://192.168.1.12:8659
apikey: SOME_KEY
...
```