{"id":508753,"date":"2025-10-01T11:54:12","date_gmt":"2025-10-01T11:54:12","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=508753"},"modified":"2025-10-06T07:41:31","modified_gmt":"2025-10-06T07:41:31","slug":"configure-new-relic-for-magento-2-project","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/","title":{"rendered":"Configure New Relic for Magento 2 Project"},"content":{"rendered":"\n<p>Configure New Relic for Magento 2 Project to monitor your store performance efficiently.<br><br><strong>Therefore<\/strong>, you can track every request, optimize transactions, and prevent slowdowns before they affect users.<\/p>\n\n\n\n<p><strong>Moreover<\/strong>, this setup provides clear insights into your Magento store without mixing data from other applications.<\/p>\n\n\n\n<p><strong>Why Use New Relic with Magento 2<\/strong><\/p>\n\n\n\n<p>New Relic analyzes slow queries, server metrics, and transaction traces.<br><strong>In addition<\/strong>, it identifies performance bottlenecks before they impact customers.<\/p>\n\n\n\n<p>Project-specific configuration ensures only your Magento store is monitored.<br><strong>As a result<\/strong>, you get accurate and actionable performance data.<\/p>\n\n\n\n<p><strong>Step 1: Installing the New Relic PHP Agent<\/strong><\/p>\n\n\n\n<p>To begin, install the New Relic PHP agent on your server.<br><strong>First<\/strong>, select the installation method that matches your operating system.<\/p>\n\n\n\n<p><strong>Installation on Ubuntu\/Debian<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">echo &quot;deb http:\/\/apt.newrelic.com\/debian\/ newrelic non-free&quot; | sudo tee \/etc\/apt\/sources.list.d\/newrelic.list\nwget -O- https:\/\/download.newrelic.com\/548C16BF.gpg | sudo apt-key add -\nsudo apt-get update\nsudo apt-get install newrelic-php5\nsudo newrelic-install install<\/pre>\n\n\n\n<p><strong>Installation on CentOS\/RHEL<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">sudo rpm -Uvh https:\/\/download.newrelic.com\/pub\/newrelic\/el5\/i386\/newrelic-repo-5-3.noarch.rpm\nsudo yum install newrelic-php5\nsudo newrelic-install install<\/pre>\n\n\n\n<p><strong>During installation<\/strong>, the installer prompts you to enter your New Relic license key.<br><strong>Consequently<\/strong>, the agent activates and begins monitoring your application.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Step 2: Verifying the Installation<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php -i | grep &quot;newrelic&quot;<\/pre>\n\n\n\n<p>You should see something like this:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">$ php -i | grep \"newrelic\"\n\/etc\/php\/8.2\/cli\/conf.d\/20-newrelic.ini,\nnewrelic\nnewrelic.daemon.address => @newrelic\nnewrelic.daemon.app_connect_timeout => no value\nnewrelic.daemon.app_timeout => no value\nnewrelic.daemon.auditlog => no value\nnewrelic.daemon.collector_host => no value\nnewrelic.daemon.dont_launch => no value\nnewrelic.daemon.location => \/usr\/bin\/newrelic-daemon\nnewrelic.daemon.logfile => \/var\/log\/newrelic\/newrelic-daemon.log\nnewrelic.daemon.loglevel => no value\nnewrelic.appname => PHP Application => PHP Application\nnewrelic.daemon.pidfile => no value\n<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Next<\/strong>, restart PHP-FPM or Apache to apply the changes:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">sudo service php7.4-fpm restart\nsudo service nginx restart\n# OR for Apache\nsudo service apache2 restart<\/pre>\n\n\n\n<p>At this stage, You may see a generic app name eg: <strong>\u201cPHP Application\u201d<\/strong> in APM. <\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"574\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-1200x574.webp\" alt=\"newrelic-apps\" class=\"wp-image-508792\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-1200x574.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-300x143.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-250x120.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-768x367.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1.webp 1520w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><br><strong>However<\/strong>, this can be customized for your Magento project.<\/p>\n\n\n\n<p><strong>Step 3: Configuring New Relic for Your Magento Project<\/strong><\/p>\n\n\n\n<p>Edit <code>pub\/index.php<\/code> to configure New Relic.<br><strong>This way<\/strong>, New Relic groups all requests under your project name.<\/p>\n\n\n\n<p>Example code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/\/ Configure New Relic for this Magento application\nif (extension_loaded(&#039;newrelic&#039;)) {\n    newrelic_set_appname(&#039;CustomProject-Magento&#039;);\n}<\/pre>\n\n\n\n<p><strong>As a result<\/strong>, New Relic tracks only your Magento project.<br><strong>Therefore<\/strong>, data from other PHP applications does not mix in.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"569\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-custom1-1200x569.webp\" alt=\"newrelic-custom\" class=\"wp-image-508799\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-custom1-1200x569.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-custom1-300x142.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-custom1-250x119.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-custom1-768x364.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-custom1.webp 1525w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><strong>Benefits of Project-Level Configuration<\/strong><\/p>\n\n\n\n<p>Setting the application name scopes transactions to your store.<br><strong>Furthermore<\/strong>, it improves performance analysis and troubleshooting.<\/p>\n\n\n\n<p>Moreover, combining this setup with tools like <a href=\"https:\/\/webkul.com\/blog\/how-to-use-redis-for-magento-2-session-management\/\">Redis for Magento 2 session management<\/a> further optimizes site speed.<\/p>\n\n\n\n<p><strong>Monitoring and Insights<\/strong><\/p>\n\n\n\n<p>Once configured, log in to <a href=\"https:\/\/one.newrelic.com\/\">New Relic<\/a> to view APM data.<br><\/p>\n\n\n\n<p>You will see transactions, response times, database queries, and slow traces specific to your Magento project.<\/p>\n\n\n\n<p>Project-level monitoring allows you to make informed decisions to improve site speed and reliability.<\/p>\n\n\n\n<p><strong>Conclusion<\/strong><\/p>\n\n\n\n<p>Installing and configuring New Relic for Magento 2 allows detailed application-level monitoring.<br><\/p>\n\n\n\n<p><strong>Furthermore<\/strong>, by setting the application name in <code><em>index.php<\/em><\/code>, your store is tracked independently from other server applications.<\/p>\n\n\n\n<p>This approach keeps monitoring simple, clean, and effective.<br>Pairing New Relic with caching solutions like Redis enhances Magento\u2019s scalability and performance.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Configure New Relic for Magento 2 Project to monitor your store performance efficiently. Therefore, you can track every request, optimize transactions, and prevent slowdowns before they affect users. Moreover, this setup provides clear insights into your Magento store without mixing data from other applications. Why Use New Relic with Magento 2 New Relic analyzes slow <a href=\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":448,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[2070,590],"class_list":["post-508753","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-magento2","tag-webkul"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Configure New Relic for Magento 2 Project - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Learn how to configure New Relic for Magento 2 project to monitor performance, track transactions, and optimize your store.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configure New Relic for Magento 2 Project - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Learn how to configure New Relic for Magento 2 project to monitor performance, track transactions, and optimize your store.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-01T11:54:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-06T07:41:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-1200x574.webp\" \/>\n<meta name=\"author\" content=\"Ishtiyaque Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ishtiyaque Ahmad\" \/>\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:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/\"},\"author\":{\"name\":\"Ishtiyaque Ahmad\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/87870dc3a96bd31e595f7f52a88039ed\"},\"headline\":\"Configure New Relic for Magento 2 Project\",\"datePublished\":\"2025-10-01T11:54:12+00:00\",\"dateModified\":\"2025-10-06T07:41:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/\"},\"wordCount\":371,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-1200x574.webp\",\"keywords\":[\"Magento2\",\"webkul\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/\",\"url\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/\",\"name\":\"Configure New Relic for Magento 2 Project - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-1200x574.webp\",\"datePublished\":\"2025-10-01T11:54:12+00:00\",\"dateModified\":\"2025-10-06T07:41:31+00:00\",\"description\":\"Learn how to configure New Relic for Magento 2 project to monitor performance, track transactions, and optimize your store.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1.webp\",\"width\":1520,\"height\":727},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configure New Relic for Magento 2 Project\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/87870dc3a96bd31e595f7f52a88039ed\",\"name\":\"Ishtiyaque Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c3a094b2512bcdac14021c72f014bee8e6781d99ac6028e78098a07e7aec32b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c3a094b2512bcdac14021c72f014bee8e6781d99ac6028e78098a07e7aec32b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ishtiyaque Ahmad\"},\"description\":\"Ishtiyaque Ahmad, a Magento Certified Developer, is an expert in Magento 2 development and eCommerce platforms.&nbsp;Expertise in crafting custom solutions, optimizing workflows, and integrating seamless eCommerce features drives business growth and operational efficiency.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/ishtiyaque-ahmad755\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Configure New Relic for Magento 2 Project - Webkul Blog","description":"Learn how to configure New Relic for Magento 2 project to monitor performance, track transactions, and optimize your store.","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:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/","og_locale":"en_US","og_type":"article","og_title":"Configure New Relic for Magento 2 Project - Webkul Blog","og_description":"Learn how to configure New Relic for Magento 2 project to monitor performance, track transactions, and optimize your store.","og_url":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2025-10-01T11:54:12+00:00","article_modified_time":"2025-10-06T07:41:31+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-1200x574.webp","type":"","width":"","height":""}],"author":"Ishtiyaque Ahmad","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ishtiyaque Ahmad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/"},"author":{"name":"Ishtiyaque Ahmad","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/87870dc3a96bd31e595f7f52a88039ed"},"headline":"Configure New Relic for Magento 2 Project","datePublished":"2025-10-01T11:54:12+00:00","dateModified":"2025-10-06T07:41:31+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/"},"wordCount":371,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-1200x574.webp","keywords":["Magento2","webkul"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/","url":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/","name":"Configure New Relic for Magento 2 Project - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1-1200x574.webp","datePublished":"2025-10-01T11:54:12+00:00","dateModified":"2025-10-06T07:41:31+00:00","description":"Learn how to configure New Relic for Magento 2 project to monitor performance, track transactions, and optimize your store.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2025\/10\/newrelic-apps1.webp","width":1520,"height":727},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/configure-new-relic-for-magento-2-project\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Configure New Relic for Magento 2 Project"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/87870dc3a96bd31e595f7f52a88039ed","name":"Ishtiyaque Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c3a094b2512bcdac14021c72f014bee8e6781d99ac6028e78098a07e7aec32b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c3a094b2512bcdac14021c72f014bee8e6781d99ac6028e78098a07e7aec32b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ishtiyaque Ahmad"},"description":"Ishtiyaque Ahmad, a Magento Certified Developer, is an expert in Magento 2 development and eCommerce platforms.&nbsp;Expertise in crafting custom solutions, optimizing workflows, and integrating seamless eCommerce features drives business growth and operational efficiency.","url":"https:\/\/webkul.com\/blog\/author\/ishtiyaque-ahmad755\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/508753","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/448"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=508753"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/508753\/revisions"}],"predecessor-version":[{"id":508800,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/508753\/revisions\/508800"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=508753"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=508753"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=508753"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}