diff --git a/src/components/DevSiteSeo.js b/src/components/DevSiteSeo.js
index 26d80bf2f..cbc61ca0b 100644
--- a/src/components/DevSiteSeo.js
+++ b/src/components/DevSiteSeo.js
@@ -18,6 +18,18 @@ function DevSiteSeo({ description, meta, title, tags, location, type }) {
`
);
+ const crazyEgg = (location) => {
+ if (location.pathname === '/instant-observability/') {
+ return (
+
+ );
+ }
+ };
+
const metaDescription = description || site.siteMetadata.description;
const globalMetadata = [
@@ -78,6 +90,7 @@ function DevSiteSeo({ description, meta, title, tags, location, type }) {
return (
+ {crazyEgg(location)}
{validMetadata.map((data, index) => (
))}