old_console/events/api_urls.py
2024-11-02 14:12:45 +03:00

8 lines
331 B
Python

from django.urls import path
from events.views.elk_string_query_search_api import ELKStingSearchApiView, ELKIndexListApiView
urlpatterns = [
path('elastic/query/<str:index>', ELKStingSearchApiView.as_view(), name='elk_query_events'),
path('elastic/all-indexes/', ELKIndexListApiView.as_view(), name='elk_all_indexes'),
]