{"id":6725,"date":"2015-08-10T10:00:09","date_gmt":"2015-08-10T08:00:09","guid":{"rendered":"https:\/\/www.credativ.de\/blog\/credativ-inside\/icinga2-with-graphite-and-grafana-on-debian\/"},"modified":"2025-09-11T10:48:18","modified_gmt":"2025-09-11T08:48:18","slug":"icinga2-with-graphite-and-grafana-on-debian","status":"publish","type":"post","link":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/","title":{"rendered":"[Howto] Icinga2 with Graphite and Grafana on Debian"},"content":{"rendered":"<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\n<div class=\"field-items\">\n<div class=\"field-item even\">\n<p>In this blog, we describe the integration of Icinga2 into Graphite and Grafana on Debian.<\/p>\n<h2>What is Graphite<\/h2>\n<p><a href=\"http:\/\/graphite.wikidot.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Graphite<\/a> stores performance data over a configurable period. Services can send metrics to Graphite via a defined interface, which are then stored in a structured manner for the desired period. Possible examples of such metrics include CPU utilization or web server access numbers. Graphs can now be generated from the various metrics via Graphite&#8217;s integrated web interface. This allows us to detect and observe changes in values over different periods. A good example of such a trend analysis is disk space utilization. With the help of a trend graph, it is easy to see at what rate the space requirement is growing and approximately when a storage replacement will be necessary.<\/p>\n<h2>What is Grafana<\/h2>\n<p>Although <a href=\"http:\/\/grafana.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Graphite<\/a> offers its own web interface, it is not particularly attractive or flexible. This is where Grafana steps in.<\/p>\n<p>Grafana is a frontend for various metric storage systems. For example, it supports <a href=\"http:\/\/graphite.wikidot.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Graphite<\/a>, <a href=\"https:\/\/influxdb.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">InfluxDB<\/a>, and <a href=\"http:\/\/opentsdb.net\/\" target=\"_blank\" rel=\"noopener noreferrer\">OpenTSDB<\/a>. Grafana offers an intuitive interface for creating representative graphs from metrics. It also has a variety of functions to optimize the appearance and display of graphs. Subsequently, graphs can be grouped into dashboards. Parameterization of graphs is also possible. This also allows you to display only a graph from a specific host.<\/p>\n<h2>Installing Icinga2<\/h2>\n<p>At this point, only the installation required for Graphite is described. Current versions of <a href=\"https:\/\/www.icinga.org\/icinga\/icinga-2\/\" target=\"_blank\" rel=\"noopener noreferrer\">Icinga2<\/a> packages for Debian can be obtained directly from the <a href=\"http:\/\/debmon.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Debmon Project<\/a>. The Debmon Project, run by official Debian package maintainers, provides current versions of various monitoring tools for Debian releases in a timely manner. To integrate these packages, the following commands are required:<\/p>\n<pre># add debmon\r\ncat  &lt;&lt;EOF  &gt;\/etc\/apt\/sources.list.d\/debmon.list\r\ndeb http:\/\/debmon.org\/debmon debmon-jessie main\r\nEOF\r\n\r\n# add debmon key\r\nwget -O - http:\/\/debmon.org\/debmon\/repo.key 2&gt;\/dev\/null | apt-key add -\r\n\r\n# update repos\r\napt-get update<\/pre>\n<p>Next, we can install Icinga2:<\/p>\n<pre>apt-get install icinga2\r\n<\/pre>\n<h2>Installing Graphite and Graphite-Web<\/h2>\n<p>After Icinga2 is installed, Graphite and Graphite-web can also be installed.<\/p>\n<pre># install packages for icinga2 and graphite-web and carbon\r\n\r\napt-get install icinga2 graphite-web graphite-carbon libapache2-mod-wsgi apache2<\/pre>\n<h2>Configuring Icinga2 with Graphite<\/h2>\n<p>Icinga2 must be configured to export all collected metrics to Graphite. The Graphite component that receives this data is called &#8220;Carbon&#8221;. In our example installation, Carbon runs on the same host as Icinga2 and also uses the default port. For this reason, no further configuration of Icinga2 is necessary; it is sufficient to enable the export.<\/p>\n<p>The command does this. <code>icinga2 feature enable graphite<\/code><br \/>\nNext, Icinga2 must be restarted: <code>service icinga2 restart<\/code><\/p>\n<p>If the Carbon server runs on a different host or a different port, the Icinga2 configuration can be adjusted in the file <i>\/etc\/icinga2\/features-enabled\/graphite.conf<\/i>. Details can be found in the <a href=\"http:\/\/docs.icinga.org\/icinga2\/latest\/doc\/module\/icinga2\/toc#!\/icinga2\/latest\/doc\/module\/icinga2\/chapter\/object-types#objecttype-graphitewriter\" target=\"_blank\" rel=\"noopener noreferrer\">Icinga2 documentation<\/a>.<\/p>\n<p>If the configuration was successful, a number of files should appear shortly in &#8220;<i>\/var\/lib\/graphite\/whisper\/icinga<\/i>&#8220;. If this is not the case, you should check the Icinga2 log file (located in &#8220;<i>\/var\/log\/icinga2\/icinga2.log<\/i>&#8220;).<\/p>\n<h2>Configuring Graphite-web<\/h2>\n<p>Grafana uses Graphite&#8217;s web frontend as an interface for the metrics stored by Graphite. For this reason, it is necessary to configure Graphite-web correctly. For performance reasons, we operate Graphite-web as a <a href=\"https:\/\/en.wikipedia.org\/wiki\/Web_Server_Gateway_Interface\" target=\"_blank\" rel=\"noopener noreferrer\">WSGI<\/a> module. A number of configuration steps are required for this:<\/p>\n<ol>\n<li>First, we create a user database for Graphite-web. Since we will not have many users, we use sqlite as the backend for our user data at this point. For this purpose, we execute the following commands, which initialize the user database and assign it to the user under which the web frontend runs:\n<pre>graphite-manage syncdb\r\nchown _graphite:_graphite \/var\/lib\/graphite\/graphite.db<\/pre>\n<\/li>\n<li>Next, we activate the WSGI module in Apache: <code>a2enmod wsgi<\/code><\/li>\n<li>For simplicity, the web interface should run in its own virtual host and on its own port. To ensure Apache also listens on this port, we add the line &#8220;<i>Listen 8000<\/i>&#8221; to the file &#8220;<i>\/etc\/apache2\/ports.conf<\/i>&#8220;.<\/li>\n<li>The Graphite Debian package already provides an Apache configuration file that we can use for our purposes, with slight modifications. <code>cp \/usr\/share\/graphite-web\/apache2-graphite.conf \/etc\/apache2\/sites-available\/graphite.conf<\/code> To ensure the virtual host also uses port 8000, we must replace the line\n<pre>&lt;VirtualHost *:80&gt;<\/pre>\n<p>with<\/p>\n<pre>&lt;VirtualHost *:8000&gt;<\/pre>\n<p>.<\/li>\n<li>Then we activate the new virtual host via <code>a2ensite graphite<\/code> and restart Apache: <code>systemctl restart apache2<\/code><\/li>\n<li>Graphite-web should now be accessible at http:\/\/YOURIP:8000\/. If this is not the case, the Apache log files under &#8220;<i>\/var\/log\/apache2\/<\/i>&#8221; could provide valuable information.<\/li>\n<\/ol>\n<h2>Configuring Grafana<\/h2>\n<p>Grafana is currently not included in Debian. However, the author offers an Apt repository through which Grafana can be installed. Even if the repository refers to Wheezy, the packages also work under Debian Jessie.<\/p>\n<p>The repository is only accessible via HTTPS. For this reason, HTTPS support for apt must first be installed: <code>apt-get install apt-transport-https<\/code><\/p>\n<p>Next, the repository can be integrated.<\/p>\n<pre># add repo (package for wheezy works on jessie)\r\ncat  &lt;&lt;EOF  &gt;\/etc\/apt\/sources.list.d\/grafana.list\r\ndeb https:\/\/packagecloud.io\/grafana\/stable\/debian\/ wheezy main\r\nEOF\r\n \r\n# add key\r\ncurl -s https:\/\/packagecloud.io\/gpg.key | sudo apt-key add -\r\n \r\n# update repos\r\napt-get update<\/pre>\n<p>Subsequently, the package can be installed: <code>apt-get install grafana<\/code>. For Grafana to run, we still need to enable the service <code>systemctl enable grafana-server.service<\/code> and start it <code>systemctl start grafana-server<\/code>.<\/p>\n<p>Grafana is now accessible at http:\/\/YOURIP:3000\/. The default username and password in our example is &#8220;admin&#8221;. This password should, of course, be replaced with a secure password at the next opportunity.<\/p>\n<p>Next, Grafana must be configured to use Graphite as a data source. For simplicity, the configuration is explained via a screencast.<\/p>\n<div class=\"brlbs-cmpnt-container brlbs-cmpnt-content-blocker brlbs-cmpnt-with-individual-styles\" data-borlabs-cookie-content-blocker-id=\"default\" data-borlabs-cookie-content=\"PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3LnlvdXR1YmUtbm9jb29raWUuY29tL2VtYmVkLzFtSURPZm1aRlFJIiB3aWR0aD0iNTYwIiBoZWlnaHQ9IjMxNSIgZnJhbWVib3JkZXI9IjAiIGFsbG93ZnVsbHNjcmVlbj0iYWxsb3dmdWxsc2NyZWVuIj48L2lmcmFtZT4=\">\n<div class=\"brlbs-cmpnt-cb-preset-a\">\n<p class=\"brlbs-cmpnt-cb-description\">You are currently viewing a placeholder content from <strong>Default<\/strong>. To access the actual content, click the button below. Please note that doing so will share data with third-party providers.<\/p>\n<div class=\"brlbs-cmpnt-cb-buttons\"> <a class=\"brlbs-cmpnt-cb-btn\" href=\"#\" data-borlabs-cookie-unblock role=\"button\">Unblock content<\/a> <a class=\"brlbs-cmpnt-cb-btn\" href=\"#\" data-borlabs-cookie-accept-service role=\"button\" style=\"display: none\">Accept required service and unblock content<\/a> <\/div>\n<p> <a class=\"brlbs-cmpnt-cb-provider-toggle\" href=\"#\" data-borlabs-cookie-show-provider-information role=\"button\">More Information<\/a> <\/div>\n<\/div>\n<p>After successfully integrating Graphite as a data source, we can create our first graph. There is also a short screencast for this here.<\/p>\n<div class=\"brlbs-cmpnt-container brlbs-cmpnt-content-blocker brlbs-cmpnt-with-individual-styles\" data-borlabs-cookie-content-blocker-id=\"default\" data-borlabs-cookie-content=\"PGlmcmFtZSBzcmM9Imh0dHBzOi8vd3d3LnlvdXR1YmUtbm9jb29raWUuY29tL2VtYmVkLzV3WW8yQUkxSFNFIiB3aWR0aD0iNTYwIiBoZWlnaHQ9IjMxNSIgZnJhbWVib3JkZXI9IjAiIGFsbG93ZnVsbHNjcmVlbj0iYWxsb3dmdWxsc2NyZWVuIj48L2lmcmFtZT4=\">\n<div class=\"brlbs-cmpnt-cb-preset-a\">\n<p class=\"brlbs-cmpnt-cb-description\">You are currently viewing a placeholder content from <strong>Default<\/strong>. To access the actual content, click the button below. Please note that doing so will share data with third-party providers.<\/p>\n<div class=\"brlbs-cmpnt-cb-buttons\"> <a class=\"brlbs-cmpnt-cb-btn\" href=\"#\" data-borlabs-cookie-unblock role=\"button\">Unblock content<\/a> <a class=\"brlbs-cmpnt-cb-btn\" href=\"#\" data-borlabs-cookie-accept-service role=\"button\" style=\"display: none\">Accept required service and unblock content<\/a> <\/div>\n<p> <a class=\"brlbs-cmpnt-cb-provider-toggle\" href=\"#\" data-borlabs-cookie-show-provider-information role=\"button\">More Information<\/a> <\/div>\n<\/div>\n<p>Congratulations, you have now successfully installed and configured Icinga2, Graphite, and Grafana. For all further steps, please refer to the documentation of the respective projects:<\/p>\n<ul>\n<li><a href=\"http:\/\/docs.icinga.org\/icinga2\/latest\/doc\/module\/icinga2\/toc\" target=\"_blank\" rel=\"noopener noreferrer\">Icinga2<\/a><\/li>\n<li><a href=\"http:\/\/graphite.wikidot.com\/documentation\" target=\"_blank\" rel=\"noopener noreferrer\">Graphite<\/a><\/li>\n<li><a href=\"http:\/\/docs.grafana.org\/guides\/gettingstarted\/\" target=\"_blank\" rel=\"noopener noreferrer\">Grafana<\/a><\/li>\n<\/ul>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we describe the integration of Icinga2 into Graphite and Grafana on Debian. What is Graphite Graphite stores performance data over a configurable period. Services can send metrics to Graphite via a defined interface, which are then stored in a structured manner for the desired period. Possible examples of such metrics include CPU [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1885],"tags":[1775,1732,1731,1727,1749],"class_list":["post-6725","post","type-post","status-publish","format-standard","hentry","category-howtos-en","tag-debian-en","tag-grafana-en","tag-graphite-en","tag-icinga2-en","tag-monitoring-en"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.6 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>[Howto] Icinga2 with Graphite and Grafana on Debian - credativ\u00ae<\/title>\n<meta name=\"description\" content=\"Learn how to integrate Icinga with Graphite and Grafana to effectively visualise performance 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.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Howto] Icinga2 with Graphite and Grafana on Debian\" \/>\n<meta property=\"og:description\" content=\"Learn how to integrate Icinga with Graphite and Grafana to effectively visualise performance data.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/\" \/>\n<meta property=\"og:site_name\" content=\"credativ\u00ae\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/credativDE\/\" \/>\n<meta property=\"article:published_time\" content=\"2015-08-10T08:00:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-11T08:48:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.credativ.de\/wp-content\/uploads\/2019\/07\/Portfolio-Loesungen.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"550\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Alexander Wirt\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@credativde\" \/>\n<meta name=\"twitter:site\" content=\"@credativde\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alexander Wirt\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/\"},\"author\":{\"name\":\"Alexander Wirt\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#\\\/schema\\\/person\\\/10ebb5c1a8f9224b1436f9d47e4760f3\"},\"headline\":\"[Howto] Icinga2 with Graphite and Grafana on Debian\",\"datePublished\":\"2015-08-10T08:00:09+00:00\",\"dateModified\":\"2025-09-11T08:48:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/\"},\"wordCount\":851,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\"},\"keywords\":[\"Debian\",\"Grafana\",\"Graphite\",\"Icinga2\",\"Monitoring\"],\"articleSection\":[\"HowTos\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/#respond\"]}],\"copyrightYear\":\"2015\",\"copyrightHolder\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/\",\"name\":\"[Howto] Icinga2 with Graphite and Grafana on Debian - credativ\u00ae\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#website\"},\"datePublished\":\"2015-08-10T08:00:09+00:00\",\"dateModified\":\"2025-09-11T08:48:18+00:00\",\"description\":\"Learn how to integrate Icinga with Graphite and Grafana to effectively visualise performance data.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Howto] Icinga2 with Graphite and Grafana on Debian\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\",\"name\":\"credativ GmbH\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#organization\",\"name\":\"credativ\u00ae\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/\",\"logo\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/#local-main-organization-logo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/credativDE\\\/\",\"https:\\\/\\\/x.com\\\/credativde\",\"https:\\\/\\\/mastodon.social\\\/@credativde\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/credativ-gmbh\",\"https:\\\/\\\/www.instagram.com\\\/credativ\\\/\"],\"description\":\"Die credativ GmbH ist ein f\u00fchrendes, auf Open Source Software spezialisiertes IT-Dienstleistungs- und Beratungsunternehmen. Wir bieten umfassende und professionelle Services, von Beratung und Infrastruktur-Betrieb \u00fcber 24\\\/7 Support bis hin zu individuellen L\u00f6sungen und Schulungen. Unser Fokus liegt auf dem ganzheitlichen Management von gesch\u00e4ftskritischen Open-Source-Systemen, darunter Betriebssysteme (z.B. Linux), Datenbanken (z.B. PostgreSQL), Konfigurationsmanagement (z.B. Ansible, Puppet) und Virtualisierung. Als engagierter Teil der Open-Source-Community unterst\u00fctzen wir unsere Kunden dabei, die Vorteile freier Software sicher, stabil und effizient in ihrer IT-Umgebung zu nutzen.\",\"legalName\":\"credativ GmbH\",\"foundingDate\":\"2025-03-01\",\"duns\":\"316387060\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"},\"address\":{\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/#local-main-place-address\"},\"geo\":{\"@type\":\"GeoCoordinates\",\"latitude\":\"51.1732374\",\"longitude\":\"6.392010099999999\"},\"telephone\":[\"+4921619174200\",\"08002733284\"],\"contactPoint\":{\"@type\":\"ContactPoint\",\"telephone\":\"08002733284\",\"email\":\"vertrieb@credativ.de\"},\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\"],\"opens\":\"09:00\",\"closes\":\"17:00\"},{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Saturday\",\"Sunday\"],\"opens\":\"00:00\",\"closes\":\"00:00\"}],\"email\":\"info@credativ.de\",\"areaServed\":\"D-A-CH\",\"vatID\":\"DE452151696\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/#\\\/schema\\\/person\\\/10ebb5c1a8f9224b1436f9d47e4760f3\",\"name\":\"Alexander Wirt\",\"description\":\"Alexander ist seit 1996 in der Open Source-Welt unterwegs und hat bei verschiedensten Open Source-Projekten mitgewirkt. Aktuell ist er im Debian Projekt aktiv. Auch bei credativ z\u00e4hlt er seit 2004 zu den Urgesteinen. Mittlerweile geh\u00f6rt er zum Management Team und ist seit der erneuten Selbstst\u00e4ndigkeit als CTO und Prokurist im Unternehmen aktiv.\"},{\"@type\":\"PostalAddress\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/#local-main-place-address\",\"streetAddress\":\"Hennes-Weisweiler-Allee 23\",\"addressLocality\":\"M\u00f6nchengladbach\",\"postalCode\":\"41179\",\"addressRegion\":\"Deutschland\",\"addressCountry\":\"DE\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.credativ.de\\\/en\\\/blog\\\/howtos\\\/howto-icinga2-with-graphite-and-grafana-on-debian\\\/#local-main-organization-logo\",\"url\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/credativ-logo-right.svg\",\"contentUrl\":\"https:\\\/\\\/www.credativ.de\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/credativ-logo-right.svg\",\"caption\":\"credativ\u00ae\"}]}<\/script>\n<meta name=\"geo.placename\" content=\"M\u00f6nchengladbach\" \/>\n<meta name=\"geo.position\" content=\"51.1732374;6.392010099999999\" \/>\n<meta name=\"geo.region\" content=\"Germany\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"[Howto] Icinga2 with Graphite and Grafana on Debian - credativ\u00ae","description":"Learn how to integrate Icinga with Graphite and Grafana to effectively visualise performance 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.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/","og_locale":"en_US","og_type":"article","og_title":"[Howto] Icinga2 with Graphite and Grafana on Debian","og_description":"Learn how to integrate Icinga with Graphite and Grafana to effectively visualise performance data.","og_url":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/","og_site_name":"credativ\u00ae","article_publisher":"https:\/\/www.facebook.com\/credativDE\/","article_published_time":"2015-08-10T08:00:09+00:00","article_modified_time":"2025-09-11T08:48:18+00:00","og_image":[{"width":800,"height":550,"url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2019\/07\/Portfolio-Loesungen.jpg","type":"image\/jpeg"}],"author":"Alexander Wirt","twitter_card":"summary_large_image","twitter_creator":"@credativde","twitter_site":"@credativde","twitter_misc":{"Written by":"Alexander Wirt","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/#article","isPartOf":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/"},"author":{"name":"Alexander Wirt","@id":"https:\/\/www.credativ.de\/en\/#\/schema\/person\/10ebb5c1a8f9224b1436f9d47e4760f3"},"headline":"[Howto] Icinga2 with Graphite and Grafana on Debian","datePublished":"2015-08-10T08:00:09+00:00","dateModified":"2025-09-11T08:48:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/"},"wordCount":851,"commentCount":0,"publisher":{"@id":"https:\/\/www.credativ.de\/en\/#organization"},"keywords":["Debian","Grafana","Graphite","Icinga2","Monitoring"],"articleSection":["HowTos"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/#respond"]}],"copyrightYear":"2015","copyrightHolder":{"@id":"https:\/\/www.credativ.de\/#organization"}},{"@type":"WebPage","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/","url":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/","name":"[Howto] Icinga2 with Graphite and Grafana on Debian - credativ\u00ae","isPartOf":{"@id":"https:\/\/www.credativ.de\/en\/#website"},"datePublished":"2015-08-10T08:00:09+00:00","dateModified":"2025-09-11T08:48:18+00:00","description":"Learn how to integrate Icinga with Graphite and Grafana to effectively visualise performance data.","breadcrumb":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.credativ.de\/en\/"},{"@type":"ListItem","position":2,"name":"[Howto] Icinga2 with Graphite and Grafana on Debian"}]},{"@type":"WebSite","@id":"https:\/\/www.credativ.de\/en\/#website","url":"https:\/\/www.credativ.de\/en\/","name":"credativ GmbH","description":"","publisher":{"@id":"https:\/\/www.credativ.de\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.credativ.de\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Organization","Place"],"@id":"https:\/\/www.credativ.de\/en\/#organization","name":"credativ\u00ae","url":"https:\/\/www.credativ.de\/en\/","logo":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/#local-main-organization-logo"},"image":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/#local-main-organization-logo"},"sameAs":["https:\/\/www.facebook.com\/credativDE\/","https:\/\/x.com\/credativde","https:\/\/mastodon.social\/@credativde","https:\/\/www.linkedin.com\/company\/credativ-gmbh","https:\/\/www.instagram.com\/credativ\/"],"description":"Die credativ GmbH ist ein f\u00fchrendes, auf Open Source Software spezialisiertes IT-Dienstleistungs- und Beratungsunternehmen. Wir bieten umfassende und professionelle Services, von Beratung und Infrastruktur-Betrieb \u00fcber 24\/7 Support bis hin zu individuellen L\u00f6sungen und Schulungen. Unser Fokus liegt auf dem ganzheitlichen Management von gesch\u00e4ftskritischen Open-Source-Systemen, darunter Betriebssysteme (z.B. Linux), Datenbanken (z.B. PostgreSQL), Konfigurationsmanagement (z.B. Ansible, Puppet) und Virtualisierung. Als engagierter Teil der Open-Source-Community unterst\u00fctzen wir unsere Kunden dabei, die Vorteile freier Software sicher, stabil und effizient in ihrer IT-Umgebung zu nutzen.","legalName":"credativ GmbH","foundingDate":"2025-03-01","duns":"316387060","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"},"address":{"@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/#local-main-place-address"},"geo":{"@type":"GeoCoordinates","latitude":"51.1732374","longitude":"6.392010099999999"},"telephone":["+4921619174200","08002733284"],"contactPoint":{"@type":"ContactPoint","telephone":"08002733284","email":"vertrieb@credativ.de"},"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Monday","Tuesday","Wednesday","Thursday","Friday"],"opens":"09:00","closes":"17:00"},{"@type":"OpeningHoursSpecification","dayOfWeek":["Saturday","Sunday"],"opens":"00:00","closes":"00:00"}],"email":"info@credativ.de","areaServed":"D-A-CH","vatID":"DE452151696"},{"@type":"Person","@id":"https:\/\/www.credativ.de\/en\/#\/schema\/person\/10ebb5c1a8f9224b1436f9d47e4760f3","name":"Alexander Wirt","description":"Alexander ist seit 1996 in der Open Source-Welt unterwegs und hat bei verschiedensten Open Source-Projekten mitgewirkt. Aktuell ist er im Debian Projekt aktiv. Auch bei credativ z\u00e4hlt er seit 2004 zu den Urgesteinen. Mittlerweile geh\u00f6rt er zum Management Team und ist seit der erneuten Selbstst\u00e4ndigkeit als CTO und Prokurist im Unternehmen aktiv."},{"@type":"PostalAddress","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/#local-main-place-address","streetAddress":"Hennes-Weisweiler-Allee 23","addressLocality":"M\u00f6nchengladbach","postalCode":"41179","addressRegion":"Deutschland","addressCountry":"DE"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.credativ.de\/en\/blog\/howtos\/howto-icinga2-with-graphite-and-grafana-on-debian\/#local-main-organization-logo","url":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/04\/credativ-logo-right.svg","contentUrl":"https:\/\/www.credativ.de\/wp-content\/uploads\/2025\/04\/credativ-logo-right.svg","caption":"credativ\u00ae"}]},"geo.placename":"M\u00f6nchengladbach","geo.position":{"lat":"51.1732374","long":"6.392010099999999"},"geo.region":"Germany"},"_links":{"self":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/6725","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/comments?post=6725"}],"version-history":[{"count":2,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/6725\/revisions"}],"predecessor-version":[{"id":9707,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/posts\/6725\/revisions\/9707"}],"wp:attachment":[{"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/media?parent=6725"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/categories?post=6725"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.credativ.de\/en\/wp-json\/wp\/v2\/tags?post=6725"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}