NMON to JSON Converted Files Will Not Import

It sounds like your JSON files are pretty-printed. You are ingesting a line that just contains "}".

Use a multiline codec. That example consumes the whole file as one event. If your files have multiple JSON objects you might use a pattern like ^}. It really depends on what your files look like.