From 455f560c65f14139ca75fa858202003cb77f9774 Mon Sep 17 00:00:00 2001 From: Tatiana Perry Date: Mon, 1 Aug 2022 11:15:44 -0400 Subject: [PATCH 1/2] added uninstall instructions to readme --- README.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/README.md b/README.md index 24d8e54..36d801f 100644 --- a/README.md +++ b/README.md @@ -102,6 +102,48 @@ wget -O- https://repo.logdna.com/logdna.gpg | sudo apt-key add - sudo apt-get update ``` +## Uninstalling the Agent + +### Centos + +`sudo yum remove logdna-agent` + +### Debian + +`sudo apt-get remove logdna-agent` + +### macOS + +`sudo launchctl unload -w /Library/LaunchDaemons/com.logdna.logdna-agent.plist` + +### Kubernetes + +`kubectl delete ds logdna-agent` + +### SysLog + +Edit your /etc/syslog.conf to remove the following line: + +`*.* @syslog-a.logdna.com:` + +### Docker + +``` +docker stop +docker rm + +docker images +docker rmi + +//check to see that it has been removed +docker info +``` + +### Heroku + +Please visit the following documentation to uninstall the Heroku LogDNA add-on: +[https://devcenter.heroku.com/articles/logdna#remove-the-add-on] + ## How it Works The LogDNA agent authenticates using your [LogDNA Ingestion Key](https://app.logdna.com/manage/profile) and opens a secure web socket to LogDNA's From ed2dfc2b384a0c6194a8bf1cf41f817db02a9437 Mon Sep 17 00:00:00 2001 From: tjperry07 Date: Mon, 1 Aug 2022 12:10:26 -0400 Subject: [PATCH 2/2] Update README.md removed brackets around link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36d801f..a76abcf 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ docker info ### Heroku Please visit the following documentation to uninstall the Heroku LogDNA add-on: -[https://devcenter.heroku.com/articles/logdna#remove-the-add-on] +https://devcenter.heroku.com/articles/logdna#remove-the-add-on ## How it Works