Shiny Basics¶
In this wee vignette we give just basic examples of how to use titan in shiny applications.
Helpers¶
Titan allows easily tracking some interactions by default, saving you the trouble of setting up metrics.
Starting from the (very) basic shiny application below which simply prints text to the console at the click of a button.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
We will see how to define custom metrics later but before we do so, there are a number out-of-the-box (optional) metrics that titan provides:
- Inputs: Tracks all input messages sent from the front-end to the server to better understand which are most used. This is handled with a counter that uses the
name
of the inputs aslabels
. - Visits: Tracks the total number of visits to the shiny application with a counter.
- Concurrent: Tracks the number of concurrent users currently on the application with a gauge.
- Duration: Tracks the session duration; the time (in seconds) users stay and interact with the application.
As mentioned, all of those are optional (off by default) but whether you use the defaults presented here and/or your custom metrics you must use titanApp
to launch the application.
This function takes the same inputs as shinyApp
and more. The arguments inputs
, visits
, concurrent
, and duration
, which all default to NULL
meaning they are not being tracked. To track those metrics one must pass it a character string defining the name of the metric.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
Danger
On a large application tracking all inputs can create a lot of data.
Counter¶
Let’s use titan to track the number of clicks on this button rather than use the defaults provided by titan. We can use a counter since the number of clicks can only increase over time.
Load the titan package then create the counter. Note that it is created outside the application, as it only needs to be created once, placing it in the server
would recreate it every time. Though this should not be an issue as titan prevents you from overwriting an already created counter it is best to avoid it.
In the observer we increment the counter, then note that we launch the application with titanApp
and not shinyApp
, it works the exact same way but exposes the metrics.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
Histogram¶
We can also use a histogram to track the performances of a particularly long request.
Say for instance, that the application, at the click of a button, makes a relatively large request to a database or runs a time consuming model, surely we’d like to track that.
We can build a histogram to track the time it takes to run that process. We’ll use the histogram to put the time it takes into three bins:
- Less than 3 seconds
- Between 3 and 6 seconds
- 6 Seconds and more
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 |
|
Gauge¶
You could also create a gauge to track the current number of visitors on the application using a Gauge.
It’s as simple as initialising the Gauge and increasing it by one every time the server fires.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|