knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

shinylogs

Logging tool for Shiny applications: record inputs or outputs changes, and infos about user's session. All recording is done client-side to not slow down the application and occupy the server.

version cran checks Lifecycle: stable Project Status: Active The project has reached a stable, usable state and is being actively developed. Codecov test coverage Travis build status R build status

Installation

You can install the released version of shinylogs from CRAN with:

install.packages("shinylogs")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("dreamRs/shinylogs")

Usage

Call the main function track_usage in server part of application, and specify where to write logs:

library(shinylogs)

track_usage(storage_mode = store_json(path = "logs/"))

The function will record :

See the vignette for more details (?vignette("shinylogs")) or the online version.

Examples

Some example of what is recorded with logs from applications available on our Shiny-Server: http://shinyapps.dreamrs.fr/

Number of connections per applications:

knitr::include_graphics("man/figures/connections-apps.png")

Number of connections over time :

knitr::include_graphics("man/figures/connections-day.png")

Which tabs (from sidebar in {shinydashboard}) in shinyWidgets gallery are the most seen :

knitr::include_graphics("man/figures/shinyWidgets-tabs.png")

User-agent is recorded per connection and can be parsed with uaparserjs : (unique users are not registered as we use the open source version of shiny-server)

knitr::include_graphics("man/figures/ua-family.png")
knitr::include_graphics("man/figures/ua-os.png")


karimelghazouly/shinylogs_modified documentation built on Jan. 9, 2021, 12:37 a.m.