Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/app-generator/docs-django-grafana
Django & Grafana Integration - App-Generator.dev DOCS
https://github.com/app-generator/docs-django-grafana
django-grafana grafana grafana-dashboard grafana-django
Last synced: 27 days ago
JSON representation
Django & Grafana Integration - App-Generator.dev DOCS
- Host: GitHub
- URL: https://github.com/app-generator/docs-django-grafana
- Owner: app-generator
- Created: 2024-10-23T10:22:44.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-26T10:20:05.000Z (3 months ago)
- Last Synced: 2024-12-07T21:43:27.267Z (about 1 month ago)
- Topics: django-grafana, grafana, grafana-dashboard, grafana-django
- Language: Python
- Homepage: https://app-generator.dev/docs/technologies/django/integrate-grafana.html
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# [Django & Grafana Integration](https://app-generator.dev/docs/technologies/django/integrate-grafana.html)
Coding sample for **[Django & Grafana Integration documentation page](https://app-generator.dev/docs/technologies/django/integrate-grafana.html)**. The postproduction step in software development is crucial to tracking performances, correcting bugs, and improving an application.
With Django, you can integrate Grafana, a powerful tool to aggregate logs and view these logs on the dashboard.> 👉 Get [Support](https://app-generator.dev/ticket/create/) via `email` & `Discord`
## Build
> 👉 Download the code
```bash
$ git clone https://github.com/app-generator/docs-django-snowflake.git
$ cd docs-django-snowflake
```
> 👉 Install modules via `VENV`
```bash
$ virtualenv env
$ source env/bin/activate
$ pip install -r requirements.txt
```
> 👉 Set Up Database
```bash
$ python manage.py makemigrations
$ python manage.py migrate
```
> 👉 Start the app
```bash
$ python manage.py runserver
```At this point, the app runs at `http://127.0.0.1:8000/`.
> 👉 Install Grafana
For Linux 👇
```bash
$ sudo systemctl start grafana-server
$ sudo systemctl enable grafana-server
```For macOS (using Homebrew):
```bash
$ brew services start grafana
```Open Grafana by going to http://localhost:3000 in your browser. Use the default username and password (admin/admin) to log in. Change the password when prompted.
---
**[Django & Grafana Integration](https://app-generator.dev/docs/technologies/django/integrate-grafana.html)** - Coding sample provided by **[App Generator](https://app-generator.dev/)**