Skip to content
Snippets Groups Projects
Commit 618209bc authored by Jan Waller's avatar Jan Waller
Browse files

formatting changes

parent e398a845
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<h:head> <h:head>
<title>Kieker Live Demo</title> <title>Kieker Live Demo</title>
<link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" /> <link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="http://kieker-monitoring.net/wp-content/themes/kieker/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="resources/favicon.ico" />
<style> <style>
/* Link color */ /* Link color */
a, a,
...@@ -35,8 +35,6 @@ ...@@ -35,8 +35,6 @@
} }
p {margin:0.2cm 2cm 1cm 2cm;text-align:justify;color:black} p {margin:0.2cm 2cm 1cm 2cm;text-align:justify;color:black}
img.p {border:2px solid #3257A7;border-radius:20px;width:150px;height:150px} img.p {border:2px solid #3257A7;border-radius:20px;width:150px;height:150px}
.floatleft {float:left;width:65%}
.floatright{float:right;}
</style> </style>
</h:head> </h:head>
...@@ -65,15 +63,12 @@ ...@@ -65,15 +63,12 @@
<col width="50%"></col> <col width="50%"></col>
<tr> <tr>
<td colspan="2"> <td colspan="2">
<p class="floatleft" style="margin-right:0.5cm;margin-bottom:2cm"> <div align="center">
For the analysis presented on this page the JPetStore (an exemplary online shop) has been instrumented
with <strong>Kieker</strong>.
</p>
<p class="floatright" style="margin-left:0cm;margin-bottom:2cm">
<a href="/jpetstore" target="_blank"> <a href="/jpetstore" target="_blank">
<img title="Open the JPetStore" class="p" style="float:right;border-color:black;" src="resources/petstore.png" alt=""/> <img class="p" style="border-color:black;" title="Open the JPetStore" src="resources/petstore.png" alt=""/>
</a> </a>
</p> <br></br><p><strong><a href="/jpetstore" target="_blank">JPETSTORE</a></strong> provides an exemplary online shop that has been instrumented with <strong>Kieker</strong> for the analyses presented in this demo.</p>
</div>
</td> </td>
</tr> </tr>
<tr> <tr>
...@@ -82,10 +77,7 @@ ...@@ -82,10 +77,7 @@
<a href="resources/recordList.jsf"> <a href="resources/recordList.jsf">
<img class="p" src="resources/recordList.png" alt=""/> <img class="p" src="resources/recordList.png" alt=""/>
</a> </a>
<br></br><p><strong>RECORD LIST</strong> shows the session id, the trace id, a part of the method signature <br></br><p><strong><a href="resources/recordList.jsf">RECORD LIST</a></strong> shows the session id, the trace id, a part of the method signature and the method response time of the last 100 called methods of the JPetStore. There is a freeze button to stop updating the site, so that you can look at the details. A mouseover on trace id shows the whole record which is generated by Kieker and a mouseover on signature shows the whole method signature.</p>
and the method response time of the last 100 called methods of the JPetStore. There is a freeze button to stop updating
the site, so that you can look at the details. A mouseover on trace id shows the whole record which is generated by Kieker
and a mouseover on signature shows the whole method signature.</p>
</div> </div>
</td> </td>
<td> <td>
...@@ -93,7 +85,7 @@ ...@@ -93,7 +85,7 @@
<a href="resources/chart.jsf"> <a href="resources/chart.jsf">
<img class="p" src="resources/methodResponseTimes.png" alt=""/> <img class="p" src="resources/methodResponseTimes.png" alt=""/>
</a> </a>
<br></br><p><strong>METHOD RESPONSE TIMES</strong> shows a line chart with the number of method calls and a <br></br><p><strong><a href="resources/chart.jsf">METHOD RESPONSE TIMES</a></strong> shows a line chart with the number of method calls and a
bar chart with the response times of these methods.</p> bar chart with the response times of these methods.</p>
</div> </div>
</td> </td>
...@@ -104,7 +96,7 @@ ...@@ -104,7 +96,7 @@
<a href="resources/systemModel.jsf"> <a href="resources/systemModel.jsf">
<img class="p" src="resources/systemModel.png" alt=""/> <img class="p" src="resources/systemModel.png" alt=""/>
</a> </a>
<br></br><p><strong>SYSTEM MODEL</strong> shows the runtime collected components, operations, etc of the JPetStore.</p> <br></br><p><strong><a href="resources/systemModel.jsf">SYSTEM MODEL</a></strong> shows the runtime collected components, operations, etc of the JPetStore.</p>
</div> </div>
</td> </td>
<td> <td>
...@@ -112,7 +104,7 @@ ...@@ -112,7 +104,7 @@
<a href="resources/cpu.jsf"> <a href="resources/cpu.jsf">
<img class="p" src="resources/cpuMemSwap.png" alt=""/> <img class="p" src="resources/cpuMemSwap.png" alt=""/>
</a> </a>
<br></br><p><strong>CPU AND MEMSWAP</strong> shows the CPU and memory utilization of the available cores.</p> <br></br><p><strong><a href="resources/cpu.jsf">CPU AND MEMSWAP</a></strong> shows the CPU and memory utilization of the available cores.</p>
</div> </div>
</td> </td>
</tr> </tr>
......
# Rules reminder:
# DEBUG < INFO < WARN < ERROR < FATAL
# Global logging configuration
log4j.rootLogger=INFO, stdout
# My logging configuration...
log4j.logger.org.mybatis.jpetstore=INFO
## Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p %d %C: %m%n
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<h:head> <h:head>
<title>Kieker Live Demo</title> <title>Kieker Live Demo</title>
<link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" /> <link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="http://kieker-monitoring.net/wp-content/themes/kieker/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="resources/favicon.ico" />
<style> <style>
/* Link color */ /* Link color */
a, a,
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<h:head> <h:head>
<title>Kieker Live Demo</title> <title>Kieker Live Demo</title>
<link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" /> <link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="http://kieker-monitoring.net/wp-content/themes/kieker/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="resources/favicon.ico" />
<style> <style>
/* Link color */ /* Link color */
a, a,
......
kieker.live.demo/webapps/root/resources/favicon.ico

1.12 KiB

...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<h:head> <h:head>
<title>Kieker Live Demo</title> <title>Kieker Live Demo</title>
<link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" /> <link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="http://kieker-monitoring.net/wp-content/themes/kieker/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="resources/favicon.ico" />
<style> <style>
/* Link color */ /* Link color */
a, a,
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<h:head> <h:head>
<title>Kieker Live Demo</title> <title>Kieker Live Demo</title>
<link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" /> <link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="http://kieker-monitoring.net/wp-content/themes/kieker/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="resources/favicon.ico" />
<style> <style>
/* Link color */ /* Link color */
a, a,
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<h:head> <h:head>
<title>Kieker Live Demo</title> <title>Kieker Live Demo</title>
<link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" /> <link rel="stylesheet" type="text/css" media="all" href="http://kieker-monitoring.net/wp-content/themes/kieker/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="http://kieker-monitoring.net/wp-content/themes/kieker/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="resources/favicon.ico" />
<style> <style>
/* Link color */ /* Link color */
a, a,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment