Skip to content
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

Monitor CDN edges where one domain has multiple IP's #1689

Open
1 task done
chelbos opened this issue May 25, 2022 · 13 comments
Open
1 task done

Monitor CDN edges where one domain has multiple IP's #1689

chelbos opened this issue May 25, 2022 · 13 comments
Labels
area:monitor Everything related to monitors feature-request Request for new features to be added question Further information is requested

Comments

@chelbos
Copy link

chelbos commented May 25, 2022

⚠️ Please verify that this feature request has NOT been suggested before.

  • I checked and didn't find similar feature request

🏷️ Feature Request Type

UI Feature

🔖 Feature description

For my SAAS service, I've built my own CDN and I have 9 servers around the world. This allows me to serve my content fast.

I would love to use Uptime Kuma to monitor my network, but the domain monitor is missing the IP

This could be implemented very easy if the request on the server side is done via curl

Please add this feature, that's all I need and will help a lot of people

Thank you!

✔️ Solution

curl -v --resolve mydomain.com:443:xxx.xxx.xxx.xxx

❓ Alternatives

Currently I have a script that does that and notify's me about any issues, but having a nice UI would improve the beauty in my life :)

📝 Additional Context

No response

@chelbos chelbos added the feature-request Request for new features to be added label May 25, 2022
@chelbos
Copy link
Author

chelbos commented Jul 6, 2022

No one needs to monitor a domain that is on multiple servers? am I alone?

@Computroniks
Copy link
Contributor

Personally, for me, if the domain is on multiple servers and one server goes down, I would not consider the domain its self to be down as the other servers can still respond to the clients reqests. This is where you could monitor the domain as a whole as well as your seperate servers. I.e have one monitor for example.com and then another for 1.cnd.example.com, 2.cnd.example.com ... n.cnd.example.com.

@chelbos
Copy link
Author

chelbos commented Jul 13, 2022

yes ... but I have lots of SSL certificates on each server, I would like to know if my admin forgot to renew a SSL on one of the edges. Your solution 1.cnd 2.cnd won't work for that scenario.

@suominen
Copy link

suominen commented Aug 6, 2022

It would be nice if it was possible specify the domain for SSL / SNI separately from the hostname or IP address to connect to.

@CommanderStorm
Copy link
Collaborator

CommanderStorm commented Dec 7, 2023

specify the domain for SSL / SNI separately from the hostname or IP address to connect to

You can do that with the tools currently at your disposal:

@CommanderStorm CommanderStorm added the area:monitor Everything related to monitors label Dec 7, 2023
@mateuszdrab
Copy link

mateuszdrab commented Apr 28, 2024

In my case I am TCP port monitoring my ingress DNS record which has two IP addresses and when one of those goes down, Kuma will repeatedly flip between up/down state. I'd much prefer the monitor to have an option to monitor multiple IPs separately from that DNS record and report down if all or any are down (with this being a configurable option).

@CommanderStorm
Copy link
Collaborator

CommanderStorm commented Apr 28, 2024

About your comments

monitor multiple IPs separately from that DNS record

IP and HOST header can be monitored separately as stated in #1689 (comment)

report down if all [...] are down

We track this in

If somebody wants to improve the group monitor them via a PR our contribution guide is here

report down if [...] any are down

This is the current behaviour of groups.

@CommanderStorm
Copy link
Collaborator

CommanderStorm commented Apr 28, 2024

I think what this issue is really lacking is "How should this work" without exponentially increasing the complexity.
There are already probably too many settings, I don't want this to turn into a parameter dump by adding resolution and SNI settings when they essentially already exist via the IP+HOST settings.
Do people have any ideas on this?

@CommanderStorm CommanderStorm added the question Further information is requested label Apr 28, 2024
@mateuszdrab
Copy link

mateuszdrab commented Apr 29, 2024

An implementation that adds no extra settings could be something like this https://serverfault.com/questions/327708/how-browsers-handle-multiple-ips

Essentially, resolve DNS name, if multiple IPs present, check first one, if success - check is ok. If it fails, try next IP. If a failed over IP works, could either mark it as healthy or degraded - well, that could be a setting ;).

This is what browsers do under the hood, albeit slowly and sometimes the page takes forever to load but it eventually fails over.

@CommanderStorm
Copy link
Collaborator

We use axios/Node.js to do the heavy lifting in this department.
According to axios/axios#4534 (comment) we already do Happy Eyeballs.
Said issue is a bit contradictory/outdated with nodejs/node#48145 and nodejs/node#708 (comment)

There also has been a fair bit of traffic on happy eyeballs in node. See https://github.com/nodejs/node/issues?q=is%3Aissue+happy+eyeballs+is%3Aclosed

=> This might be resolved when we upgrade the docker image to node v18 -> v22

@mateuszdrab
Copy link

mateuszdrab commented Apr 29, 2024

Interesting; however, Happy Eyeballs isn't quite the same what the old fashioned failover behavior is like.
Though, if it works, it will essentially solve my issue if it tries to establish multiple connections to multiple IPs within the same stack (IPv4) - it looks like main purpose of the above is to handle dual stack environments.

Are there any node v22 dev builds available?

@CommanderStorm
Copy link
Collaborator

CommanderStorm commented Apr 29, 2024

As far as I read section-5.4 of RFC6555, the logic you are talking about SHOULD work as far as I read this part. (not a specs-expert)

@CommanderStorm
Copy link
Collaborator

Are there any node v22 dev builds available?

See #4500 what bugs remain before we can publish the first beta of v2.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:monitor Everything related to monitors feature-request Request for new features to be added question Further information is requested
Projects
None yet
Development

No branches or pull requests

6 participants
@suominen @chelbos @CommanderStorm @mateuszdrab @Computroniks and others