Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

add deprecation notice after installation #1481

Merged
merged 5 commits into from
Jul 18, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## Overview
Welcome to the Log Analytics agent for Linux! The agent for Linux enables rich and real-time analytics for operational data (Syslog, performance, alerts, inventory) from Linux servers, Docker containers and monitoring tools like Nagios, Zabbix and System Center.

> :warning: The Log Analytics agent is on a **deprecation path** and won't be supported after **August 31, 2024.** If you use the Log Analytics agent to ingest data to Azure Monitor, make sure to  [migrate to the new Azure Monitor agent](https://docs.microsoft.com/en-us/azure/azure-monitor/agents/azure-monitor-agent-migration)  prior to that date.
>

## Quick Install guide
The following steps configure setup of the Log Analytics agent in Azure and Azure Government cloud. *Commands are for 64-bit*. Before installing the Log Analytics agent for Linux, you need the workspace ID and key for your Azure Monitor Log Analytics workspace.

Expand Down
2 changes: 2 additions & 0 deletions installer/bundle/bundle_skel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,10 @@ cleanup_and_exit()

if [ -n "$1" ]; then
echo "OMS agent shell bundle exiting with status code $1"
echo -e "\033[0;31mThe Log Analytics agent is on a deprecation path and won't be supported after August 31, 2024. If you use the Log Analytics agent to ingest data to Azure Monitor, make sure to migrate to the new Azure Monitor agent(https://docs.microsoft.com/en-us/azure/azure-monitor/agents/azure-monitor-agent-migration) prior to that date.\033[0m"
peizhen-w marked this conversation as resolved.
Show resolved Hide resolved
exit $1
else
echo -e "\033[0;31mThe Log Analytics agent is on a deprecation path and won't be supported after August 31, 2024. If you use the Log Analytics agent to ingest data to Azure Monitor, make sure to migrate to the new Azure Monitor agent(https://docs.microsoft.com/en-us/azure/azure-monitor/agents/azure-monitor-agent-migration) prior to that date.\033[0m"
exit 0
fi
}
Expand Down