SplunkでCSVファイルをルックアップテーブルに登録しようとすると、下記のようなエラーが出ることがある。
Your entry was not saved. The following error was reported: SyntaxError: JSON.parse: unexpected character at line 2 column 5 of the JSON data.
この場合、ファイルのパーミッションが原因の場合がある。
-rw-rw-r--
であるべきが、
-rw-------
となっているなど。
chmod 765 ***
等でパーミッションを変更したら解決した。