You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vignettes/rhino.Rmd
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,7 @@ We recommend creating an instance of `Telemetry` on the `app/main.R` and then st
162
162
This will create a text file with the events tracked by`{shiny.telemetry}`.
163
163
It is the simplest storage backend available and the file contains JSON data that can be easily read and processed.
164
164
165
-
To learn about other backends see the["Use External Databases with shiny.telemetry" guide](databases.Rmd).
165
+
To learn about other backends see the["Use External Databases with shiny.telemetry" guide](https://appsilon.github.io/shiny.telemetry/articles/databases.html).
166
166
167
167
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.
168
168
In this example we are enabling them to help demonstrate the capabilities of`{shiny.telemetry}`.
@@ -184,7 +184,7 @@ server <- function(id) {
184
184
```
185
185
186
186
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.
187
-
See the[Guide on tracking specific inputs](tracking-specific-input-id.Rmd) for more details.
187
+
See the[Guide on tracking specific inputs](https://appsilon.github.io/shiny.telemetry/articles/tracking-specific-input-id.html) for more details.
188
188
189
189
The application is now ready to track the input changes, login, logout and browser version. Start the application and test it out yourself.