What is deep_ping

I'm not sure if this is the right forum to ask about it, but I'm not sure where to ask. So here is my question:

which means deep ping. I tried Google, but did not get any information about this. Also who does deep ping in the context of a web servlet. Thanks.

+4
source share
2 answers

I'm not sure if this is the “official definition” if there is such a thing, but I have the inscription “deep ping” used with respect to functionality that allows (unlike regular ping) to send a message to a server that goes through as much as possible web stack before returning the answer "ok".

As an example, you can make a ping transaction that goes from the network right down the stack to the database and makes a dummy choice to read ok from the dummy table and return this result. This allows (in contrast to the "normal ping", which only checks the network), the confidence that all layers in the application, including the database, are really alive.

+8
source

- Ping is one of the easiest and most useful network commands. It sends a request to the network computer and waits for a response. Its easy to ping one pc, but its a pain to ping dozens (or even hundreds) of them.

- The Pinging entire Subnet process, which may have N nos PCs, is known as Deep Ping . For this, network scanners are usually used ....

-1
source

Source: https://habr.com/ru/post/1434670/


All Articles