Versions Compared

Key

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

...

Version 1.0 of the TIER Instrumentation specification calls for each TIER container to send a daily “beacon.” This beacon will contain only product (Shibboleth-IdP/Grouper/COmanage), product version (3.3.1/2.3/2.0), and a TIER release identifier.* This reporting data gives crucial insights to the TIER investor community regarding how and where the releases are being deployed so that adoption of deliverables can be directly measured.

The format of the beacon message will be JSON, which is already in use in other components and simple to implement. The message will be sent via HTTP/REST on a non-standard port (5001) to an AWS “collector” VM operated by TIER (collector.testbed.tier.internet2.edu).  Each container will be configured at final build time with a random time for these daily messages to be sent (via cron).  That random time will be between midnight and 4am.  This is the format of the incoming message:  

Info

{

"host" : "IP Addr"

"msgType" : "TIERBEACON",

"msgName" : "TIER",


 "msgVersion" : "1.0",

"tbProduct" : "<COMPONENT_NAME>",


"tbProductVersion" : "<PRODUCT_VERSION>",


"tbTIERRelease" : "<TIER_RELEASE>",


"tbMaintainer" : "<MAINTAINER>"


}

...