telemetry dashboard add
All checks were successful
Build And Test / build-and-push (push) Successful in 4m35s
All checks were successful
Build And Test / build-and-push (push) Successful in 4m35s
This commit is contained in:
parent
928758c20d
commit
fb02b8dc8d
@ -8,7 +8,7 @@
|
||||
<!-- Grafana IFrame -->
|
||||
<div class="ratio ratio-16x9">
|
||||
<iframe
|
||||
src="https://grafana.nativedeck.com/d/PwMJtdvnz/1-k8s-for-prometheus-dashboard-20211010-en?orgId=2&from=1731468637504&to=1731470437504&kiosk"
|
||||
src="https://grafana.icurfer.com/public-dashboards/40d2a2615010433d81f5cf40caa03541"
|
||||
width="100%"
|
||||
height="800"
|
||||
frameborder="0"
|
||||
|
@ -16,5 +16,5 @@ urlpatterns = [
|
||||
path('ip-mgmt/delete/', views.delete_ip_records, name='ip_mgmt_delete'), # 삭제 URL 추가
|
||||
path('ip-mgmt/edit/<int:pk>/', views.edit_ip_record, name='ip_mgmt_edit'), # 수정 URL 추가
|
||||
path('privacy/', views.privacy_view, name='privacy'),
|
||||
path('test/', views.test_view, name='test'),
|
||||
# path('test/', views.test_view, name='test'),
|
||||
]
|
||||
|
@ -18,13 +18,13 @@ BASE_DIR = Path(__file__).resolve().parent.parent
|
||||
|
||||
# 우선순위: .env.prd > .env.dev > .env
|
||||
if os.path.exists(os.path.join(BASE_DIR, '.env.prd')):
|
||||
print("Read ::: .env.prd")
|
||||
print("Read Environment File > Used : .env.prd")
|
||||
load_dotenv(os.path.join(BASE_DIR, '.env.prd'))
|
||||
elif os.path.exists(os.path.join(BASE_DIR, '.env.dev')):
|
||||
print("Read ::: .env.dev")
|
||||
print("Read Environment File > Used : .env.dev")
|
||||
load_dotenv(os.path.join(BASE_DIR, '.env.dev'))
|
||||
else:
|
||||
print("Read ::: local_env")
|
||||
print("None Environment File > Used : local_env")
|
||||
|
||||
# load_dotenv(os.path.join(BASE_DIR, '.env.dev'))
|
||||
|
||||
@ -62,6 +62,7 @@ INSTALLED_APPS = [
|
||||
'mm_msg',
|
||||
'ansible_manager',
|
||||
'obs_minio',
|
||||
'telemetry_dashboard',
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
@ -31,6 +31,7 @@ urlpatterns = [
|
||||
path('mm_msg/', include('mm_msg.urls')),
|
||||
path('ansible_manager/', include('ansible_manager.urls')),
|
||||
path('obs_minio/', include('obs_minio.urls')),
|
||||
path('tm_dsbd/', include('telemetry_dashboard.urls')),
|
||||
]
|
||||
|
||||
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
||||
|
@ -28,6 +28,8 @@
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
<hr>
|
||||
{% include "components/_sidebar_tm_dashboard.html" %}
|
||||
</li>
|
||||
<hr>
|
||||
<li class="my-2">
|
||||
|
@ -1,5 +1,5 @@
|
||||
<li class="my-2">
|
||||
<button class="btn d-inline-flex align-items-center collapsed" data-bs-toggle="collapse" aria-expanded="false" data-bs-target="#ansible-collapse" aria-controls="ansible-collapse">On-premise Ansible</button>
|
||||
<button class="btn d-inline-flex align-items-center collapsed" data-bs-toggle="collapse" aria-expanded="false" data-bs-target="#ansible-collapse" aria-controls="ansible-collapse">On-premise Ansible ▽</button>
|
||||
|
||||
<ul class="list-unstyled ps-3 collapse" id="ansible-collapse">
|
||||
<li>
|
||||
|
@ -0,0 +1,8 @@
|
||||
<li class="my-2">
|
||||
<button class="btn d-inline-flex align-items-center collapsed" data-bs-toggle="collapse" aria-expanded="false" data-bs-target="#tm_dsbd-collapse" aria-controls="tm_dsbd-collapse">Telemetry Dashboard ▽</button>
|
||||
<ul class="list-unstyled ps-3 collapse" id="tm_dsbd-collapse">
|
||||
<li>
|
||||
<a class="d-inline-flex align-items-center rounded" href="/tm_dsbd/grafana">grafana</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
0
telemetry_dashboard/__init__.py
Normal file
0
telemetry_dashboard/__init__.py
Normal file
3
telemetry_dashboard/admin.py
Normal file
3
telemetry_dashboard/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
telemetry_dashboard/apps.py
Normal file
6
telemetry_dashboard/apps.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class TelemetryDashboardConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'telemetry_dashboard'
|
0
telemetry_dashboard/migrations/__init__.py
Normal file
0
telemetry_dashboard/migrations/__init__.py
Normal file
3
telemetry_dashboard/models.py
Normal file
3
telemetry_dashboard/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
@ -0,0 +1,19 @@
|
||||
{% extends "components/base.html" %}
|
||||
|
||||
{% block title %}Landing Page{% endblock %}
|
||||
|
||||
{% block main_area %}
|
||||
<article class="pt-3">
|
||||
<h2 class="fw-bold pb-2">Grafana</h2>
|
||||
<!-- Grafana IFrame -->
|
||||
<div class="ratio ratio-16x9">
|
||||
<iframe
|
||||
src="https://grafana.icurfer.com/public-dashboards/40d2a2615010433d81f5cf40caa03541"
|
||||
width="100%"
|
||||
height="800"
|
||||
frameborder="0"
|
||||
allowfullscreen
|
||||
></iframe>
|
||||
</div>
|
||||
</article>
|
||||
{% endblock %}
|
3
telemetry_dashboard/tests.py
Normal file
3
telemetry_dashboard/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
8
telemetry_dashboard/urls.py
Normal file
8
telemetry_dashboard/urls.py
Normal file
@ -0,0 +1,8 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'tm_dsbd'
|
||||
|
||||
urlpatterns = [
|
||||
path('grafana/', views.grafana_view, name='grafana'),
|
||||
]
|
11
telemetry_dashboard/views.py
Normal file
11
telemetry_dashboard/views.py
Normal file
@ -0,0 +1,11 @@
|
||||
from django.shortcuts import render, redirect, get_object_or_404
|
||||
from django.contrib.auth.decorators import login_required
|
||||
from django.views.generic import TemplateView
|
||||
# from django.db.models import Q
|
||||
|
||||
|
||||
def grafana_view(request):
|
||||
return render(
|
||||
request,
|
||||
"telemetry_dashboard/grafana.html",
|
||||
)
|
Loading…
Reference in New Issue
Block a user