Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tricorder-observability/grafana
https://github.com/tricorder-observability/grafana
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tricorder-observability/grafana
- Owner: tricorder-observability
- License: agpl-3.0
- Created: 2022-11-03T07:33:02.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-27T02:08:13.000Z (almost 2 years ago)
- Last Synced: 2023-03-28T00:56:42.565Z (almost 2 years ago)
- Language: TypeScript
- Size: 25.7 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Grafana
This repo was fork from [Grafana](https://github.com/grafana/grafana) v9.2.2
## Prerequisites
- node version: 18.0.0+
- yarn version: 3.2.3
- go version: 1.18.1## Run locally
```
yarn install
make run
yarn start
```## Image
Current images are pushed to AWS [ECR-public](https://console.aws.amazon.com/ecr/)
To build image:```
docker build -t public.ecr.aws/tricorder/grafana .
docker tag public.ecr.aws/tricorder/grafana public.ecr.aws/tricorder/grafana:
docker push public.ecr.aws/tricorder/grafana:
# To run grafana with docker:
docker run -it --rm -p 3000:3000 --name=grafana public.ecr.aws/tricorder/grafana:
```