def group_logs_by_configs(
    *,
    logs: List[unify.Log],
) -> Dict:

source code

Groups logs based on their unique parameter configurations.

Arguments:

  • logs - The logs to group into their unique parameter configurations.

Returns:

The grouped logs, with flattened string representation of the parameters (the config) as keys, and the list of logs as values.