Ping check for custom item

I hope we have option to use tcping for custom item. it hard to find good server for custom item, because some game block vpn/vps server ip

and with tcping we can get more accurate ping result

:slight_smile: Let me work on this change when I get a chance. Thank you for your feedback. As workaround, at this point you can add it as follows (not easy version):

  1. Create a custom item.
  2. Export the custom item.

image

  1. Open .json file with the text editor. For example, the below is a simple custom with one routing table entry:
{
  "item": {
    "category": "streaming", 
    "icon": "", 
    "name": "test", 
    "rt": [
      {
        "ip": "1.1.1.1", 
        "netmask": "255.255.255.255"
      }
    ], 
    "rtt": []
  }
}
  1. Adds TCP rtt entry. For example, the syntax looks like:
{
  "item": {
    "category": "streaming", 
    "icon": "", 
    "name": "test", 
    "rt": [
      {
        "ip": "1.1.1.1", 
        "netmask": "255.255.255.255"
      }
    ], 
    "rtt": [
      {
        "family": "AF_INET", 
        "ip": "203.141.243.41", 
        "is_private": 0, 
        "location": "Asia (Japan)", 
        "port": 443, 
        "protocol": "TCP"
      }
    ]
  }
}
  1. Import the custom item.

awesome it work :heart_eyes:
at 1st i think it not work because when i change to node > destination it only show loading…
after a moment it show the ping

@bontang06 Good to hear that it works. :slight_smile: However please note also that with Mudfish v5.11.0, you can specify TCP destination for RTT checking via UI. So it’s more handy for your case.