-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Excessive usage of queries to github.com
, Pi-hole v6, Docker, development
tag
#1666
Comments
This is not normal.
Usually Pi-hole container only connect to Github to check for updates, but only once a day. We need more information. EDIT: |
Thank you for your response. I attached the files. Here also some screenshots how the dashboard looks like after 24h of running. I hope you can find something. I'm bit concerned as I have not observed such behavior in previous versions. pihole_debug.log docker-compose.yml version: "3.8"
services:
pihole:
container_name: pihole
image: pihole/pihole:development
hostname: pi.hole
environment:
- TZ=${TZ}
- FTLCONF_webserver_api_password=${PASSWORD}
- FTLCONF_dns_upstreams=${DNS_UPSTREAMS}
- DNSMASQ_LISTENING=all
ports:
- "53:53/tcp"
- "192.168.178.2:53:53/udp"
- "80:80/tcp"
- "443:443/tcp"
volumes:
- ./etc/dnsmasq.d:/etc/dnsmasq.d
- ./etc/pihole:/etc/pihole
restart: unless-stopped |
I don't have any device that would do that. I also disabled the notifications for the |
@rdwebdesign I don't know what the team has done but the image was updated on 2024-11-10 and since then the issue is gone. Therefore, I will close this issue. Thank you! |
@rdwebdesign Today I noticed that the issue is back again with the latest update of the development docker image. Any idea what can cause it? |
On one else is complaining about this. The IP This means some app, service or another container in your network is generating this DNS queries and docker is passing them to Pi-hole. |
Thank you for the quick response.
The only GitHub related app I have is the iOS GitHub app. I turned off all notifications and devices and the But I will keep eye on it and see how it behaves with the next update. |
Do you have maybe an hint how to download the previous image, so I could verify my assumption? |
This is really looking like a local issue in your network or in your host machine, unrelated to Pi-hole. The most recent If you want to use the most recent v6 image, please try |
Running the latest I just updated the image to the But thank you for the hint, I will leave the container on the last |
I could provide a screen recording if it would help you finding/analyzing the issue. |
It's not necessary. As explained The |
Ok, thank you. But it is very strange that this issue is present on one build and on another it is absent. There must be some root cause for it. I will close the issue for now. |
Hi @rdwebdesign. I am reopening this issue as I made some new observations regarding this issue. I had a PiHole container in use with a nightly build image created on 2025-01-05, which worked fine. On the 2025-01-11 I noticed that at the time 4:00 UTC+1 the excessive queries to Then around 19:00 UTC+1 I rebuilded the container with the latest nightly build image and the issue was gone and the queries stayed stable. Over the last month I noticed that this issue is recurring every 6 days. So my conclusion is that the issue is not related to a specific Docker image, nevertheless there must be something in the codebase which triggers this behavior. With that I can exclude that this is a network problem on my side. Maybe the team have an idea what cause this issue. Looking forward to your feedback. |
Silly question - do any of your other containers share the IP address of There is nothing in the container that cause quite so many lookups of According to your previously attached debug log, the IP address of your Pi-hole container is
Are there other containers that are using the same bridge network, and therefore passing queries through the gateway and onto Pi-hole? |
@PromoFaux Thank you for the response.
No, I have only 6 containers running (including PiHole) and PiHole is the only one which uses the IP I already have tested it with all disabled containers and devices and could still observe the queries. I also find it strange that the queries are triggered out of nowhere middle in the night, every 6 days and that they are gone when I rebuild the container with the latest image.
As @rdwebdesign wrote here:
Maybe it is related with this feature in some way? To be clear, this issue appears only with the I also don't have any idea what could be the cause. I guess the only way is to monitor it and rebuild the container on regular basis. |
Pi-hole v6 checks for updates exactly the same way v5 does... only once a day. What is the output of |
|
Pi-hole only makes requests to Github:
The crontab output shows your container updates gravity once a week, at 04:57 every Saturday. It also checks for updates daily, at 19:25. Nothing automatically happens at 4:00. There is something else in your network making the requests you are seeing. |
If that were a network problem, then I should see
and that is not the case. I tired everything to narrow down the issue and all points to the PiHole container. Do you maybe have an idea what I could do to inspect the network? I will also observe the container the next days to see if the issue occurs after the 6 days. |
Are you still using the Could you try to remove the following lines and see what happens
If the issue persists, would you be able to run a package capture (e.g. wireshark) on the host and bind to the docker network bridge to inspect the traffic ? This might give us a clue where the queries come from https://stackoverflow.com/questions/39362730/how-to-capture-packets-for-single-docker-container Add Are you using a reverse proxy? |
I used
Are these not required to run PiHole properly?
Thanks for the link, I will try to go with
No. |
|
Thanks, I will try. |
Versions
Platform
Raspbian
Raspberry Pi, Docker
Actual behavior / bug
After a long time I checked today the Pi-hole dashboard and have seen an excessive usage of queries to
github.com
, in the last 24h it was over 94k. I run thedevelopment
version of Pi-hole v6 in a Docker container on a Raspberry Pi.My investigation have shown that the queries are triggered by the Pi-hole Docker container network. As the screenshot below shows this queries are triggered every 3 seconds or so.
What causes this behaviour? Is there a way to fix it? Any help is much appreciated. Thank you in advance.
The text was updated successfully, but these errors were encountered: