Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are two ways in which we can disable the landmarks which are not responding. 

1) Manual Process

2) Automate Automated Process (updated by cronjob)

...

Code Block
 update landmarks set enabled = '0' where ipv4Addr = '141.22.213.35';
  • Update Sites.xml so that it can now use the updated landmarks using follwing cmd
Code Block
 create_sites-xml.pl > /afs/slac/www/comp/net/wan-mon/tulip/sites.xml

Automated Process (updated by cronjob)

  tulip-tuning.pl

Now with the help of this results from analysis script we can very well identify the hosts and thier success percentage. We opted to disable all the hosts which were having success less than 20%. The above mentioned script is in $tulipdir and it performs the listed functions. It use LWP package to access the webpage, download the file and then parse the output to get the faulty landmarks.

...