github.com/pdaian/flashboys2@v0.0.0-20190718175736-b101c35361f0/go-ethereum/arbmonmon/templates/index.html (about)

     1  <!DOCTYPE html>
     2  <html>
     3  <head>
     4      <title>Arbitrage Monitor Monitor</title>
     5  </head>
     6  <body>
     7      <h3>Yo dawg, I heard you like monitors so I put a monitor on your monitor so you can monitor while you monitor</h3>
     8      <table style="width:100%">
     9          <tr>
    10              <th>Hostname</th>
    11              <th>Monitoring IP Address</th>
    12              <th>Time Last Checked</th>
    13              <th>Sync Status</th>
    14              <th>Current Block</th>
    15              <th>Highest Block</th>
    16              <th>Known States </th>
    17              <th>Pulled States</th>
    18              <th>Starting Block</th>
    19              <th>Percent Synced</th>
    20          </tr>
    21          {% for statusrow in infolist %}
    22              <tr>
    23                  <th>{{ statusrow[0] }}</th>
    24                  <th>{{ statusrow[1] }}</th>
    25                  <th>{{ statusrow[2] }}</th>
    26                  <th>{{ statusrow[3] }}</th>
    27                  <th>{{ statusrow[4] }}</th>
    28                  <th>{{ statusrow[5] }}</th>
    29                  <th>{{ statusrow[6] }}</th>
    30                  <th>{{ statusrow[7] }}</th>
    31                  <th>{{ statusrow[8] }}</th>
    32                  <th>{{ statusrow[9] }}%</th>
    33              </tr>
    34          {% endfor %}
    35      </table>
    36  </body>
    37  </html>
    38