gethomepage / homepage

A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations.

Home Page:https://gethomepage.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Prowlarr query count doesn't match application dashboard

ctmay4 opened this issue · comments

Description

In Prowlarr, the number of queries listed is 12.7K:

image

However when displayed using the Prowlarr widget is is much smaller.

image

I think the reason is that there are different query values returned from the API. Here is an example of one of the indexers returned:

    {
      "indexerId": 1,
      "indexerName": "DrunkenSlug",
      "averageResponseTime": 942,
      "numberOfQueries": 24,
      "numberOfGrabs": 18,
      "numberOfRssQueries": 3328,
      "numberOfAuthQueries": 0,
      "numberOfFailedQueries": 0,
      "numberOfFailedGrabs": 0,
      "numberOfFailedRssQueries": 0,
      "numberOfFailedAuthQueries": 0
    }

So the widget is totaling the numberOfQueries but the Prowlarr seems to use numberOfRssQueries in its dashboard. I think the number of RSS queries are more interesting. Maybe a new field could be added so either field could be chosen?

Steps to reproduce

  1. Create a Prowlarr service width and connect it
  2. Compare the number of queries in Homepage and the total queries in the Prowlarr dashboard

homepage version

v0.8.4 (32f28d3, Dec 27, 2023)

Installation method

Docker

Configuration

- Prowlarr:
        icon: prowlarr.png
        href: http://192.168.5.31:9696/
        description: Indexer Aggregator
        server: my-docker
        container: prowlarr
        widget:
          type: prowlarr
          url: http://prowlarr:9696
          key: SNIPPED

Container Logs

No response

Browser Logs

No response

Troubleshooting

This is not an error, so there is nothing to troubleshoot. I explained why the stats don't match above.

Other

No response

Before submitting, I have made sure to

This seems like a change request, not a bug?