StayTherapy opened a new issue #7250:
URL: https://github.com/apache/skywalking/issues/7250


   Please answer these questions before submitting your issue.
   
   - Why do you submit this issue?
   - [X] Question or discussion
   - [ ] Bug
   - [ ] Requirement
   - [ ] Feature or performance improvement
   
   ___
   ### Question
   - What do you want to know?
   
   For simple, I  want collect JSON log with `fluent-bit` and direct push to 
SkyWalking .
   
   Follow [Log Collecting And 
Analysis](https://skywalking.apache.org/docs/main/latest/en/setup/backend/log-analyzer/),
 I setup a `fluent-bit` in docker like this:
   
   **fluent-bit.conf**
   ```bash
   [SERVICE]
       Flush          5
       Daemon         Off
       Log_Level      warn
       Parsers_File   fluent-bit-parser.conf
   [INPUT]
       Name           tail
       Path           /logs/*.log
       Parser         my-log-format
   [OUTPUT]
       Name            stdout
       Match           *
       Format          json
   [OUTPUT]
       Name            http
       Match           *
       Host            oap
       Port            12800
       URI             /v3/logs
       Format          json
   ```
   
   **fluent-bit-parser.conf**
   ```bash
   [PARSER]
       Name   my-log-format
       Format json
   ```
   
   
   The log of `fluent-bit` is fine, JSON log printed. **But** there is nothing 
in `log` page in SkyWalking UI ,it's always `No Data`.
   
   Is there any configuration of `skywalking-oap-server` should be update?
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to