Skip to content
Snippets Groups Projects
Commit 539ae655 authored by Alexander Pace's avatar Alexander Pace
Browse files

Labels and other fixes

parent 1efa23d8
No related branches found
No related tags found
1 merge request!104Labels and other fixes
Pipeline #505741 passed
......@@ -56,11 +56,11 @@ timeout = get_from_env('GUNICORN_TIMEOUT',
# randint(0, max_requests_jitter)
max_requests = get_from_env('GUNICORN_MAX_REQUESTS',
default_value=100,
default_value=2500,
fail_if_not_found=False)
max_requests_jitter = get_from_env('GUNICORN_MAX_REQUESTS_JITTER',
default_value=10,
default_value=100,
fail_if_not_found=False)
# keepalive -------------------------------------------------------------------
......@@ -71,9 +71,24 @@ max_requests_jitter = get_from_env('GUNICORN_MAX_REQUESTS_JITTER',
# this to a higher value.
keepalive = get_from_env('GUNICORN_KEEPALIVE',
default_value=10,
default_value=25,
fail_if_not_found=False)
# preload_app -----------------------------------------------------------------
# Load application code before the worker processes are forked.
# By preloading an application you can save some RAM resources as well as speed
# up server boot times. Although, if you defer application loading to each
# worker process, you can reload your application code easily by restarting
# workers.
# If you aren't going to make use of on-the-fly reloading, consider preloading
# your application code to reduce its memory footprint. So, turn this on in
# production.
preload_app = get_from_env('GUNICORN_PRELOAD_APP',
default_value=False,
fail_if_not_found=False)
# Logging ---------------------------------------------------------------------
# Access log
......
......@@ -75,6 +75,8 @@ Here is a table showing the currently available labels and their meanings.
+----------------------+----------------------------------------------------------------------------------------------------------------------------------------+
| L1OPS | L1 operator signoff requested. |
+----------------------+----------------------------------------------------------------------------------------------------------------------------------------+
| LLAMA_COMPLETE | LLAMA has completed annotating the superevent. |
+----------------------+----------------------------------------------------------------------------------------------------------------------------------------+
| LUMIN_GO | Trigger satisfies basic automated checks and should be vetted by humans. Replaced by ADVREQ |
+----------------------+----------------------------------------------------------------------------------------------------------------------------------------+
| LUMIN_NO | LUMIN No |
......
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
# Add labels for RAVBN in support of:
# https://git.ligo.org/computing/gracedb/server/-/issues/259
# Label names, default colors, and descriptions
LABELS = [
{'name': 'HIGH_PROFILE', 'defaultColor': 'red', 'description': 'Superevent satisfies the condition to convene the full Level 2 RRT ASAP.'},
]
def add_labels(apps, schema_editor):
Label = apps.get_model('events', 'Label')
# Create labels
for label_dict in LABELS:
l, created = Label.objects.get_or_create(name=label_dict['name'])
l.defaultColor = label_dict['defaultColor']
l.description = label_dict['description']
l.save()
def remove_labels(apps, schema_editor):
Label = apps.get_model('events', 'Label')
# Delete labels
Label.objects.filter(name__in=[l['name'] for l in LABELS]).delete()
class Migration(migrations.Migration):
dependencies = [
('events', '0071_auto_20230221_1944')
]
operations = [
migrations.RunPython(add_labels, remove_labels)
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-25 19:16
from __future__ import unicode_literals
from django.db import migrations
# Creates initial search instances
# Search names and descriptions
SEARCH_TYPES = [
{'name': 'SSM', 'description': 'SubSolar Mass Search'},
]
def add_searches(apps, schema_editor):
Search = apps.get_model('events', 'Search')
# Create searches
for search_dict in SEARCH_TYPES:
search, created = Search.objects.get_or_create(name=search_dict['name'])
if 'description' in search_dict:
search.description = search_dict['description']
search.save()
def remove_searches(apps, schema_editor):
Search = apps.get_model('events', 'Search')
# Delete searches
Search.objects.filter(name__in=[s['name'] for s in SEARCH_TYPES]).delete()
class Migration(migrations.Migration):
dependencies = [
('events', '0072_add_highpriority_label'),
]
operations = [
migrations.RunPython(add_searches, remove_searches),
]
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
# Add labels for RAVBN in support of:
# https://git.ligo.org/computing/gracedb/server/-/issues/259
# Label names, default colors, and descriptions
LABELS = [
{'name': 'LLAMA_COMPLETE', 'defaultColor': 'black', 'description': 'LLAMA has concluded annotating the superevent.'},
]
def add_labels(apps, schema_editor):
Label = apps.get_model('events', 'Label')
# Create labels
for label_dict in LABELS:
l, created = Label.objects.get_or_create(name=label_dict['name'])
l.defaultColor = label_dict['defaultColor']
l.description = label_dict['description']
l.save()
def remove_labels(apps, schema_editor):
Label = apps.get_model('events', 'Label')
# Delete labels
Label.objects.filter(name__in=[l['name'] for l in LABELS]).delete()
class Migration(migrations.Migration):
dependencies = [
('events', '0073_add_ssm_search')
]
operations = [
migrations.RunPython(add_labels, remove_labels)
]
......@@ -17,6 +17,18 @@
{% include "gracedb/event_detail_script.js" %}
</script>
<script type="text/javascript" class="init">
$(document).ready(function () {
$('#event-neighbors').DataTable({
paging:false,
searching:false,
info:false,
order: [[4, 'desc']],
});
});
</script>
{% endblock %}
{% block content %}
......
......@@ -10,7 +10,8 @@
<div id="gdb-table-neighbors">
<table class="table-hover table-condensed table-resp-gracedb shadow p-3 mb-5 rounded">
<table class="table-hover table-condensed table-resp-gracedb shadow p-3 mb-5 rounded"
id="event-neighbors">
<thead>
<tr>
<th colspan="12"> Neighbor Window: &nbsp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment