-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17df106
commit 9ad6793
Showing
5 changed files
with
81 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
<% layout("./layouts/basic.eta") %> | ||
|
||
<main> | ||
<section> | ||
<img src="/static/deno.jpg" alt="Deno dinosaur against a starry sky." /> | ||
<div> | ||
<p>Your nearest Deno Deploy region is... <span><%= it.location.name%></span> <code>aka <%= it.location.id %></code></p> | ||
<p>This instance on Deno Deploy has been alive for <strong><%= Math.floor(it.timeAlive) %></strong> seconds and has served <strong><%= it.requests.totalSession %></strong><%= it.requests.totalSession === 1 ? ' request' : ' requests' %>.</p> | ||
<p>Deno Finder has received <strong><%= it.requests.totalGlobal%></strong> requests in the last 24 hours, with ~ <strong><%= it.requests.percentageViaRegion%></strong>% coming from your region.</p> | ||
</div> | ||
</section> | ||
<div> | ||
<h2>Greetings from... <span><%= it.location.name%>!</span></h2> | ||
<p>You've just recieved data from part of the <a href="https://deno.com/deploy" target="_blank">Deno Deploy</a> network hosted in <%= it.location.name%> (<%= it.location.id %>). This instance has been active for <strong><%= Math.floor(it.timeAlive) %></strong> seconds and has served <strong><%= it.requests.totalSession %></strong><%= it.requests.totalSession === 1 ? ' request' : ' individual requests' %>.</p> | ||
<p>Deno Finder has received <strong><%= it.requests.totalGlobal%></strong> requests in the last 24 hours. <strong><%= it.requests.percentageViaRegion%></strong>% of these have been handled by infrastructure in <%= it.location.name%> <%= it.location.emoji%>.</p> | ||
</div> | ||
</main> |