Get a list of user usage
This function returns the usage and access logs for a given date range within a 3 month period. The user must have Admin Console / Logs permissions (must be able to view the Usage & Access Log data in the web interface) in order to use this function.
get_usage_logs(
startDate = Sys.Date() - 91,
endDate = Sys.Date() - 1,
login = NA,
ip = NA,
rsid = NA,
eventType = NA,
event = NA,
limit = 100,
page = 0,
company_id = Sys.getenv("AW_COMPANY_ID")
)startDate |
Start date for the maximum of a 3 month period. |
endDate |
End date for the maximum of a 3 month period. |
login |
The login value of the user you want to filter logs by. |
ip |
The IP address you want to filter logs by. |
rsid |
The report suite ID you want to filter logs by. |
eventType |
The numeric id for the event type you want to filter logs by. Leaving this blank returns all events. See the Usage Logs API Guide for a complete list of event types. |
event |
The event description you want to filter logs by. No wildcards are permitted. |
limit |
The number of results to return per page. This argument works in conjunction with the
|
page |
The "page" of results to display. This works in conjunction with the |
company_id |
Company ID. If an environment variable called |
A data frame of logged events and the event meta data.
## Not run: get_usage_logs(startDate = Sys.Date()-91, endDate = Sys.Date()-1, limit = 100, page = 0) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.