Ping monitoring program
I'm looking for a tool that I can use to monitor my ping time to a gaming server in real time. I've been getting lag spikes and want to watch where they are happening, how often, etc. I'm very new to Ubuntu and Linux so any help is great. thank you
ping network-monitoring
add a comment |
I'm looking for a tool that I can use to monitor my ping time to a gaming server in real time. I've been getting lag spikes and want to watch where they are happening, how often, etc. I'm very new to Ubuntu and Linux so any help is great. thank you
ping network-monitoring
add a comment |
I'm looking for a tool that I can use to monitor my ping time to a gaming server in real time. I've been getting lag spikes and want to watch where they are happening, how often, etc. I'm very new to Ubuntu and Linux so any help is great. thank you
ping network-monitoring
I'm looking for a tool that I can use to monitor my ping time to a gaming server in real time. I've been getting lag spikes and want to watch where they are happening, how often, etc. I'm very new to Ubuntu and Linux so any help is great. thank you
ping network-monitoring
ping network-monitoring
edited Nov 12 '16 at 23:48
Tshilidzi Mudau
3,62831727
3,62831727
asked Nov 12 '16 at 22:45
MattMatt
111
111
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
You're probably looking for something like smokeping.
There's several ways of having it run, here's one.
1
Hi @SYN, note that while that link:olivermarshall.net/install-smokeping-on-ubuntu-14-04 might provide the relevant information, links can get taken down at any moment, maybe you should edit your answer to include the important information from that link?
– Tshilidzi Mudau
Nov 12 '16 at 23:03
add a comment |
You don't need a special application to do what you want.
Just open a terminal
window from the Unity launcher, then in that window, type ping
followed by the name
of the site you wish to monitor.
Example: ping www.ebay.com
Use a control-c
to stop the pings.
note: pings will not tell you where the problem is, just when the problem occurs.
add a comment |
Try the mtr
(or mtr-tiny
) package, it contains the mtr
command that continually displays in a terminal the routes and the latest ping times on each router:
. Packets Pings
Host Loss% Snt Last Avg Best Wrst StDev
1. 128.199.32.253 0.0% 58 0.3 3.6 0.3 19.8 5.2
2. 138.197.250.78 0.0% 58 0.3 1.1 0.3 22.9 3.3
3. adm-b1-link.telia.net 0.0% 57 0.8 0.7 0.4 1.0 0.0
4. adm-bb4-link.telia.net 0.0% 57 79.7 80.4 79.6 88.2 1.5
5. ldn-bb4-link.telia.net 0.0% 57 80.7 78.5 77.3 88.8 2.2
6. ldn-b4-link.telia.net 0.0% 57 7.8 8.3 7.3 22.3 2.0
7. ldn-bb3-link.telia.net 0.0% 57 112.2 113.3 112.1 145.0 4.6
8. prs-bb3-link.telia.net 0.0% 57 94.2 94.4 94.1 95.8 0.2
9. ash-bb4-link.telia.net 0.0% 57 94.9 94.7 94.3 97.0 0.5
10. ash-b1-link.telia.net 0.0% 57 94.5 94.4 94.2 94.7 0.0
11. tp-brdrbtr-02.bwi.tierpoint.net 0.0% 57 96.6 96.7 96.5 97.0 0.0
12. te-0-0-2-2.tp-bwi-core-rtr-01.bwi.opsmgmt.net 0.0% 57 96.6 96.5 96.4 96.6 0.0
13. 40.142.52.27 0.0% 57 97.4 97.4 97.2 97.8 0.0
14. 144-202-157-173.baltimoretechnologypark.com 0.0% 57 99.1 99.0 98.9 100.1 0.1
15. 144-202-238-253.baltimoretechnologypark.com 0.0% 57 98.8 98.8 98.8 99.0 0.0
16. ssd20-md.privatesystems.net 0.0% 57 96.9 96.9 96.9 97.1 0.0
17. host.gimpchat.com 0.0% 57 97.0 96.9 96.8 99.7 0.3
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f848744%2fping-monitoring-program%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You're probably looking for something like smokeping.
There's several ways of having it run, here's one.
1
Hi @SYN, note that while that link:olivermarshall.net/install-smokeping-on-ubuntu-14-04 might provide the relevant information, links can get taken down at any moment, maybe you should edit your answer to include the important information from that link?
– Tshilidzi Mudau
Nov 12 '16 at 23:03
add a comment |
You're probably looking for something like smokeping.
There's several ways of having it run, here's one.
1
Hi @SYN, note that while that link:olivermarshall.net/install-smokeping-on-ubuntu-14-04 might provide the relevant information, links can get taken down at any moment, maybe you should edit your answer to include the important information from that link?
– Tshilidzi Mudau
Nov 12 '16 at 23:03
add a comment |
You're probably looking for something like smokeping.
There's several ways of having it run, here's one.
You're probably looking for something like smokeping.
There's several ways of having it run, here's one.
edited Nov 12 '16 at 22:59
answered Nov 12 '16 at 22:46
SYNSYN
546212
546212
1
Hi @SYN, note that while that link:olivermarshall.net/install-smokeping-on-ubuntu-14-04 might provide the relevant information, links can get taken down at any moment, maybe you should edit your answer to include the important information from that link?
– Tshilidzi Mudau
Nov 12 '16 at 23:03
add a comment |
1
Hi @SYN, note that while that link:olivermarshall.net/install-smokeping-on-ubuntu-14-04 might provide the relevant information, links can get taken down at any moment, maybe you should edit your answer to include the important information from that link?
– Tshilidzi Mudau
Nov 12 '16 at 23:03
1
1
Hi @SYN, note that while that link:olivermarshall.net/install-smokeping-on-ubuntu-14-04 might provide the relevant information, links can get taken down at any moment, maybe you should edit your answer to include the important information from that link?
– Tshilidzi Mudau
Nov 12 '16 at 23:03
Hi @SYN, note that while that link:olivermarshall.net/install-smokeping-on-ubuntu-14-04 might provide the relevant information, links can get taken down at any moment, maybe you should edit your answer to include the important information from that link?
– Tshilidzi Mudau
Nov 12 '16 at 23:03
add a comment |
You don't need a special application to do what you want.
Just open a terminal
window from the Unity launcher, then in that window, type ping
followed by the name
of the site you wish to monitor.
Example: ping www.ebay.com
Use a control-c
to stop the pings.
note: pings will not tell you where the problem is, just when the problem occurs.
add a comment |
You don't need a special application to do what you want.
Just open a terminal
window from the Unity launcher, then in that window, type ping
followed by the name
of the site you wish to monitor.
Example: ping www.ebay.com
Use a control-c
to stop the pings.
note: pings will not tell you where the problem is, just when the problem occurs.
add a comment |
You don't need a special application to do what you want.
Just open a terminal
window from the Unity launcher, then in that window, type ping
followed by the name
of the site you wish to monitor.
Example: ping www.ebay.com
Use a control-c
to stop the pings.
note: pings will not tell you where the problem is, just when the problem occurs.
You don't need a special application to do what you want.
Just open a terminal
window from the Unity launcher, then in that window, type ping
followed by the name
of the site you wish to monitor.
Example: ping www.ebay.com
Use a control-c
to stop the pings.
note: pings will not tell you where the problem is, just when the problem occurs.
answered Nov 13 '16 at 1:07
heynnemaheynnema
19.8k22158
19.8k22158
add a comment |
add a comment |
Try the mtr
(or mtr-tiny
) package, it contains the mtr
command that continually displays in a terminal the routes and the latest ping times on each router:
. Packets Pings
Host Loss% Snt Last Avg Best Wrst StDev
1. 128.199.32.253 0.0% 58 0.3 3.6 0.3 19.8 5.2
2. 138.197.250.78 0.0% 58 0.3 1.1 0.3 22.9 3.3
3. adm-b1-link.telia.net 0.0% 57 0.8 0.7 0.4 1.0 0.0
4. adm-bb4-link.telia.net 0.0% 57 79.7 80.4 79.6 88.2 1.5
5. ldn-bb4-link.telia.net 0.0% 57 80.7 78.5 77.3 88.8 2.2
6. ldn-b4-link.telia.net 0.0% 57 7.8 8.3 7.3 22.3 2.0
7. ldn-bb3-link.telia.net 0.0% 57 112.2 113.3 112.1 145.0 4.6
8. prs-bb3-link.telia.net 0.0% 57 94.2 94.4 94.1 95.8 0.2
9. ash-bb4-link.telia.net 0.0% 57 94.9 94.7 94.3 97.0 0.5
10. ash-b1-link.telia.net 0.0% 57 94.5 94.4 94.2 94.7 0.0
11. tp-brdrbtr-02.bwi.tierpoint.net 0.0% 57 96.6 96.7 96.5 97.0 0.0
12. te-0-0-2-2.tp-bwi-core-rtr-01.bwi.opsmgmt.net 0.0% 57 96.6 96.5 96.4 96.6 0.0
13. 40.142.52.27 0.0% 57 97.4 97.4 97.2 97.8 0.0
14. 144-202-157-173.baltimoretechnologypark.com 0.0% 57 99.1 99.0 98.9 100.1 0.1
15. 144-202-238-253.baltimoretechnologypark.com 0.0% 57 98.8 98.8 98.8 99.0 0.0
16. ssd20-md.privatesystems.net 0.0% 57 96.9 96.9 96.9 97.1 0.0
17. host.gimpchat.com 0.0% 57 97.0 96.9 96.8 99.7 0.3
add a comment |
Try the mtr
(or mtr-tiny
) package, it contains the mtr
command that continually displays in a terminal the routes and the latest ping times on each router:
. Packets Pings
Host Loss% Snt Last Avg Best Wrst StDev
1. 128.199.32.253 0.0% 58 0.3 3.6 0.3 19.8 5.2
2. 138.197.250.78 0.0% 58 0.3 1.1 0.3 22.9 3.3
3. adm-b1-link.telia.net 0.0% 57 0.8 0.7 0.4 1.0 0.0
4. adm-bb4-link.telia.net 0.0% 57 79.7 80.4 79.6 88.2 1.5
5. ldn-bb4-link.telia.net 0.0% 57 80.7 78.5 77.3 88.8 2.2
6. ldn-b4-link.telia.net 0.0% 57 7.8 8.3 7.3 22.3 2.0
7. ldn-bb3-link.telia.net 0.0% 57 112.2 113.3 112.1 145.0 4.6
8. prs-bb3-link.telia.net 0.0% 57 94.2 94.4 94.1 95.8 0.2
9. ash-bb4-link.telia.net 0.0% 57 94.9 94.7 94.3 97.0 0.5
10. ash-b1-link.telia.net 0.0% 57 94.5 94.4 94.2 94.7 0.0
11. tp-brdrbtr-02.bwi.tierpoint.net 0.0% 57 96.6 96.7 96.5 97.0 0.0
12. te-0-0-2-2.tp-bwi-core-rtr-01.bwi.opsmgmt.net 0.0% 57 96.6 96.5 96.4 96.6 0.0
13. 40.142.52.27 0.0% 57 97.4 97.4 97.2 97.8 0.0
14. 144-202-157-173.baltimoretechnologypark.com 0.0% 57 99.1 99.0 98.9 100.1 0.1
15. 144-202-238-253.baltimoretechnologypark.com 0.0% 57 98.8 98.8 98.8 99.0 0.0
16. ssd20-md.privatesystems.net 0.0% 57 96.9 96.9 96.9 97.1 0.0
17. host.gimpchat.com 0.0% 57 97.0 96.9 96.8 99.7 0.3
add a comment |
Try the mtr
(or mtr-tiny
) package, it contains the mtr
command that continually displays in a terminal the routes and the latest ping times on each router:
. Packets Pings
Host Loss% Snt Last Avg Best Wrst StDev
1. 128.199.32.253 0.0% 58 0.3 3.6 0.3 19.8 5.2
2. 138.197.250.78 0.0% 58 0.3 1.1 0.3 22.9 3.3
3. adm-b1-link.telia.net 0.0% 57 0.8 0.7 0.4 1.0 0.0
4. adm-bb4-link.telia.net 0.0% 57 79.7 80.4 79.6 88.2 1.5
5. ldn-bb4-link.telia.net 0.0% 57 80.7 78.5 77.3 88.8 2.2
6. ldn-b4-link.telia.net 0.0% 57 7.8 8.3 7.3 22.3 2.0
7. ldn-bb3-link.telia.net 0.0% 57 112.2 113.3 112.1 145.0 4.6
8. prs-bb3-link.telia.net 0.0% 57 94.2 94.4 94.1 95.8 0.2
9. ash-bb4-link.telia.net 0.0% 57 94.9 94.7 94.3 97.0 0.5
10. ash-b1-link.telia.net 0.0% 57 94.5 94.4 94.2 94.7 0.0
11. tp-brdrbtr-02.bwi.tierpoint.net 0.0% 57 96.6 96.7 96.5 97.0 0.0
12. te-0-0-2-2.tp-bwi-core-rtr-01.bwi.opsmgmt.net 0.0% 57 96.6 96.5 96.4 96.6 0.0
13. 40.142.52.27 0.0% 57 97.4 97.4 97.2 97.8 0.0
14. 144-202-157-173.baltimoretechnologypark.com 0.0% 57 99.1 99.0 98.9 100.1 0.1
15. 144-202-238-253.baltimoretechnologypark.com 0.0% 57 98.8 98.8 98.8 99.0 0.0
16. ssd20-md.privatesystems.net 0.0% 57 96.9 96.9 96.9 97.1 0.0
17. host.gimpchat.com 0.0% 57 97.0 96.9 96.8 99.7 0.3
Try the mtr
(or mtr-tiny
) package, it contains the mtr
command that continually displays in a terminal the routes and the latest ping times on each router:
. Packets Pings
Host Loss% Snt Last Avg Best Wrst StDev
1. 128.199.32.253 0.0% 58 0.3 3.6 0.3 19.8 5.2
2. 138.197.250.78 0.0% 58 0.3 1.1 0.3 22.9 3.3
3. adm-b1-link.telia.net 0.0% 57 0.8 0.7 0.4 1.0 0.0
4. adm-bb4-link.telia.net 0.0% 57 79.7 80.4 79.6 88.2 1.5
5. ldn-bb4-link.telia.net 0.0% 57 80.7 78.5 77.3 88.8 2.2
6. ldn-b4-link.telia.net 0.0% 57 7.8 8.3 7.3 22.3 2.0
7. ldn-bb3-link.telia.net 0.0% 57 112.2 113.3 112.1 145.0 4.6
8. prs-bb3-link.telia.net 0.0% 57 94.2 94.4 94.1 95.8 0.2
9. ash-bb4-link.telia.net 0.0% 57 94.9 94.7 94.3 97.0 0.5
10. ash-b1-link.telia.net 0.0% 57 94.5 94.4 94.2 94.7 0.0
11. tp-brdrbtr-02.bwi.tierpoint.net 0.0% 57 96.6 96.7 96.5 97.0 0.0
12. te-0-0-2-2.tp-bwi-core-rtr-01.bwi.opsmgmt.net 0.0% 57 96.6 96.5 96.4 96.6 0.0
13. 40.142.52.27 0.0% 57 97.4 97.4 97.2 97.8 0.0
14. 144-202-157-173.baltimoretechnologypark.com 0.0% 57 99.1 99.0 98.9 100.1 0.1
15. 144-202-238-253.baltimoretechnologypark.com 0.0% 57 98.8 98.8 98.8 99.0 0.0
16. ssd20-md.privatesystems.net 0.0% 57 96.9 96.9 96.9 97.1 0.0
17. host.gimpchat.com 0.0% 57 97.0 96.9 96.8 99.7 0.3
edited 4 hours ago
answered 4 hours ago
xenoidxenoid
1,7531416
1,7531416
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f848744%2fping-monitoring-program%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown