Forum Discussion

mkerfoot's avatar
7 years ago

Public IP Property Source

P2HEZR - Public IP property source

Kind regards,

Matthew Kerfoot

4 Replies

Replies have been turned off for this discussion
  • Thanks for this, this is great.

    I am only interested in the ip and org info so in the interest of de-cluttering the property source info I reduced the script output to just that. Stack Exchange (since I'm not a groovy guy) pointed me to this solution.
     

    //comment out orig map iteration
    //arrayInfo_map.each{ key, value -> println "$key=$value"};
    
    def ip_addr = arrayInfo_map.find{ it.key == "ip" }?.value;
    if(ip_addr)
        println "ip = ${ip_addr}";
    
    def carrier = arrayInfo_map.find{ it.key == "org" }?.value;
    if(carrier)
        println "org = ${carrier}";

    I wouldn't be surprised if improvement on this is possible.

    Thanks again.

  • 503 : This LogicModule is currently undergoing security review. It will be available for import only after our engineers have validated the scripted elements.
    :-(
  • Looks like it is working for me now, could you give it another try when time allows?

    I would expect it to be available in the next few days. PM me and I can send you the XML if you would prefer.