Skip to content

Commit

Permalink
Replace FruityVice with Swapi
Browse files Browse the repository at this point in the history
  • Loading branch information
kdubois committed Oct 19, 2024
1 parent 4effaa8 commit a6cbf20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion documentation/modules/ROOT/pages/04_panache.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[#quarkusp-demo-overview]
== Demo Overview

You'll learn how easy and productive Quarkus is with Hibernate with Panache. For this, we'll develop a simple CRUD REST API that handles information about fruits.
You'll learn how easy and productive Quarkus is with Hibernate with Panache. For this, we'll develop a simple CRUD REST API that handles information about movies.

We'll use http://www.h2database.com[H2,window="_blank"] as our backing database in this section, but it's very easy to use other database engines with Quarkus as you will see in the Dev Services chapter. As an exercise for later, we suggest to try your favorite database engine with the documentation found https://quarkus.io/guides/datasource[here,window="_blank"].
Expand Down
2 changes: 1 addition & 1 deletion documentation/modules/ROOT/pages/08_rest-client.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ quarkus extension add rest-client rest-client-jackson
Notice in the logs how Quarkus is reloading and the `rest-client-jackson` extension is now part of the `Installed features`.
== Create FruityVice POJO
== Create Swapi POJO
We need to create a POJO object that is used to unmarshal a JSON message from http://swapi.dev[window=_blank].
Expand Down
2 changes: 1 addition & 1 deletion documentation/modules/ROOT/pages/11_observability.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ curl -w '\n' localhost:8080/movie?year=1980

=== Trace down the requests in Jaeger

Go to http://localhost:16686 in your browser. You should see the Jaeger UI, if not make sure the `docker run` command was executed successfully. To see the traces we just produced, select 'tutorial-app' from the Service dropdown and click 'Find Traces'. Depending on how many times you sent requests to the fruit endpoint, you'll see a number of traces that were collected.
Go to http://localhost:16686 in your browser. You should see the Jaeger UI, if not make sure the `docker run` command was executed successfully. To see the traces we just produced, select 'tutorial-app' from the Service dropdown and click 'Find Traces'. Depending on how many times you sent requests to the Movie endpoint, you'll see a number of traces that were collected.

[.mt-4.center]
image::Jaeger.png[Jaeger Tracing,800,500,align="center"]
Expand Down

0 comments on commit a6cbf20

Please sign in to comment.