Maximum allowed "file" size of a json

can someone quickly help me out with a tip? I want to change the maximum allowed "file" size of a json that is printed into an insight, to get rid of the "This field contains large amounts of data. Download File to see its content." message. Thanks!

0 2 299
2 REPLIES 2

I think this is a database change but I'm not sure where. I was able to increase my limit on SaaS with a support ticket. I also added a "Truncate" option to Add General Insight that just cuts the message off so part of it still displays. At the time, my limit was 20,000. I think we were able to bump it up to 50,000
truncate = siemplify.extract_action_param("Truncate", print_value=False, input_type=bool)

if truncate and len(message) > 20000:
message = message[0:20000]
title += " (truncated)"

To reply to myself: It's "MaximumCharactersGeneralResult" in Siemplifys Siemplify_Main_Config.xml file for 5.5, or the respective database key in versions >=5.6