Nested Jason with Filebeat

Dear all,
recently I used logz.io to do my logging.
My log-entries are nested .net objects, that I serialize to Json using NLog.

With logz.io it just works fine - I can model any log-message and it will show up as a nested JSON in Kibana.

Now I want to build this with my own ELK stack using filebeats sending directly to ES.

The first problem I run into is:
Filebeats seems to have issues handling nested Json rows.

Sample Json as received by logz.io:

 "_source": {
    "level": "Info",
    "strategyContext": {
      "strategyTitle": "Strat1",
      "magicID": "123",
      "symbol": "Crypto",
      "vpid": "1"
    },
    "appName": "MFM_Live",
    "logger": "MFM.Trades",
    "message": "InstructionID: 123 Order opened 123",
    "logClass": "StrategyLog",
    "type": "nlog",
    "sequenceId": "2",
    "logAction": "Trading_L20_Order_Success",
    "tags": [
      "_logz_http_bulk_json_8070"
    ],
    "@timestamp": "2018-01-24T22:06:32.1576008+01:00",
    "trading_L20_Order_Success": {
      "orderID": "123",
      "instructionID": "123",
      "logLevel": 2,
      "logMessage": "InstructionID: 123 Order opened 123"
    }
  },

This I want to achieve with my own ELK stack - what do I need to do?

Thanks and regards

Michael

I see how you would like the output to be, what's the input?

Please share the raw log lines that are being ingested by Filebeat.
Please share the configuration you are using for Filebeat.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.