diff --git a/vignettes/rhino.Rmd b/vignettes/rhino.Rmd index df1488eb..68d79e33 100644 --- a/vignettes/rhino.Rmd +++ b/vignettes/rhino.Rmd @@ -162,7 +162,7 @@ We recommend creating an instance of `Telemetry` on the `app/main.R` and then st This will create a text file with the events tracked by `{shiny.telemetry}`. It is the simplest storage backend available and the file contains JSON data that can be easily read and processed. -To learn about other backends see the ["Use External Databases with shiny.telemetry" guide](databases.Rmd). +To learn about other backends see the ["Use External Databases with shiny.telemetry" guide](https://appsilon.github.io/shiny.telemetry/articles/databases.html). Please note, that the values themselves are not tracked by default and need to be enabled by setting the `track_values` parameter to `TRUE` in the [`start_session()`](https://appsilon.github.io/shiny.telemetry/reference/Telemetry.html#method-Telemetry-start_session) method. In this example we are enabling them to help demonstrate the capabilities of `{shiny.telemetry}`. @@ -184,7 +184,7 @@ server <- function(id) { ``` The [`telemetry$start_session()`](https://appsilon.github.io/shiny.telemetry/reference/Telemetry.html#method-Telemetry-start_session) call can be customized to enable/disable different types of events and can be further extended to include/exclude input ids. -See the [Guide on tracking specific inputs](tracking-specific-input-id.Rmd) for more details. +See the [Guide on tracking specific inputs](https://appsilon.github.io/shiny.telemetry/articles/tracking-specific-input-id.html) for more details. The application is now ready to track the input changes, login, logout and browser version. Start the application and test it out yourself.