import json


def rule(event):
    if "exited on signal 6 (core dumped)" in json.dumps(event.to_dict()):
        return True
    return False
