Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leejones/alfred-grafana-dashboards-workflow
An Alfred workflow to search your Grafana dashboards and open one
https://github.com/leejones/alfred-grafana-dashboards-workflow
alfred alfred-workflow grafana
Last synced: about 2 months ago
JSON representation
An Alfred workflow to search your Grafana dashboards and open one
- Host: GitHub
- URL: https://github.com/leejones/alfred-grafana-dashboards-workflow
- Owner: leejones
- Created: 2017-05-12T02:19:30.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-06-08T11:13:12.000Z (over 1 year ago)
- Last Synced: 2024-11-15T21:46:06.871Z (about 2 months ago)
- Topics: alfred, alfred-workflow, grafana
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# alfred-grafana-dashboards-workflow
An Alfred workflow to search your [Grafana](https://grafana.com) dashboards and select one to open in your default browser.
## Installation
Requirements:
* [Go](https://go.dev) (see `go.mod` for recommended minimum version)
Clone this repo and run:
```
make install
```## Configuration
During installation, set the following required variables:
* `GRAFANA_HOST` - required (e.g. `https://example.com/`)
If your Grafana instance is protected by HTTP basic auth, set the following variables:
* `GRAFANA_BASIC_AUTH_USER` - optional
* `GRAFANA_BASIC_AUTH_PASSWORD` - optionalAlternatively, you can define your Grafana basic auth username and password in your `~/.netrc` file:
```
machine example.com
login my-username
password my-password
```If you don't have a `~/.netrc`, you can create one with:
```
# create the file
touch ~/.netrc
# set the file permissions so that other users cannot read it
chmod 600 ~/.netrc
```