Hello. Here to say hi and ask questions

Hello

Im new to the world of databases and real-time monitoring. The only real reason i have databases is some containers and applications in my lab need a database loaded for them to run.
I was scrolling through grafana data sources and came across influxDB and saw it had integrations with Linux, FreeBSD, docker and Kubernetes. I use them alot and would like to make influxDB part of my infrastructure for home and work.

Now after that rambling :slight_smile: on to my question. What are some useful sources and tutorial that i can use to try and learn more so that i may and incorporate influxDB into my lab. as stated i have docker vms, Kubernetes nodes, Linux vms, and a FreeBSD firewall

Thanks for the help

Hi @BrodieCyber,
Welcome to the community! I would check out our book: https://awesome.influxdata.com/

Hello,

i am getting an issue in telegraf
2024-06-17T07:22:03Z E! [processors.parser::lcmparser] could not parse field log_json: invalid character ‘-’ after array element

[[processor.parser]] parsing the log_json field but i am getting valid and invalid json format in log_json field
if processor.parser found invalid json in the log_json field then it gives the issue

[[inputs.tail]]
alias = “abc-serviceloginput”
files = [“/var/log/containers/abc-service*”]
data_format = “grok”
grok_patterns = [‘(?:%{TIMESTAMP_ISO8601:log_timestamp})(?:%{SPACE})(?:%{WORD:log_stream})(?:%{SPACE})(?:%{WORD:log_type})(?:%{SPACE})(?:%{GREEDYDATA:log_json})’]
tags = {indexname=“abc-service”, abc_service_logs = “abc-service”}

[[processors.parser]]
alias = “abcparser”
tagpass = {abc_service_logs = [“abc-service”] }
parse_fields = [“log_json”]
merge = “override”
data_format = “json”
json_string_fields = [“*”]

[[outputs.elasticsearch]]
alias = “abcoutput”
tagpass = {abc_service_logs = [“abc-service”] }
urls = [“http://of-opensearch-master:9200”]
index_name = “{{indexname}}-%Y.%m.%d”
username = “"
password = "

metric_batch_size = 100

Can you please help me to solve this kind of issue