From 82e000a758be2bd9870b49322626c7b2fdc1b171 Mon Sep 17 00:00:00 2001 From: Mike Thomas <78363703+mike-j-thomas@users.noreply.github.com> Date: Sat, 14 Dec 2024 04:24:42 +0900 Subject: [PATCH] Name change (Observability => Orchestration) (#24747) - made the text changes to the page, page title, site navigation --------- Co-authored-by: Eric --- website/api/controllers/download-sitemap.js | 2 +- website/config/routes.js | 7 ++++--- website/views/layouts/layout.ejs | 6 +++--- website/views/pages/homepage.ejs | 8 ++++---- website/views/pages/observability.ejs | 4 ++-- 5 files changed, 14 insertions(+), 13 deletions(-) diff --git a/website/api/controllers/download-sitemap.js b/website/api/controllers/download-sitemap.js index 7e10078554..c020e14d20 100644 --- a/website/api/controllers/download-sitemap.js +++ b/website/api/controllers/download-sitemap.js @@ -59,7 +59,7 @@ module.exports = { '/deploy',// « article category page '/podcasts',// « article category page // Product category pages: - '/endpoint-ops', + '/orchestration', '/device-management', '/vulnerability-management', // Other stuff: diff --git a/website/config/routes.js b/website/config/routes.js index 6d04b3bc6d..57c06b0f37 100644 --- a/website/config/routes.js +++ b/website/config/routes.js @@ -228,10 +228,10 @@ module.exports.routes = { } }, - 'GET /observability': { + 'GET /orchestration': { action: 'view-observability', locals: { - pageTitleForMeta: 'Observability', + pageTitleForMeta: 'Orchestration', pageDescriptionForMeta: 'Pulse check anything, build reports, and ship data to any platform with Fleet.', currentSection: 'platform', } @@ -552,7 +552,8 @@ module.exports.routes = { 'GET /endpoint-operations': '/endpoint-ops',// « just in case we type it the wrong way 'GET /example-dep-profile': 'https://github.com/fleetdm/fleet/blob/main/it-and-security/lib/macos/enrollment-profiles/automatic-enrollment.dep.json', 'GET /vulnerability-management': (req,res)=> { let originalQueryString = req.url.match(/\?(.+)$/) ? '?'+req.url.match(/\?(.+)$/)[1] : ''; return res.redirect(301, sails.config.custom.baseUrl+'/software-management'+originalQueryString);}, - 'GET /endpoint-ops': (req,res)=> { let originalQueryString = req.url.match(/\?(.+)$/) ? '?'+req.url.match(/\?(.+)$/)[1] : ''; return res.redirect(301, sails.config.custom.baseUrl+'/observability'+originalQueryString);}, + 'GET /endpoint-ops': (req,res)=> { let originalQueryString = req.url.match(/\?(.+)$/) ? '?'+req.url.match(/\?(.+)$/)[1] : ''; return res.redirect(301, sails.config.custom.baseUrl+'/orchestration'+originalQueryString);}, + 'GET /observability': (req,res)=> { let originalQueryString = req.url.match(/\?(.+)$/) ? '?'+req.url.match(/\?(.+)$/)[1] : ''; return res.redirect(301, sails.config.custom.baseUrl+'/orchestration'+originalQueryString);}, // Shortlinks for texting friends, radio ads, etc 'GET /mdm': '/device-management?utm_content=mdm',// « alias for radio ad diff --git a/website/views/layouts/layout.ejs b/website/views/layouts/layout.ejs index 1ec367716a..a16f6c12e1 100644 --- a/website/views/layouts/layout.ejs +++ b/website/views/layouts/layout.ejs @@ -159,7 +159,7 @@
Device management   (+ MDM) - Observability   (+ scripting) + Orchestration   (+ monitoring) Software management   (+ CVEs) Integrations
@@ -220,7 +220,7 @@ @@ -310,7 +310,7 @@
Multi platform Device management - Observability + Orchestration Software management Integrations Pricing diff --git a/website/views/pages/homepage.ejs b/website/views/pages/homepage.ejs index d58dd42bba..8ac7f8dffe 100644 --- a/website/views/pages/homepage.ejs +++ b/website/views/pages/homepage.ejs @@ -9,7 +9,7 @@

<%- partial('../partials/primary-tagline.partial.ejs') %>

Replace the sprawl with <%= primaryBuyingSituation === 'vm'? 'secure, open-source reporting that works the way you want' : primaryBuyingSituation === 'eo-security'? 'open-source endpoint orchestration for every platform' : 'lightning fast device management that lets employees see what\'s going on' %>.

- Learn how + Learn how Talk to an engineer
@@ -84,7 +84,7 @@ In the cloud or on-prem

Fleet uses the same open-source code base regardless of where it’s installed. You can deploy and configure it to fit your needs.

- More about IT engineering + More about IT engineering
@@ -130,7 +130,7 @@

<%= primaryBuyingSituation==='eo-security'? 'Instrument your endpoints' : 'Talk to your computers'%>

A <%= primaryBuyingSituation==='eo-security'? 'lightweight' : 'quick-fast' %> way to gather <%= primaryBuyingSituation==='vm'? 'patch level and custom reports across all your computing devices, even in OT and production environments' : primaryBuyingSituation==='eo-security'? 'deep context and custom telemetry across all your endpoints, even servers' : primaryBuyingSituation==='mdm'||primaryBuyingSituation==='eo-it'? 'compliance and inventory data across all your devices' : 'device data across all your computers' %>. Pulse check or automate anything on any platform.

- Start with <%= primaryBuyingSituation==='eo-security' ? 'security engineering' : 'IT engineering'%> + Start with <%= primaryBuyingSituation==='eo-security' ? 'security engineering' : 'IT engineering'%>
@@ -197,7 +197,7 @@

<%= primaryBuyingSituation==='vm'? 'Instrument your endpoints' : 'Talk to your computers'%>

A <%= primaryBuyingSituation==='vm'? 'lightweight' : 'quick-fast' %> way to gather <%= primaryBuyingSituation==='vm'? 'patch level and custom reports across all your computing devices, even in OT and production environments' : primaryBuyingSituation==='vm'? 'deep context and custom telemetry across all your endpoints, even servers' : primaryBuyingSituation==='mdm'||primaryBuyingSituation==='eo-it'? 'compliance and inventory data across all your devices' : 'device data across all your computers' %>. Pulse check or automate anything on any platform.

- Start with <%= primaryBuyingSituation==='mdm' ? 'IT engineering' : 'security engineering'%> + Start with <%= primaryBuyingSituation==='mdm' ? 'IT engineering' : 'security engineering'%>
diff --git a/website/views/pages/observability.ejs b/website/views/pages/observability.ejs index 49f233c3c6..e5318882e1 100644 --- a/website/views/pages/observability.ejs +++ b/website/views/pages/observability.ejs @@ -3,7 +3,7 @@
-

Observability

+

Orchestration

<%= pagePersonalization==='eo-security'? 'Deeper, faster visibility for every OS' : 'Talk to your computers'%>

@@ -267,7 +267,7 @@
-

Observability

+

Orchestration

<%= pagePersonalization==='eo-security'? 'Instrument your endpoints' : 'Talk to your computers'%>