Skip to content

Tautulli

Monitoring and Analytics for Plex Media Server

tautulli diagram

Tautulli is a powerful open-source monitoring and analytics platform designed for Plex Media Server users. With Tautulli, Plex enthusiasts can gain insights into their media consumption habits, track server activity, and analyze usage patterns, enabling them to optimize their Plex experience and enhance their media streaming environment.

Key Features

  • Server Monitoring: Tautulli provides detailed statistics and metrics on Plex Media Server usage, including playback history, library statistics, user activity, and device usage.
  • User Analytics: Tautulli offers user-level analytics, allowing Plex users to track individual viewing habits, preferences, and playback behavior across different devices.
  • Notification System: Tautulli features a flexible notification system that can alert users to new media additions, playback events, server status changes, and other relevant events via email, SMS, or push notifications.
  • Customization and Extensibility: Tautulli is highly customizable and extensible, with support for custom scripts, plugins, and integrations, enabling users to tailor the platform to their specific needs and workflows.
  • Integration with External Services: Tautulli integrates with external services such as Trakt.tv and IMDb, allowing users to enrich their media library with additional metadata and personalized recommendations.

Getting Started

To get started with Tautulli, visit the official website to download and install the software on your server. Follow the provided installation instructions and configure Tautulli to connect to your Plex Media Server instance. Once set up, you can access the Tautulli web interface to start monitoring and analyzing your Plex usage data.

Community and Support

Join the Tautulli community on GitHub to engage with other users, report issues, contribute code, and stay informed about the latest updates and developments. Participate in community discussions, share feedback, and collaborate on improving and enhancing the Tautulli monitoring and analytics platform.

Gain valuable insights into your Plex Media Server usage with Tautulli—a feature-rich monitoring and analytics solution for Plex enthusiasts.

Volumes

/nfs-nas-swarm/config/
/nfs-nas-swarm/data/

Deployment

No Special requirments

Docker swarm file

version: '3.3'
services:
  tautulli:
    image: hotio/tautulli:release-2.13.4
    environment:
      PGID: '911'
      PUID: '911'
      TZ: Europe/Amsterdam
      UMASK: '002'
    volumes:
     - /swarm/config/tautulli:/config
    networks:
     - media_services_media-network
     - traefik-public
    logging:
      driver: json-file
    deploy:
      labels:
        traefik.http.routers.tautulli-https.rule: Host(`tautulli.vnerd.nl`)
        traefik.http.routers.tautulli-http.entrypoints: http
        traefik.http.routers.tautulli-https.entrypoints: https
        traefik.http.routers.tautulli-https.tls: 'true'
        traefik.http.routers.tautulli-https.tls.certresolver: le
        traefik.constraint-label: traefik-public
        traefik.http.routers.tautulli-http.middlewares: https-redirect
        traefik.docker.network: traefik-public
        traefik.enable: 'true'
        traefik.http.routers.tautulli-http.rule: Host(`tautulli.vnerd.nl`)
        traefik.http.services.tautulli.loadbalancer.server.port: '8181'
      placement:
        constraints:
         - node.labels.Arch!=i686
         - node.labels.worker==enabled
networks:
  media_services_media-network:
    external: true
  traefik-public:
    external: true

Notes

Comments