-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavostats.html
78 lines (74 loc) · 3.46 KB
/
navostats.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html>
<head>
<title>NAVO Service Monitor Statistics - Demo</title>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no'>
<meta http-equiv='x-ua-compatible' content='ie=edge'>
</head>
<body>
<div>
<h1>NAVO Service Monitor Statistics - Demo Page</h1>
<h2>Overview</h2>
<p>
NAVO has started regularly querying some TAP and Cone Search services to collect
data on their response times. So far this is mostly NAVO services, but also includes
a CDS 2MASS cone search for comparison. (Some Chandra Source Catalog queries are
also done, but due to sparse sky coverage these need to be adjusted.)
</p>
<p>The queries are done using the <code>servicemon</code> application
(<a href="https://servicemon.readthedocs.io/en/latest/" rel="noopener"
target="_blank">https://servicemon.readthedocs.io/en/latest/</a>),
and are executed from several different locations. The AWS instrumentation is
handled with the software at <a href="https://github.com/NASA-NAVO/AWS_servicemon"
rel="noopener" target="_blank">https://github.com/NASA-NAVO/AWS_servicemon</a>.
The results are written to a TAP-accessible database currently running at IPAC.
</p>
<h2>Exploring the Results</h2>
<h3>Via Static Web Pages</h3>
<p>
Plots are generated each week to summarize the statistics for the week. Those are available here:
</p>
</div>
<div id='myapp'>
<div>
<button v-on:click="openWeeklyPage" style="font-size:larger;">Open statistics for week of</button>
<v-date-picker
v-model="date_selected"
:model-config="modelConfig"
:available-dates="availableDates"
:locale="locale"
>
<template v-slot="{ inputValue, inputEvents }">
<input
class="bg-white border px-2 py-1 rounded"
:value="inputValue"
v-on="inputEvents"
readonly
style="font-size:larger;"
/>
</template>
</v-date-picker>
</div>
</div>
<div>
<h3>Using the TAP Service</h3>
<p>The results are available via a TAP service at
<a href="http://navo01.ipac.caltech.edu/TAP" rel="noopener"
target="_blank">http://navo01.ipac.caltech.edu/TAP</a> which has a table
called <code>navostats2</code> with one row per query run by servicemon.
This table contains data starting from about April 6, 2021.
</p>
<p>
For much more detailed information about what tests were run, and how to use
the TAP service, please see the <a href="https://nasa-navo.github.io/notebooks/ExplorePerformanceData.html" rel="noopener"
target="_blank">rendered Jupyter notebook</a>
</p>
</div>
<!-- 1. Link Vue Javascript -->
<script src='https://unpkg.com/vue/dist/vue.js'></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> -->
<!-- 2. Link VCalendar Javascript (Plugin automatically installed) -->
<script src='https://unpkg.com/v-calendar'></script>
<script src="navostats.js"></script>
</body>
</html>