Adds Promtail and Loki to the metrics stack, configuring them as a datasource in grafana on deployment Adds a dashboard to monitor the system (logs for producer and consumer) Restructures the base directory so deployment manifests are moved into a deployments folder Adds selective labels to producer, consumer and addon so that their logs are ingested by promtail
7.3 KiB
Knight Crawler
A self-hosted Stremio addon for streaming torrents via a debrid service.
Contents
Note: Until we reach v1.0.0, please consider releases as alpha.
Important: The latest change renames the project and requires a small migration.
- Knight Crawler
Overview
Stremio is a media player. On it's own it will not allow you to watch anything. This addon at it's core does the following:
- It will search the internet and collect information about movies and tv show torrents, then store it in a database.
- It will then allow you to click on the movie or tv show you desire in Stremio and play it with no further effort.
Using
The project is shipped as an all-in-one solution. The initial configuration is designed for hosting only on your local network. If you want it to be accessible from outside of your local network, please see not yet available
Initial setup (optional)
After cloning the repository there are some steps you should take to maximise the number of movies/tv shows we can find.
We can search DebridMediaManager hash lists which are hosted on GitHub. This allows us to add hundreds of thousands of movies and tv shows, but it requires a Personal Access Token to be generated. The software only needs read access and only for public respositories. To generate one, please follow these steps:
- Navigate to GitHub settings -> Developer Settings -> Personal access tokens -> Fine-grained tokens (click here for a direct link)
- Press
Generate new token - Fill out the form (example data below):
Token name: KnightCrawler Expiration: 90 days Description: <blank> Respository access (checked) Public Repositories (read-only) - Click
Generate token - Take the new token and add it to the bottom of the env/producer.env file
GithubSettings__PAT=<YOUR TOKEN HERE>
Environment Setup
Before running the project, you need to set up the environment variables. Copy the .env.example file to .env:
cd deployment/docker
cp .env.example .env
Then set any of th values you'd like to customize.
Run the project
Open a terminal in the directory and run the command:
cd deployment/docker
docker compose up -d
It will take a while to find and add the torrents to the database. During initial testing, in one hour it's estimated that around 200,000 torrents were located and added to the queue to be processed. For best results, you should leave everything running for a few hours.
To add the addon to Stremio, open a web browser and navigate to: http://127.0.0.1:7000
Monitoring with Grafana and Prometheus (Optional)
To enhance your monitoring capabilities, you can use Grafana and Prometheus in addition to RabbitMQ's built-in management interface. This allows you to visualize and analyze RabbitMQ metrics with more flexibility. With postgres-exporter service, you can also monitor Postgres metrics.
Accessing RabbitMQ Management
You can still monitor RabbitMQ by accessing its management interface at http://127.0.0.1:15672/. Use the provided credentials to log in and explore RabbitMQ's monitoring features (the default username and password are guest).
Using Grafana and Prometheus
Here's how to set up and use Grafana and Prometheus for monitoring RabbitMQ:
-
Start Grafana and Prometheus: Run the following command to start both Grafana and Prometheus:
cd deployment/docker docker compose -f docker-compose-metrics.yml up -d-
Grafana will be available at http://127.0.0.1:3000.
-
Prometheus will be available at http://127.0.0.1:9090.
-
The default admin user for Grafana is
admin, and the password isadmin_password.
-
-
Import Grafana Dashboard: Import the RabbitMQ monitoring dashboard into Grafana:
-
You can use the following dashboard from Grafana's official library: RabbitMQ Overview Dashboard.
-
You can alse use the following dashboard PostgreSQL Database to monitor Postgres metrics.
The Prometheus data source is already configured in Grafana, you just have to select it when importing the dashboard.
-
Now, you can use these dashboards to monitor RabbitMQ and Postgres metrics.
Note: If you encounter issues with missing or unavailable data in Grafana, please ensure on Prometheus's target page that the RabbitMQ target is up and running.
Importing external dumps
A brief record of the steps required to import external data, in this case the rarbg dump which can be found on RD:
Import data into database
I created a file db.load as follows..
load database
from sqlite:///tmp/rarbg_db.sqlite
into postgresql://postgres:postgres@localhost/knightcrawler
with include drop, create tables, create indexes, reset sequences
set work_mem to '16MB', maintenance_work_mem to '512 MB';
And ran pgloader db.load to create a new items table.
INSERT INTO ingested_torrents
Once the items table is available in the postgres database, put all the tv/movie items into the ingested_torrents table using:
INSERT INTO ingested_torrents (name, source, category, info_hash, size, seeders, leechers, imdb, processed, "createdAt", "updatedAt")
SELECT title, 'RARBG', cat, hash, size, NULL, NULL, imdb, false, current_timestamp, current_timestamp
FROM items where cat='tv' OR cat='movies';
Selfhostio to KnightCrawler Migration
With the renaming of the project, you will have to change your database name in order to keep your existing data.
With your existing stack still running, run:
docker exec -it torrentio-selfhostio-postgres-1 psql -c "SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE pid <> pg_backend_pid() AND datname = 'selfhostio'; ALTER DATABASE selfhostio RENAME TO knightcrawler;"
Make sure your postgres container is named torrentio-selfhostio-postgres-1, otherwise, adjust accordingly.
This command should return: ALTER DATABASE. This means your database is now renamed. You can now pull the new changes if you haven't already and run docker-compose up -d.
To-do
- Add a section on external access
- Add a troubleshooting section