Color types in Drilldown output
This commit is contained in:
@@ -64,3 +64,4 @@ META_MAX_CHUNK_SIZE = 500
|
|||||||
META_QUERY_SIZE = 10000
|
META_QUERY_SIZE = 10000
|
||||||
|
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
|
PROFILER = True
|
||||||
|
|||||||
@@ -135,8 +135,10 @@ REST_FRAMEWORK = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
from app.local_settings import * # noqa
|
from app.local_settings import * # noqa
|
||||||
if PROFILER:
|
|
||||||
|
if PROFILER: # noqa - trust me its there
|
||||||
import pyroscope
|
import pyroscope
|
||||||
|
|
||||||
pyroscope.configure(
|
pyroscope.configure(
|
||||||
application_name="neptune",
|
application_name="neptune",
|
||||||
server_address="http://pyroscope:4040",
|
server_address="http://pyroscope:4040",
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ from django.views.generic import TemplateView
|
|||||||
|
|
||||||
# Threshold API stuff
|
# Threshold API stuff
|
||||||
from core.api.views.threshold import ThresholdChans, ThresholdOnline, ThresholdUsers
|
from core.api.views.threshold import ThresholdChans, ThresholdOnline, ThresholdUsers
|
||||||
from core.views import Billing, Cancel, About, Order, Portal, Signup
|
from core.views import About, Billing, Cancel, Order, Portal, Signup
|
||||||
from core.views.callbacks import Callback
|
from core.views.callbacks import Callback
|
||||||
from core.views.manage.threshold.irc import (
|
from core.views.manage.threshold.irc import (
|
||||||
ThresholdIRCActions,
|
ThresholdIRCActions,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
from django.contrib.auth.models import AnonymousUser
|
||||||
from opensearchpy import OpenSearch
|
from opensearchpy import OpenSearch
|
||||||
from opensearchpy.exceptions import RequestError
|
from opensearchpy.exceptions import RequestError
|
||||||
from django.contrib.auth.models import AnonymousUser
|
|
||||||
|
|
||||||
from core.lib.threshold import annotate_num_chans, annotate_num_users, annotate_online
|
from core.lib.threshold import annotate_num_chans, annotate_num_users, annotate_online
|
||||||
|
|
||||||
@@ -154,7 +154,7 @@ def query_results(request, size=None):
|
|||||||
user = None
|
user = None
|
||||||
results = run_main_query(
|
results = run_main_query(
|
||||||
client,
|
client,
|
||||||
user,
|
user, # passed through run_main_query to filter_blacklisted
|
||||||
query,
|
query,
|
||||||
size=size,
|
size=size,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -28,7 +28,19 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for item in results %}
|
{% for item in results %}
|
||||||
|
{% if item.type == 'join' %}
|
||||||
|
<tr class="has-background-success-light">
|
||||||
|
{% elif item.type == 'quit' %}
|
||||||
|
<tr class="has-background-danger-light">
|
||||||
|
{% elif item.type == 'kick' %}
|
||||||
|
<tr class="has-background-danger-light">
|
||||||
|
{% elif item.type == 'part' %}
|
||||||
|
<tr class="has-background-warning-light">
|
||||||
|
{% elif item.type == 'mode' %}
|
||||||
|
<tr class="has-background-info-light">
|
||||||
|
{% else %}
|
||||||
<tr>
|
<tr>
|
||||||
|
{% endif %}
|
||||||
<td>
|
<td>
|
||||||
{% if item.src == 'irc' %}
|
{% if item.src == 'irc' %}
|
||||||
<span class="icon" data-tooltip="IRC">
|
<span class="icon" data-tooltip="IRC">
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
import json
|
import json
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.contrib.auth.mixins import LoginRequiredMixin
|
from django.contrib.auth.models import AnonymousUser
|
||||||
from django.http import HttpResponse, HttpResponseForbidden, JsonResponse
|
from django.http import HttpResponse, HttpResponseForbidden, JsonResponse
|
||||||
from django.shortcuts import render
|
from django.shortcuts import render
|
||||||
from django.views import View
|
from django.views import View
|
||||||
from rest_framework.parsers import FormParser
|
from rest_framework.parsers import FormParser
|
||||||
from rest_framework.views import APIView
|
from rest_framework.views import APIView
|
||||||
from django.contrib.auth.models import AnonymousUser
|
|
||||||
|
|
||||||
from core.lib.opensearch import query_results
|
from core.lib.opensearch import query_results
|
||||||
from core.lib.threshold import (
|
from core.lib.threshold import (
|
||||||
|
|||||||
Reference in New Issue
Block a user