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
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