{"id":207,"date":"2024-11-12T02:18:33","date_gmt":"2024-11-12T01:18:33","guid":{"rendered":"https:\/\/www.systemdeveloper.nl\/tech\/?p=207"},"modified":"2024-11-28T09:14:49","modified_gmt":"2024-11-28T08:14:49","slug":"expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series","status":"publish","type":"post","link":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/","title":{"rendered":"Expanding Network Monitoring with Syslog and Zabbix Data"},"content":{"rendered":"<h3 class=\"wp-block-heading\" id=\"part-5-of-our-network-monitoring-series\">Part 5 of Our Network Monitoring Series<\/h3>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\">Our <a href=\"https:\/\/www.systemdeveloper.nl\/tech\/optimizing-snmp-monitoring-with-dynamic-alerts-and-anomaly-detection-part-4-of-our-network-monitoring-series\/\">SNMP-based monitoring system<\/a> is up and running, collecting vital metrics on CPU, memory, and network activity. In this next step, we&rsquo;ll enhance our insights by integrating additional data sources: <strong>syslog data<\/strong> for a richer view of system logs and events, and the <strong><a href=\"https:\/\/www.zabbix.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Zabbix<\/a> API<\/strong> for real-time alert data. This added context lets us detect security events, track system errors, and act on important alerts&mdash;all from within our centralized monitoring setup.<\/p>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\">In this post, we&rsquo;ll walk through connecting to these new data sources and merging them into our existing system.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h4 class=\"wp-block-heading\" id=\"step-1-collecting-syslog-data-for-enhanced-event-monitoring\"><strong>Step 1: Collecting Syslog Data for Enhanced Event Monitoring<\/strong><\/h4>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\">Syslog provides valuable information about server activity, such as logins, errors, warnings, and other system events. By including syslog data, we gain a comprehensive view of network activity that goes beyond performance metrics.<\/p>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\"><strong>Setting Up a Remote Syslog Server<\/strong>:<\/p>\n\n\n<ul class=\"wp-block-list wp-block-list\">\n<li>Configure your servers to send syslog data to a centralized logging server. You can use tools like <strong>rsyslog<\/strong> or <strong>syslog-ng<\/strong> to direct all logs to a remote syslog server, allowing us to process them centrally.<\/li>\n<\/ul>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\"><strong>Storing Syslog Data in InfluxDB<\/strong>:<\/p>\n\n\n<ul class=\"wp-block-list wp-block-list\">\n<li>To store syslog data in InfluxDB, use a tool like <strong>Telegraf<\/strong> with a syslog input plugin. Telegraf can capture syslog messages and send them directly to InfluxDB for storage.<\/li>\n\n\n\n<li>Example Telegraf configuration<\/li>\n<\/ul>\n\n\n<ol class=\"wp-block-list wp-block-list\"><\/ol>\n\n\n<pre class=\"wp-block-code\"><div class=\"copy-to-clipboard\">\n<span>Copied!<\/span><button class=\"click-to-copy-button\" title=\"Copy to clipboard\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 32 32\" stroke=\"currentcolor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" width=\"24\" height=\"24\" fill=\"none\">\n  <path d=\"M12.9975 10.7499L11.7475 10.7499C10.6429 10.7499 9.74747 11.6453 9.74747 12.7499L9.74747 21.2499C9.74747 22.3544 10.6429 23.2499 11.7475 23.2499L20.2475 23.2499C21.352 23.2499 22.2475 22.3544 22.2475 21.2499L22.2475 12.7499C22.2475 11.6453 21.352 10.7499 20.2475 10.7499L18.9975 10.7499Z\"><\/path>\n  <path d=\"M17.9975 12.2499L13.9975 12.2499C13.4452 12.2499 12.9975 11.8022 12.9975 11.2499L12.9975 9.74988C12.9975 9.19759 13.4452 8.74988 13.9975 8.74988L17.9975 8.74988C18.5498 8.74988 18.9975 9.19759 18.9975 9.74988L18.9975 11.2499C18.9975 11.8022 18.5498 12.2499 17.9975 12.2499Z\"><\/path>\n  <path d=\"M13.7475 16.2499L18.2475 16.2499\"><\/path>\n  <path d=\"M13.7475 19.2499L18.2475 19.2499\"><\/path>\n<\/svg><\/button><textarea>[[inputs.syslog]]\n  address = \"udp:\/\/:6514\"  # Syslog listener\n[[outputs.influxdb]]\n  urls = [\"http:\/\/localhost:8086\"]\n  token = \"your-influxdb-token\"\n  organization = \"your-org\"\n  bucket = \"syslog_data\"<\/textarea>\n<\/div><code>[[inputs.syslog]]\n  address = \"udp:\/\/:6514\"  # Syslog listener\n[[outputs.influxdb]]\n  urls = [\"http:\/\/localhost:8086\"]\n  token = \"your-influxdb-token\"\n  organization = \"your-org\"\n  bucket = \"syslog_data\"<\/code><\/pre>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\"><strong>Creating Syslog Dashboards in Grafana<\/strong>:<\/p>\n\n\n<ul class=\"wp-block-list wp-block-list\">\n<li>With syslog data stored in InfluxDB, you can create dashboards in Grafana to visualize log data, including login attempts, error messages, and system warnings.<\/li>\n\n\n\n<li>Set alerts for specific syslog messages or high-severity events, such as failed login attempts, which may indicate security threats.<\/li>\n<\/ul>\n\n\n<ol class=\"wp-block-list wp-block-list\"><\/ol>\n\n\n<h4 class=\"wp-block-heading\" id=\"step-2-integrating-zabbix-api-for-real-time-alerts\"><strong>Step 2: Integrating Zabbix API for Real-Time Alerts<\/strong><\/h4>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\">Zabbix offers robust monitoring and alerting tools, and its API allows us to integrate its alerts directly into our existing setup. Here&rsquo;s how we can use the Zabbix API to enrich our system:<\/p>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\"><strong>Connecting to the Zabbix API<\/strong>:<\/p>\n\n\n<ul class=\"wp-block-list wp-block-list\">\n<li>Use the Zabbix API to retrieve important alerts and status data. The Zabbix API provides endpoints to get current alerts, problems, and events in real-time.<\/li>\n\n\n\n<li>Example code to connect and retrieve data from the Zabbix API:<\/li>\n<\/ul>\n\n\n<ol class=\"wp-block-list wp-block-list\"><\/ol>\n\n\n<pre class=\"wp-block-code\"><div class=\"copy-to-clipboard\">\n<span>Copied!<\/span><button class=\"click-to-copy-button\" title=\"Copy to clipboard\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 32 32\" stroke=\"currentcolor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" width=\"24\" height=\"24\" fill=\"none\">\n  <path d=\"M12.9975 10.7499L11.7475 10.7499C10.6429 10.7499 9.74747 11.6453 9.74747 12.7499L9.74747 21.2499C9.74747 22.3544 10.6429 23.2499 11.7475 23.2499L20.2475 23.2499C21.352 23.2499 22.2475 22.3544 22.2475 21.2499L22.2475 12.7499C22.2475 11.6453 21.352 10.7499 20.2475 10.7499L18.9975 10.7499Z\"><\/path>\n  <path d=\"M17.9975 12.2499L13.9975 12.2499C13.4452 12.2499 12.9975 11.8022 12.9975 11.2499L12.9975 9.74988C12.9975 9.19759 13.4452 8.74988 13.9975 8.74988L17.9975 8.74988C18.5498 8.74988 18.9975 9.19759 18.9975 9.74988L18.9975 11.2499C18.9975 11.8022 18.5498 12.2499 17.9975 12.2499Z\"><\/path>\n  <path d=\"M13.7475 16.2499L18.2475 16.2499\"><\/path>\n  <path d=\"M13.7475 19.2499L18.2475 19.2499\"><\/path>\n<\/svg><\/button><textarea>import requests\n\nZABBIX_URL = \"http:\/\/zabbix_server\/api_jsonrpc.php\"\nZABBIX_USER = \"your_username\"\nZABBIX_PASSWORD = \"your_password\"\n\n# Authenticate with Zabbix\ndef get_zabbix_token():\n    payload = {\n        \"jsonrpc\": \"2.0\",\n        \"method\": \"user.login\",\n        \"params\": {\n            \"user\": ZABBIX_USER,\n            \"password\": ZABBIX_PASSWORD\n        },\n        \"id\": 1\n    }\n    response = requests.post(ZABBIX_URL, json=payload)\n    return response.json()[\"result\"]\n\n# Retrieve alerts or problems\ndef get_zabbix_alerts(token):\n    payload = {\n        \"jsonrpc\": \"2.0\",\n        \"method\": \"problem.get\",\n        \"params\": {\n            \"output\": \"extend\",\n            \"sortfield\": [\"eventid\"],\n            \"sortorder\": \"DESC\",\n            \"recent\": \"true\"\n        },\n        \"auth\": token,\n        \"id\": 1\n    }\n    response = requests.post(ZABBIX_URL, json=payload)\n    return response.json()[\"result\"]\n\ntoken = get_zabbix_token()\nalerts = get_zabbix_alerts(token)\nprint(alerts)<\/textarea>\n<\/div><code>import requests\n\nZABBIX_URL = \"http:\/\/zabbix_server\/api_jsonrpc.php\"\nZABBIX_USER = \"your_username\"\nZABBIX_PASSWORD = \"your_password\"\n\n# Authenticate with Zabbix\ndef get_zabbix_token():\n    payload = {\n        \"jsonrpc\": \"2.0\",\n        \"method\": \"user.login\",\n        \"params\": {\n            \"user\": ZABBIX_USER,\n            \"password\": ZABBIX_PASSWORD\n        },\n        \"id\": 1\n    }\n    response = requests.post(ZABBIX_URL, json=payload)\n    return response.json()[\"result\"]\n\n# Retrieve alerts or problems\ndef get_zabbix_alerts(token):\n    payload = {\n        \"jsonrpc\": \"2.0\",\n        \"method\": \"problem.get\",\n        \"params\": {\n            \"output\": \"extend\",\n            \"sortfield\": [\"eventid\"],\n            \"sortorder\": \"DESC\",\n            \"recent\": \"true\"\n        },\n        \"auth\": token,\n        \"id\": 1\n    }\n    response = requests.post(ZABBIX_URL, json=payload)\n    return response.json()[\"result\"]\n\ntoken = get_zabbix_token()\nalerts = get_zabbix_alerts(token)\nprint(alerts)<\/code><\/pre>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\"><strong>Storing Zabbix Alerts in InfluxDB<\/strong>:<\/p>\n\n\n<ul class=\"wp-block-list wp-block-list\">\n<li>Once retrieved, store the Zabbix alerts in InfluxDB by adapting the SNMP InfluxDB script. You can structure Zabbix alerts as a separate measurement, allowing Grafana to query and visualize these alerts.<\/li>\n\n\n\n<li>Alerts can include key details such as severity, affected host, and time of the event.<\/li>\n<\/ul>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\"><strong>Creating Alert Panels in Grafana<\/strong>:<\/p>\n\n\n<ul class=\"wp-block-list wp-block-list\">\n<li>With Zabbix alerts now in InfluxDB, set up panels in Grafana to visualize and filter alerts by severity, affected host, or issue type.<\/li>\n\n\n\n<li>Configure alert thresholds and notifications for critical issues, ensuring your team receives timely updates.<\/li>\n<\/ul>\n\n\n<ol class=\"wp-block-list wp-block-list\"><\/ol>\n\n\n<h4 class=\"wp-block-heading\" id=\"step-3-merging-and-analyzing-data-from-multiple-sources\"><strong>Step 3: Merging and Analyzing Data from Multiple Sources<\/strong><\/h4>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\">By combining SNMP, syslog, and Zabbix data, we create a comprehensive monitoring solution with rich, actionable insights.<\/p>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\"><strong>Creating Combined Dashboards<\/strong>:<\/p>\n\n\n<ul class=\"wp-block-list wp-block-list\">\n<li>Use Grafana to merge SNMP metrics, syslog logs, and Zabbix alerts into a single dashboard. This unified view helps to track both performance metrics and critical events in one place.<\/li>\n<\/ul>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\"><strong>Setting Up Cross-Source Alerts<\/strong>:<\/p>\n\n\n<ul class=\"wp-block-list wp-block-list\">\n<li>Create custom alerts that trigger when multiple sources report issues. For example, if high CPU usage (SNMP) coincides with repeated login failures (syslog) and a Zabbix alert, this could indicate a targeted attack or security issue.<\/li>\n\n\n\n<li>Cross-source alerts provide more context for identifying and resolving complex incidents.<\/li>\n<\/ul>\n\n\n<ol class=\"wp-block-list wp-block-list\"><\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<h3 class=\"wp-block-heading\" id=\"conclusion-building-a-proactive-and-comprehensive-network-monitoring-system\"><strong>Conclusion: Building a Proactive and Comprehensive Network Monitoring System<\/strong><\/h3>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\">By adding syslog data and Zabbix alerts to our SNMP-based monitoring, we gain a well-rounded view of network activity and health. Our system now not only tracks key performance metrics but also provides real-time event and alert data, creating a more holistic approach to network monitoring.<\/p>\n\n\n<p class=\"wp-block-paragraph wp-block-paragraph\" style=\"\">In future posts, we&rsquo;ll explore further enhancements, such as machine learning models for anomaly detection, enabling predictive insights, and automating responses to alerts.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Part 5 of Our Network Monitoring Series Our SNMP-based monitoring system is up and running, collecting vital metrics on CPU, memory, and network activity. In this next step, we&rsquo;ll enhance our insights by integrating additional data sources: syslog data for a richer view of system logs and events, and the Zabbix API for real-time alert &hellip;<\/p>\n","protected":false},"author":1,"featured_media":194,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36,46,16],"tags":[15,37],"class_list":["post-207","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-future-ideas","category-howto","category-tech-innovation","tag-api","tag-monitoring"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Expanding Network Monitoring with Syslog and Zabbix Data - SystemDeveloper.NL<\/title>\n<meta name=\"description\" content=\"In this post, we\u2019ll walk through connecting to these new data sources and merging them into our existing system by Collecting Syslog Data\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Expanding Network Monitoring with Syslog and Zabbix Data - SystemDeveloper.NL\" \/>\n<meta property=\"og:description\" content=\"In this post, we\u2019ll walk through connecting to these new data sources and merging them into our existing system by Collecting Syslog Data\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/\" \/>\n<meta property=\"og:site_name\" content=\"SystemDeveloper.NL\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/quan.tora.16\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-12T01:18:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-28T08:14:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"542\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"John Timmer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"John Timmer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/\"},\"author\":{\"name\":\"John Timmer\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/#\\\/schema\\\/person\\\/5760c2ed5300c56d8ef01dfb00a9763b\"},\"headline\":\"Expanding Network Monitoring with Syslog and Zabbix Data\",\"datePublished\":\"2024-11-12T01:18:33+00:00\",\"dateModified\":\"2024-11-28T08:14:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/\"},\"wordCount\":637,\"publisher\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp\",\"keywords\":[\"API\",\"Monitoring\"],\"articleSection\":[\"Future ideas\",\"Howto\",\"Tech Innovation\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/\",\"url\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/\",\"name\":\"Expanding Network Monitoring with Syslog and Zabbix Data - SystemDeveloper.NL\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp\",\"datePublished\":\"2024-11-12T01:18:33+00:00\",\"dateModified\":\"2024-11-28T08:14:49+00:00\",\"description\":\"In this post, we\u2019ll walk through connecting to these new data sources and merging them into our existing system by Collecting Syslog Data\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp\",\"contentUrl\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp\",\"width\":1020,\"height\":542},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Expanding Network Monitoring with Syslog and Zabbix Data\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/#website\",\"url\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/\",\"name\":\"www.systemdeveloper.nl\",\"description\":\"NextGen IT\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/#organization\",\"name\":\"www.systemdeveloper.nl\",\"url\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/qt-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/qt-logo.png\",\"width\":1346,\"height\":1230,\"caption\":\"www.systemdeveloper.nl\"},\"image\":{\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/quan.tora.16\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/#\\\/schema\\\/person\\\/5760c2ed5300c56d8ef01dfb00a9763b\",\"name\":\"John Timmer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/cropped-D6E27035-6864-4270-8D72-0D8C0C59F370-96x96.jpeg\",\"url\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/cropped-D6E27035-6864-4270-8D72-0D8C0C59F370-96x96.jpeg\",\"contentUrl\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/cropped-D6E27035-6864-4270-8D72-0D8C0C59F370-96x96.jpeg\",\"caption\":\"John Timmer\"},\"sameAs\":[\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\"],\"url\":\"https:\\\/\\\/www.systemdeveloper.nl\\\/tech\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Expanding Network Monitoring with Syslog and Zabbix Data - SystemDeveloper.NL","description":"In this post, we\u2019ll walk through connecting to these new data sources and merging them into our existing system by Collecting Syslog Data","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/","og_locale":"en_US","og_type":"article","og_title":"Expanding Network Monitoring with Syslog and Zabbix Data - SystemDeveloper.NL","og_description":"In this post, we\u2019ll walk through connecting to these new data sources and merging them into our existing system by Collecting Syslog Data","og_url":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/","og_site_name":"SystemDeveloper.NL","article_publisher":"https:\/\/www.facebook.com\/quan.tora.16","article_published_time":"2024-11-12T01:18:33+00:00","article_modified_time":"2024-11-28T08:14:49+00:00","og_image":[{"width":1020,"height":542,"url":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp","type":"image\/webp"}],"author":"John Timmer","twitter_card":"summary_large_image","twitter_misc":{"Written by":"John Timmer","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/#article","isPartOf":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/"},"author":{"name":"John Timmer","@id":"https:\/\/www.systemdeveloper.nl\/tech\/#\/schema\/person\/5760c2ed5300c56d8ef01dfb00a9763b"},"headline":"Expanding Network Monitoring with Syslog and Zabbix Data","datePublished":"2024-11-12T01:18:33+00:00","dateModified":"2024-11-28T08:14:49+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/"},"wordCount":637,"publisher":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/#organization"},"image":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp","keywords":["API","Monitoring"],"articleSection":["Future ideas","Howto","Tech Innovation"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/","url":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/","name":"Expanding Network Monitoring with Syslog and Zabbix Data - SystemDeveloper.NL","isPartOf":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/#primaryimage"},"image":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp","datePublished":"2024-11-12T01:18:33+00:00","dateModified":"2024-11-28T08:14:49+00:00","description":"In this post, we\u2019ll walk through connecting to these new data sources and merging them into our existing system by Collecting Syslog Data","breadcrumb":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/#primaryimage","url":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp","contentUrl":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/85a2ec1c-cb6d-475e-9fe2-fdbc9e49599a-e1731399451153.webp","width":1020,"height":542},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemdeveloper.nl\/tech\/expanding-network-monitoring-with-syslog-and-zabbix-data-part-5-of-our-network-monitoring-series\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemdeveloper.nl\/tech\/"},{"@type":"ListItem","position":2,"name":"Expanding Network Monitoring with Syslog and Zabbix Data"}]},{"@type":"WebSite","@id":"https:\/\/www.systemdeveloper.nl\/tech\/#website","url":"https:\/\/www.systemdeveloper.nl\/tech\/","name":"www.systemdeveloper.nl","description":"NextGen IT","publisher":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemdeveloper.nl\/tech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/www.systemdeveloper.nl\/tech\/#organization","name":"www.systemdeveloper.nl","url":"https:\/\/www.systemdeveloper.nl\/tech\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/www.systemdeveloper.nl\/tech\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/qt-logo.png","contentUrl":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/qt-logo.png","width":1346,"height":1230,"caption":"www.systemdeveloper.nl"},"image":{"@id":"https:\/\/www.systemdeveloper.nl\/tech\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/quan.tora.16"]},{"@type":"Person","@id":"https:\/\/www.systemdeveloper.nl\/tech\/#\/schema\/person\/5760c2ed5300c56d8ef01dfb00a9763b","name":"John Timmer","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/cropped-D6E27035-6864-4270-8D72-0D8C0C59F370-96x96.jpeg","url":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/cropped-D6E27035-6864-4270-8D72-0D8C0C59F370-96x96.jpeg","contentUrl":"https:\/\/www.systemdeveloper.nl\/tech\/wp-content\/uploads\/2024\/11\/cropped-D6E27035-6864-4270-8D72-0D8C0C59F370-96x96.jpeg","caption":"John Timmer"},"sameAs":["https:\/\/www.systemdeveloper.nl\/tech"],"url":"https:\/\/www.systemdeveloper.nl\/tech\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/posts\/207","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/comments?post=207"}],"version-history":[{"count":1,"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/posts\/207\/revisions"}],"predecessor-version":[{"id":460,"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/posts\/207\/revisions\/460"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/media\/194"}],"wp:attachment":[{"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/media?parent=207"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/categories?post=207"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemdeveloper.nl\/tech\/wp-json\/wp\/v2\/tags?post=207"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}