Learn R Programming

rsconnect (version 0.8.28)

applications: List Deployed Applications

Description

List all applications currently deployed for a given account.

Usage

applications(account = NULL, server = NULL)

Value

Returns a data frame with the following columns:

idApplication unique id
nameName of application
urlURL where application can be accessed
statusCurrent status of application. Valid values are pending, deploying, running, terminating, and terminated
sizeInstance size (small, medium, large, etc.) (on ShinyApps.io)
instancesNumber of instances (on ShinyApps.io)
config_urlURL where application can be configured

Arguments

account

Account name. If a single account is registered on the system then this parameter can be omitted.

server

Server name. Required only if you use the same account name on multiple servers.

See Also

deployApp(), terminateApp()

Other Deployment functions: deployAPI(), deployApp(), deployDoc(), deploySite(), deployTFModel()

Examples

Run this code
if (FALSE) {

# list all applications for the default account
applications()

# list all applications for a specific account
applications("myaccount")

# view the list of applications in the data viewer
View(applications())
}

Run the code above in your browser using DataLab