Skip to content

Commit

Permalink
Updating navbar and README
Browse files Browse the repository at this point in the history
  • Loading branch information
cchesser committed Jan 11, 2021
1 parent 4ef752a commit 0662820
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 22 deletions.
22 changes: 6 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,20 @@
## Java Performance Workshop
A tutorial workshop that will dive in understanding "what's going on in your JVM".

This workshop has the following components:

* [Part 1](part_1/README.md): Basics with OS, processes, and thread
* [Part 2](part_2/README.md): Java Mission Control and Flight Recorder
* [Part 3](part_3/README.md): Advanced Flight Recorder
* [Part 4](part_4/README.md): Java Heap Analysis
* [Part 5](part_5/README.md): Garbage Collections

This workshop is utilizing a basic web service that is included, which isn't exactly optimal
in how it performs. The goal is to use this service as an interactive example and identify
its poor performing elements. To learn more about this web service that is included, see
the following notes.
A tutorial workshop that will dive in understanding "what's going on in your
JVM". This workshop is utilizing a basic web service that is included, which
isn't exactly optimal in how it performs. The goal is to use this service as an
interactive example and identify its poor performing elements. To learn more
about this web service that is included, see [the site](https://jvmperf.net/).

### Service

The web service is a [simple dropwizard server](http://www.dropwizard.io/), which has a single API to search for talks
from [kcdc.info](http://www.kcdc.info/), and returns results about these talks.


#### Running

**Prerequisites:**

* [Maven 3.x](https://maven.apache.org/index.html)
* [Java 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)

Expand Down Expand Up @@ -125,7 +117,5 @@ If you get a `500` error message when trying to test the service, verify that th
}
```



### Reference
* [KCDC 2015 workshop slides](https://github.com/cchesser/java-perf-workshop/wiki/slides/kcdc2015_whats_in_you_jvm.zip)
6 changes: 3 additions & 3 deletions docs/content/_index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
title: "Java Performance Workshop"
title: "jvmperf"
linkTitle: "Java Performance Workshop"
---

{{< blocks/cover title="Welcome to the Java Performance Workshop!" image_anchor="top" height="full" color="orange" >}}
{{< blocks/cover title="Understand how your JVM works." image_anchor="top" height="full" color="orange" >}}
<div class="mx-auto">
<a class="btn btn-lg btn-primary mr-3 mb-4" href="{{< relref "/docs" >}}">
Get Started <i class="fas fa-arrow-alt-circle-right ml-2"></i>
</a>
<a class="btn btn-lg btn-secondary mr-3 mb-4" href="https://github.com/cchesser/java-perf-workshop">
Download <i class="fab fa-github ml-2 "></i>
</a>
<p class="lead mt-5">Learn how your Java applications are performing with free available tooling for the JVM.</p>
<p class="lead mt-5">An open-source guide that steps through how to use open-source tooling to inspect and troubleshoot the performance of your Java applications.</p>
{{< blocks/link-down color="info" >}}
</div>
{{< /blocks/cover >}}
Expand Down
4 changes: 2 additions & 2 deletions docs/content/docs/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Documentation"
linkTitle: "Documentation"
title: "Workshop"
linkTitle: "Workshop"
weight: 10
menu:
main:
Expand Down
2 changes: 1 addition & 1 deletion docs/layouts/partials/navbar.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{ $cover := .HasShortcode "blocks/cover" }}
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark {{ if $cover}} td-navbar-cover {{ end }}flex-column flex-md-row td-navbar">
<a class="navbar-brand" href="{{ .Site.Home.RelPermalink }}">
<span class="navbar-logo">{{ if .Site.Params.ui.navbar_logo }}{{ with resources.Get "icons/logo.png" }}{{ ( . | minify).Content | safeHTML }}{{ end }}{{ end }}</span><span class="font-weight-bold">{{ .Site.Title }}</span>
<span class="navbar-logo">{{ if .Site.Params.ui.navbar_logo }}{{ with resources.Get "icons/logo.png" }}{{ ( . | minify).Content | safeHTML }}{{ end }}{{ end }}</span><span class="font-weight-bold"><i class="fas fa-cube"></i>&nbsp;&nbsp;jvmperf</span>
</a>
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
<ul class="navbar-nav mt-2 mt-lg-0">
Expand Down

0 comments on commit 0662820

Please sign in to comment.