From bcfc08423dc7c1dc318d59886875e6d8665e6d55 Mon Sep 17 00:00:00 2001 From: Dan Lemon Date: Thu, 15 Dec 2022 20:03:49 +0100 Subject: [PATCH] Update README.md title and links (#23) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0f4e217..023f172 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# amazeeio-facts-audit +# Lagoon Facts App This application is run as part of the bootstrapping process of the Lagoon CLI pods. It is used to gather facts about the running environment and push them back up to the Lagoon Insights system. @@ -26,8 +26,8 @@ The application is written in Go (GoLang), for more information about setting th As mentioned above, creating a new gatherer is fairly simple. -Look at the requirements of the [`Gatherer` interface](https://github.com/bomoko/amazeeio-facts-audit/blob/main/gatherers/defs.go#L14) and implement the `AppliesToEnvironment` and `GatherFacts` functions on a new structure. -Then register the new gatherer by calling `RegisterGatherer` (for example, [here](https://github.com/bomoko/amazeeio-facts-audit/blob/main/gatherers/DrushGatherer.go#L56)) +Look at the requirements of the [`Gatherer` interface](https://github.com/uselagoon/lagoon-facts-app/blob/main/gatherers/defs.go#L14) and implement the `AppliesToEnvironment` and `GatherFacts` functions on a new structure. +Then register the new gatherer by calling `RegisterGatherer` (for example, [here](https://github.com/uselagoon/lagoon-facts-app/blob/main/gatherers/DrushGatherer.go#L60)) ## Running