diff --git a/recipes/newrelic/all_error.json b/recipes/newrelic/all_error.json new file mode 100644 index 000000000..2e592661a --- /dev/null +++ b/recipes/newrelic/all_error.json @@ -0,0 +1,18 @@ +{ + "context canceled": { + "platform": [ + "all" + ], + "description": "Context canceled", + "form": [ + { + "description": "Our install was canceled, was this on purpuse?", + "type": "checkbox" + }, + { + "description": "Please provide your feedback", + "type": "texbox" + } + ] + } +} diff --git a/recipes/newrelic/infrastructure/alerts/alerts-golden-signal-error.json b/recipes/newrelic/infrastructure/alerts/alerts-golden-signal-error.json new file mode 100644 index 000000000..d58ca4cbe --- /dev/null +++ b/recipes/newrelic/infrastructure/alerts/alerts-golden-signal-error.json @@ -0,0 +1,34 @@ +{ + "'sudo': executable file not found in $PATH": { + "platform": [ + "ubuntu" + ], + "description": "Required sudo command not found", + "steps": [ + { + "title": "check your path", + "description": "check your path if sudo is a command", + "code": "which sudo" + }, + { + "title": "install sudo if missing for linux", + "description": "install sudo", + "code": "apt install sudo" + } + ], + "form": [ + { + "description": "are you using docker?", + "type": "checkbox" + }, + { + "description": "Was this helpful? ", + "type": "checkbox" + }, + { + "description": "Please provide your feedback", + "type": "texbox" + } + ] + } +} diff --git a/recipes/newrelic/infrastructure/infrastructure-agent-installer-error.json b/recipes/newrelic/infrastructure/infrastructure-agent-installer-error.json new file mode 100644 index 000000000..4085d10a9 --- /dev/null +++ b/recipes/newrelic/infrastructure/infrastructure-agent-installer-error.json @@ -0,0 +1,33 @@ +{ + "Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist": { + "platform": [ + "all" + ], + "description": "CentOS 8 has reached EOL, and require their package manage source update to their archieve url.", + "steps": [ + { + "title": "update repo to archieve url", + "description": "update repo to archieve url", + "code": [ + "sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*", + "sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*" + ] + }, + { + "title": "Re-run Install", + "description": "Re-run install", + "cmd": "Show-Install" + } + ], + "form": [ + { + "description": "Was this helpful? ", + "type": "checkbox" + }, + { + "description": "Please provide your feedback", + "type": "texbox" + } + ] + } +}