Skip to content

Commit

Permalink
Add missing space in log message and docs update (#212)
Browse files Browse the repository at this point in the history
* Add missing space in log message

* Update cortex auth docs

- Variables CORTEX_TENANT_ID, CORTEX_API_KEY are not mandatory - would work for  cortex without authentication set
- Remove cortextool requirement

* Revert CORTEX_TENANT_ID,CORTEX_API_KEY required flag to true
  • Loading branch information
v-zhuravlev authored Apr 19, 2022
1 parent a02770b commit e77f5c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions docs/content/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
| --- | --- | --- |
Expand Down
2 changes: 1 addition & 1 deletion pkg/grizzly/workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e77f5c7

Please sign in to comment.