diff --git a/docs/content/authentication.md b/docs/content/authentication.md index 8c83b1cf..28a4e575 100644 --- a/docs/content/authentication.md +++ b/docs/content/authentication.md @@ -23,9 +23,7 @@ See Grafana's [Authentication API docs](https://grafana.com/docs/grafana/latest/http_api/auth/) for more info. ## Grafana Cloud Prometheus -To interact with Grafana Cloud Prometheus, you must have the `cortextool` binary -available on your path (download it [here](https://github.com/grafana/cortex-tools/releases)), -and must have these environment variables set: +To interact with Grafana Cloud Prometheus, you must have these environment variables set: | Name | Description | Required | | --- | --- | --- | diff --git a/pkg/grizzly/workflow.go b/pkg/grizzly/workflow.go index cabbcde0..ad1658a1 100644 --- a/pkg/grizzly/workflow.go +++ b/pkg/grizzly/workflow.go @@ -338,7 +338,7 @@ func Watch(watchDir string, parser WatchParser) error { return } if event.Op&fsnotify.Write == fsnotify.Write { - log.Info("Changes detected. Applying", parser.Name()) + log.Info("Changes detected. Applying ", parser.Name()) resources, err := parser.Parse() if err != nil { log.Error("Error: ", err)