FaaSr / FaaSr-package

Function-as-a-Service package for R
https://faasr.io
Other
4 stars 8 forks source link

Client-side tools to assist log management #75

Closed renatof closed 5 months ago

renatof commented 8 months ago

As the number of logs grow, users will need to manage them. A couple of client-side tools could help in this task: faasr_get_log_df(Data_Server) - returns a data frame with all logs stored in the Data_Server; at a minimum, the frame could have rows of (UUID, date, function_names) faasr_get_log(Data_Server, UUID) - download logs associated with one UUID faasr_delete_log(Data_Server, UUID) - delete logs associated with one UUID faasr_delete_log_date(Data_Server, date) - delete all logs created on or before a given date