Skip to content

atoamaeto/fluentd-parsing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Fluentd Parsing Configuration

Fluentd Json Parser

  1. Running script generator
python3 json-generator.py >> /var/log/json/python-json.log &
tail -f /var/log/json/python-json.log
  1. Copy file config for parse json log
cp json-parsing.conf /etc/td-agent/config.d/json-parsing.conf
  1. Restart service
systemctl restart td-agent
systemctl status td-agent
  1. Parsing result
tail -f /var/log/td-agent/td-agent.log

Fluentd XML Parser

Fluentd XML Parser using fluentd plugins fluent-plugin-xml-parser and fluent-plugin-xml-simple-filter.

  1. Create generator XML log
sudo apt -y install python3-lxml
  1. Create generator XML log
vim xml-generator.py
from lxml import etree

# create XML 
root = etree.Element('root')
root.append(etree.Element('child'))
# another child with text
child = etree.Element('child')
child.text = 'some text'
root.append(child)

# pretty string
s = etree.tostring(root, pretty_print=True)
print(s)

Example Output

<root>
  <child/>
  <child>some text</child>
</root>
  1. Install plugin for parsing XML log
td-agent-gem install  fluent-plugin-xml-parser
td-agent-gem install  fluent-plugin-xml-simple-filter
  1. Copy file config for parse xml log
cp xml-parsing.conf /etc/td-agent/config.d/xml-parsing.conf
  1. Restart service
systemctl restart td-agent
systemctl status td-agent
  1. Parsing result
tail -f /var/log/td-agent/td-agent.log

Releases

No releases published

Packages

 
 
 

Languages