Skip to content

Multiple Sonarr/Radarr instances #327

@ImBas

Description

@ImBas

I was hoping to set this up to monitor multiple radarr/sonarr instances. I run multiple instances for different quality versions.

The config below doesn't work because of duplicate YAML entries, it just ignores the earlier entries (since yaml reads top-to-bottom and only uses the last entry if it sees duplicates):

instances:
  sonarr:
    - base_url: "http://10.10.10.41:8990"
      api_key: "snip"
  sonarr:
    - base_url: "http://10.10.10.41:8989"
      api_key: "snip"
  radarr:
    - base_url: "http://10.10.10.41:7880"
      api_key: "snip"
  radarr:
    - base_url: "http://10.10.10.41:7879"
      api_key: "snip"
  radarr:
    - base_url: "http://10.10.10.41:7878"
      api_key: "snip"

I tried naming them sonarr_720p, sonarr_1080p like so:

instances:
  sonarr_720p:
    - base_url: "http://10.10.10.41:8990"
      api_key: "snip"
  sonarr_1080p:
    - base_url: "http://10.10.10.41:8989"
      api_key: "snip"
... etc

... but that doesn't work since it 'needs' the exact name of the service to be sonarr/radarr, etc.

Is anything possible for this set up or would it require me to run at least 3 instances of decluttarr?

Thanks for the insights

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions