{"id":2342,"date":"2012-06-21T01:11:27","date_gmt":"2012-06-20T22:11:27","guid":{"rendered":"http:\/\/railsware.com\/blog\/?p=2342"},"modified":"2021-08-16T13:10:03","modified_gmt":"2021-08-16T10:10:03","slug":"a-couple-of-airbrake-tips","status":"publish","type":"post","link":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/","title":{"rendered":"A couple of Airbrake tips"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">No software is complete without bugs and no Rails application is complete without proper exception tracking. In most cases we choose <a href=\"http:\/\/airbrake.io\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Airbrake<\/a> to collect those exceptions for us.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s a couple of tips to make Airbrake more useful.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Server-specific environment names<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here at the Playhem team we have multiple independent staging servers for testing multiple features simultaneously. If all the staging servers use the same Rails environment, Airbrake&#8217;s exception logging becomes messed up, because it categorises errors by Rails environments; it isn&#8217;t always clear as to which server and feature is the exception related to.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We could use a separate Rails environment for each staging server, but since they are otherwise identical, there is a simpler solution. Airbrake has custom <code class=\"\" data-line=\"\">environment_name<\/code> setting, which can be set manually to whatever you want. I chose to customize the environment name using server-specific configs and our wonderful multi-deploy tool, but you could also use the server name, or any environment variable.<\/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=\"\">Airbrake.configure do |config|\n  config.api_key = 'myapikey'\n  config.environment_name = `hostname` # or whatever else\nend\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The best practice is to use a unique Airbrake <code class=\"\" data-line=\"\">environment_name<\/code> for each server to avoid any confusion as to where did the exception happen.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Another important benefit of using server-specific environment names is that the &#8220;mark exceptions as resolved upon deploy&#8221; setting doesn&#8217;t make sense when the environment_name is not tied to the actual server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Separating Javascript exceptions into a separate project<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Capturing Javascript exceptions can prove to be useful over time to pinpoint browser-specific errors that the QA rounds have missed. Unfortunately, enabling Javascript error notification usually brings you an <em>enormous<\/em> number of errors (and a lot of them unfixable, such as when a user on a faulty connection gets a Script load error). These errors flood out Rails exceptions and make Airbrake unusable, so most people turn Javascript error notification off and forget about it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Most, but not us! I <a href=\"https:\/\/github.com\/airbrake\/airbrake\/pull\/86\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">added<\/a> a separate <code class=\"\" data-line=\"\">js_api_key<\/code> Airbrake configuration option that allows you to direct Javascript exceptions to a second Airbrake project.<\/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=\"\">Airbrake.configure do |config|\n  config.api_key = 'myapikey'\n  config.js_api_key = 'myjsapikey'\nend\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">After that you can make use of the Airbrake error aggregation to see what exceptions are most common &#8212; and then you can start fixing them.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Have fun squashing those bugs out there!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>No software is complete without bugs and no Rails application is complete without proper exception tracking. In most cases we choose Airbrake to collect those exceptions for us. Here&#8217;s a couple of tips to make Airbrake more useful. Server-specific environment names Here at the Playhem team we have multiple independent staging servers for testing multiple&#8230;<\/p>\n","protected":false},"author":21,"featured_media":2417,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[3],"tags":[],"coauthors":["Leonid Shevtsov"],"class_list":["post-2342","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-development"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"No software is complete without bugs and no Rails application is complete without proper exception tracking. In most cases we choose Airbrake to collect those exceptions for us. Here\u2019s a couple of tips to make Airbrake more useful.\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"Leonid Shevtsov\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"| Blog on Engineering, Product Management, Transparency, Culture and many more...\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"A couple of Airbrake tips | Railsware Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"No software is complete without bugs and no Rails application is complete without proper exception tracking. In most cases we choose Airbrake to collect those exceptions for us. Here\u2019s a couple of tips to make Airbrake more useful.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/06\/hoptoad.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/06\/hoptoad.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-06-20T22:11:27+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2021-08-16T10:10:03+00:00\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#article\",\"name\":\"A couple of Airbrake tips | Railsware Blog\",\"headline\":\"A couple of Airbrake tips\",\"author\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/leonid-shevtsov\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/06\\\/hoptoad.png\",\"width\":150,\"height\":150},\"datePublished\":\"2012-06-21T01:11:27+03:00\",\"dateModified\":\"2021-08-16T13:10:03+03:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#webpage\"},\"articleSection\":\"Engineering\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/railsware.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/#listItem\",\"name\":\"Engineering\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/#listItem\",\"position\":2,\"name\":\"Engineering\",\"item\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#listItem\",\"name\":\"A couple of Airbrake tips\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#listItem\",\"position\":3,\"name\":\"A couple of Airbrake tips\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/#listItem\",\"name\":\"Engineering\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#organization\",\"description\":\"Blog on Engineering, Product Management, Transparency, Culture and many more...\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/Logo-circle.png\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#organizationLogo\",\"width\":3137,\"height\":1054,\"caption\":\"Railsware logo\"},\"image\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/leonid-shevtsov\\\/#author\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/leonid-shevtsov\\\/\",\"name\":\"Leonid Shevtsov\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#authorImage\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/leonid-shevtsov-96x96.jpg\",\"width\":96,\"height\":96,\"caption\":\"Leonid Shevtsov\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#webpage\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/\",\"name\":\"A couple of Airbrake tips | Railsware Blog\",\"description\":\"No software is complete without bugs and no Rails application is complete without proper exception tracking. In most cases we choose Airbrake to collect those exceptions for us. Here\\u2019s a couple of tips to make Airbrake more useful.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/leonid-shevtsov\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/leonid-shevtsov\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/06\\\/hoptoad.png\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#mainImage\",\"width\":150,\"height\":150},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/a-couple-of-airbrake-tips\\\/#mainImage\"},\"datePublished\":\"2012-06-21T01:11:27+03:00\",\"dateModified\":\"2021-08-16T13:10:03+03:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/\",\"description\":\"Blog on Engineering, Product Management, Transparency, Culture and many more...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"A couple of Airbrake tips | Railsware Blog","description":"No software is complete without bugs and no Rails application is complete without proper exception tracking. In most cases we choose Airbrake to collect those exceptions for us. Here\u2019s a couple of tips to make Airbrake more useful.","canonical_url":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#article","name":"A couple of Airbrake tips | Railsware Blog","headline":"A couple of Airbrake tips","author":{"@id":"https:\/\/railsware.com\/blog\/author\/leonid-shevtsov\/#author"},"publisher":{"@id":"https:\/\/railsware.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/06\/hoptoad.png","width":150,"height":150},"datePublished":"2012-06-21T01:11:27+03:00","dateModified":"2021-08-16T13:10:03+03:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#webpage"},"isPartOf":{"@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#webpage"},"articleSection":"Engineering"},{"@type":"BreadcrumbList","@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/railsware.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/category\/development\/#listItem","name":"Engineering"}},{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/category\/development\/#listItem","position":2,"name":"Engineering","item":"https:\/\/railsware.com\/blog\/category\/development\/","nextItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#listItem","name":"A couple of Airbrake tips"},"previousItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#listItem","position":3,"name":"A couple of Airbrake tips","previousItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/category\/development\/#listItem","name":"Engineering"}}]},{"@type":"Organization","@id":"https:\/\/railsware.com\/blog\/#organization","description":"Blog on Engineering, Product Management, Transparency, Culture and many more...","url":"https:\/\/railsware.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2020\/11\/Logo-circle.png","@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#organizationLogo","width":3137,"height":1054,"caption":"Railsware logo"},"image":{"@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/railsware.com\/blog\/author\/leonid-shevtsov\/#author","url":"https:\/\/railsware.com\/blog\/author\/leonid-shevtsov\/","name":"Leonid Shevtsov","image":{"@type":"ImageObject","@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#authorImage","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2021\/06\/leonid-shevtsov-96x96.jpg","width":96,"height":96,"caption":"Leonid Shevtsov"}},{"@type":"WebPage","@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#webpage","url":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/","name":"A couple of Airbrake tips | Railsware Blog","description":"No software is complete without bugs and no Rails application is complete without proper exception tracking. In most cases we choose Airbrake to collect those exceptions for us. Here\u2019s a couple of tips to make Airbrake more useful.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/railsware.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#breadcrumblist"},"author":{"@id":"https:\/\/railsware.com\/blog\/author\/leonid-shevtsov\/#author"},"creator":{"@id":"https:\/\/railsware.com\/blog\/author\/leonid-shevtsov\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/06\/hoptoad.png","@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#mainImage","width":150,"height":150},"primaryImageOfPage":{"@id":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/#mainImage"},"datePublished":"2012-06-21T01:11:27+03:00","dateModified":"2021-08-16T13:10:03+03:00"},{"@type":"WebSite","@id":"https:\/\/railsware.com\/blog\/#website","url":"https:\/\/railsware.com\/blog\/","description":"Blog on Engineering, Product Management, Transparency, Culture and many more...","inLanguage":"en-US","publisher":{"@id":"https:\/\/railsware.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"| Blog on Engineering, Product Management, Transparency, Culture and many more...","og:type":"article","og:title":"A couple of Airbrake tips | Railsware Blog","og:description":"No software is complete without bugs and no Rails application is complete without proper exception tracking. In most cases we choose Airbrake to collect those exceptions for us. Here\u2019s a couple of tips to make Airbrake more useful.","og:url":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/","og:image":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/06\/hoptoad.png","og:image:secure_url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/06\/hoptoad.png","og:image:width":150,"og:image:height":150,"article:published_time":"2012-06-20T22:11:27+00:00","article:modified_time":"2021-08-16T10:10:03+00:00"},"aioseo_meta_data":{"post_id":"2342","title":"A couple of Airbrake tips | Railsware Blog","description":"No software is complete without bugs and no Rails application is complete without proper exception tracking. In most cases we choose Airbrake to collect those exceptions for us. Here\u2019s a couple of tips to make Airbrake more useful.","keywords":[{"label":"Airbrake","value":"Airbrake"},{"label":"productivity","value":"productivity"},{"label":"Playhem","value":"Playhem"},{"label":"exceptions tracking","value":"exceptions tracking"},{"label":"tips","value":"tips"}],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"aioseo-article-6385f5b05995d","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":{"locations":{"business":{"name":"","businessType":"","image":"","areaServed":"","urls":{"website":"","aboutPage":"","contactPage":""},"address":{"streetLine1":"","streetLine2":"","zipCode":"","city":"","state":"","country":"","addressFormat":"#streetLineOne\n#streetLineTwo\n#city, #state #zipCode"},"contact":{"email":"","phone":"","phoneFormatted":"","fax":"","faxFormatted":""},"ids":{"vat":"","tax":"","chamberOfCommerce":""},"payment":{"priceRange":"","currenciesAccepted":"","methods":""}}},"openingHours":{"useDefaults":true,"show":true,"alwaysOpen":false,"use24hFormat":false,"timezone":"","labels":{"closed":"","alwaysOpen":""},"days":{"monday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"tuesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"wednesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"thursday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"friday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"saturday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"sunday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"}}}},"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-01-04 12:44:09","updated":"2025-09-26 11:15:39","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/railsware.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/railsware.com\/blog\/category\/development\/\" title=\"Engineering\">Engineering<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tA couple of Airbrake tips\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/railsware.com\/blog"},{"label":"Engineering","link":"https:\/\/railsware.com\/blog\/category\/development\/"},{"label":"A couple of Airbrake tips","link":"https:\/\/railsware.com\/blog\/a-couple-of-airbrake-tips\/"}],"categories_data":[{"name":"Engineering","link":"https:\/\/railsware.com\/blog?category=development"}],"post_thumbnails":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/06\/hoptoad.png","article_background":"","amp_enabled":true,"_links":{"self":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts\/2342","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/comments?post=2342"}],"version-history":[{"count":16,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts\/2342\/revisions"}],"predecessor-version":[{"id":14105,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts\/2342\/revisions\/14105"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/media\/2417"}],"wp:attachment":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/media?parent=2342"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/categories?post=2342"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/tags?post=2342"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/coauthors?post=2342"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}