Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Forked from teyc/index.html
Created October 18, 2022 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrichardsz/23fbc4cc1821af8f6e43a089567e7001 to your computer and use it in GitHub Desktop.
Save jrichardsz/23fbc4cc1821af8f6e43a089567e7001 to your computer and use it in GitHub Desktop.
Monitoring Health Checks
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Health Check Status</title>
<link href="//unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<script src="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.8.2/js/fontawesome.min.js"
integrity="sha256-KZjyrvXj0bZPo6kaV2/gP3h2LXakV/QALQ6UmBhzqD0=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.8.2/css/all.min.css"
integrity="sha256-BtbhCIbtfeVWGsqxk1vOHEYXS6qcvQvLMZqjtpWUEx8=" crossorigin="anonymous">
</head>
<body>
<div class="bg-indigo-800 p-5 flex mb-5">
<img src="http://place-hold.it/60x60" width="60" height="60" class="object-scale-down inline mr-5" />
<div class="">
<h1 class="text-lg text-gray-100 font-serif">
Status page - Development</h1>
<h2 class="text-2xl text-gray-200">All systems operational</h2>
</div>
<i class="far fa-cog ml-auto my-auto text-2xl text-gray-400"></i>
</div>
<div class="container pl-5">
<h2 class="border-b border-solid border-gray-200 mb-5">Subsystem 1</h2>
<ul class="fa-ul mb-4">
<li class="mb-4"><span class="fa-li"><i class="far fa-check-circle text-green-800"></i></span>List icons can
<ul class="fa-ul mb-4">
<li><span class="fa-li"><i class="far fa-check-circle text-green-600"></i></span>List icons can
http://someservice/</li>
<li><span class="fa-li"><i class="far fa-temperature-high text-orange-400"></i></span>List icons can
</li>
<li><span class="fa-li"><i class="far fa-fire text-red-600"></i></span>List icons can</li>
</ul>
<div class="absolute top-0 right-0">
<span class="text-gray-600">5 minutes ago</span>
<button class="border-solid border-gray-400 border px-2 py-1 rounded-lg">Refresh</button>
</div>
</li>
<li class="mb-4"><span class="fa-li"><i class="far fa-check-circle text-green-800"></i></span>List icons can
<div class="absolute top-0 right-0">
<span class="text-gray-600">5 minutes ago</span>
<button class="border-solid border-gray-400 border px-2 py-1 rounded-lg">Refresh</button>
</div>
</li>
<li class="mb-4"><span class="fa-li"><i class="far fa-check-circle text-green-800"></i></span>List icons can
<div class="absolute top-0 right-0">
<span class="text-gray-600">5 minutes ago</span>
<button class="border-solid border-gray-400 border px-2 py-1 rounded-lg">Refresh</button>
</div>
</li>
</ul>
<h2 class="border-b border-solid border-gray-200 mb-5">Subsystem 2</h2>
<ul class="fa-ul mb-4">
<li><span class="fa-li"><i class="far fa-check-circle text-green-800"></i></span>List icons can
<ul class="fa-ul mb-4">
<li><span class="fa-li"><i class="far fa-check-circle text-green-800"></i></span>List icons can</li>
<li><span class="fa-li"><i class="far fa-check-circle text-green-800"></i></span>List icons can</li>
<li><span class="fa-li"><i class="far fa-check-circle text-green-800"></i></span>List icons can</li>
</ul>
</li>
<li><span class="fa-li"><i class="far fa-check-circle text-green-800"></i></span>List icons can</li>
<li><span class="fa-li"><i class="far fa-check-circle text-green-800"></i></span>List icons can</li>
</ul>
</div>
<div id="app">{{ message }}</div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="index.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment