From f562ccc8782e6c25041d1d81efff4d0b0b02e2e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=9A=A8=EC=A7=84?= Date: Tue, 14 May 2024 16:44:18 +0900 Subject: [PATCH] feat: create_notification --- .../notification/notification_domain.py | 15 +- ara/domain/notification/type.py | 7 +- ara/infra/notification/notification_infra.py | 103 +++++++-- logs/http_access.log.2024-05-02.23-13-42 | 53 +++++ logs/http_access.log.2024-05-13.00-21-17 | 212 ++++++++++++++++++ 5 files changed, 353 insertions(+), 37 deletions(-) create mode 100644 logs/http_access.log.2024-05-02.23-13-42 create mode 100644 logs/http_access.log.2024-05-13.00-21-17 diff --git a/ara/domain/notification/notification_domain.py b/ara/domain/notification/notification_domain.py index fa53c4aa..2ee9c453 100644 --- a/ara/domain/notification/notification_domain.py +++ b/ara/domain/notification/notification_domain.py @@ -1,4 +1,4 @@ -from apps.core.models import Notification, NotificationReadLog +from apps.core.models import Comment from ara.domain.notification.type import NotificationInfo from ara.infra.notification.notification_infra import NotificationInfra @@ -11,14 +11,7 @@ def get_all_notifications(self, user_id: int) -> list[NotificationInfo]: return self.notification_infra.get_all_notifications(user_id) def get_unread_notifications(self, user_id: int) -> list[NotificationInfo]: - notifications = self.notification_infra.get_all_notifications(user_id) - return [ - notification - for notification in notifications - if NotificationReadLog.objects.filter( - notification=notification, read_by=user_id, is_read=False - ).exists() - ] + return self.notification_infra.get_unread_notifications(user_id) def read_all_notifications(self, user_id: int) -> None: return self.notification_infra.read_all_notifications(user_id) @@ -26,5 +19,5 @@ def read_all_notifications(self, user_id: int) -> None: def read_notification(self, user_id: int, notification_id: int) -> None: return self.notification_infra.read_notification(user_id, notification_id) - def create_notification(self, notification_info: NotificationInfo): - return self.notification_infra.create_notification(notification_info) + def create_notification(self, comment: Comment): + return self.notification_infra.create_notification(comment) diff --git a/ara/domain/notification/type.py b/ara/domain/notification/type.py index 0bc4fd70..f237b77b 100644 --- a/ara/domain/notification/type.py +++ b/ara/domain/notification/type.py @@ -1,16 +1,13 @@ from typing import Optional -from django.contrib.auth import get_user_model from pydantic import BaseModel from apps.core.models import Article, Comment, Notification -User = get_user_model() - -class NotificationReadLogInfo(BaseModel): # 사용 안하는데 ?? 그래도 적어두는게 낫겠죠 ?? +class NotificationReadLogInfo(BaseModel): is_read: bool - read_by: int # ??? 모르겠다 int ?? user ?? Foreign Key 인데 ?? + read_by: int notification: Notification class Config: diff --git a/ara/infra/notification/notification_infra.py b/ara/infra/notification/notification_infra.py index d53c452a..e67063d1 100644 --- a/ara/infra/notification/notification_infra.py +++ b/ara/infra/notification/notification_infra.py @@ -1,12 +1,13 @@ from apps.core.models import Article, Comment, Notification, NotificationReadLog +from apps.core.models.board import NameType from ara.domain.notification.type import NotificationInfo +from ara.firebase import fcm_notify_comment from ara.infra.django_infra import AraDjangoInfra class NotificationInfra(AraDjangoInfra[Notification]): - def __init__(self, user_id: int) -> None: + def __init__(self) -> None: super().__init__(Notification) - self.user_id = user_id def get_all_notifications(self, user_id: int) -> list[NotificationInfo]: queryset = Notification.objects.select_related( @@ -18,9 +19,19 @@ def get_all_notifications(self, user_id: int) -> list[NotificationInfo]: ) return [self._to_notification_info(notification) for notification in queryset] + def get_unread_notifications(self, user_id: int) -> list[NotificationInfo]: + notifications = self.notification_infra.get_all_notifications(user_id) + return [ + notification + for notification in notifications + if NotificationReadLog.objects.filter( + notification=notification, read_by=user_id, is_read=False + ).exists() + ] + def _to_notification_info(self, notification: Notification) -> NotificationInfo: return NotificationInfo( - id=notification.id, # 이렇게 써도 되나요? + id=notification.id, type=notification.type, title=notification.title, content=notification.content, @@ -43,26 +54,76 @@ def read_notification(self, user_id: int, notification_id: int) -> None: notification_read_log.is_read = True notification_read_log.save() - """ - ##수정해야함## - - def create_notification(self, article: Article, comment: Comment) -> None: - if comment.parent_comment: - parent_comment = comment.parent_comment - related_comment = parent_comment + def get_display_name(self, article: Article, profile: int): + if article.name_type == NameType.REALNAME: + return "실명" + elif article.name_type == NameType.REGULAR: + return "nickname" else: - related_comment = None + return "익명" + + def create_notification(self, comment: Comment) -> None: + def notify_article_commented(_parent_article: Article, _comment: Comment): + name = self.get_display_name(_parent_article, _comment.created_by_id) + title = f"{name} 님이 새로운 댓글을 작성했습니다." + + notification = Notification( + type="article_commented", + title=title, + content=_comment.content[:32], + related_article=_parent_article, + related_comment=None, + ) + notification.save() + + NotificationReadLog.objects.create( + read_by=_parent_article.created_by, + notification=notification, + ) - related_article = comment.parent_article if comment.parent_article else parent_comment.parent_article + fcm_notify_comment( + _parent_article.created_by, + title, + _comment.content[:32], + f"post/{_parent_article.id}", + ) - title = f"{article.title}에 새로운 {'대댓글' if parent_comment else '댓글'}이 작성되었습니다." - content = comment.content[:32] + def notify_comment_commented(_parent_article: Article, _comment: Comment): + name = self.get_display_name(_parent_article, _comment.created_by_id) + title = f"{name} 님이 새로운 대댓글을 작성했습니다." - Notification.objects.create( - type="comment_commented" if parent_comment else "article_commented", - title=title, - content=content, - related_article=related_article, - related_comment=related_comment, + notification = Notification( + type="comment_commented", + title=title, + content=_comment.content[:32], + related_article=_parent_article, + related_comment=_comment.parent_comment, + ) + notification.save() + + NotificationReadLog.objects.create( + read_by=_comment.parent_comment.created_by, + notification=notification, + ) + + fcm_notify_comment( + _comment.parent_comment.created_by, + title, + _comment.content[:32], + f"post/{_parent_article.id}", + ) + + article = ( + comment.parent_article + if comment.parent_article + else comment.parent_comment.parent_article ) - """ + + if comment.created_by != article.created_by: + notify_article_commented(article, comment) + + if ( + comment.parent_comment + and comment.created_by != comment.parent_comment.created_by + ): + notify_comment_commented(article, comment) diff --git a/logs/http_access.log.2024-05-02.23-13-42 b/logs/http_access.log.2024-05-02.23-13-42 new file mode 100644 index 00000000..87ff9737 --- /dev/null +++ b/logs/http_access.log.2024-05-02.23-13-42 @@ -0,0 +1,53 @@ +{"id": "bb6747f4-a47e-4ad4-b0e9-4cd726f46cb0", "level": "INFO", "time": "2024-05-02T10:40:59.762642", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/comments/1/vote_positive/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/1/vote_positive/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c87098ec-93b6-4acc-b01f-806a76af64c7", "level": "INFO", "time": "2024-05-02T10:41:00.355661", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "0", "path_info": "/api/comments/1/vote_positive/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/1/vote_positive/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "ec27fe846fca4ac2872d4027321119f3", "Server-Timing": "TimerPanel_utime;dur=108.33500000001095;desc=\"User CPU time\", TimerPanel_stime;dur=28.088999999994257;desc=\"System CPU time\", TimerPanel_total;dur=136.4240000000052;desc=\"Total CPU time\", TimerPanel_total_time;dur=308.0859580077231;desc=\"Elapsed time\", SQLPanel_sql_time;dur=38.15633291378617;desc=\"SQL 19 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5dc2ba79-0276-4b60-8842-57a1b1871a71", "level": "INFO", "time": "2024-05-02T10:41:00.762550", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/vote_positive/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/vote_positive/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3f552730-2500-419e-96e3-759c80bf2d14", "level": "INFO", "time": "2024-05-02T10:41:00.911609", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "0", "path_info": "/api/articles/1/vote_positive/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/vote_positive/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "f9d19b7a50cd4469ae6d444b303dbb5e", "Server-Timing": "TimerPanel_utime;dur=67.83799999999474;desc=\"User CPU time\", TimerPanel_stime;dur=4.024000000001138;desc=\"System CPU time\", TimerPanel_total;dur=71.86199999999587;desc=\"Total CPU time\", TimerPanel_total_time;dur=137.4029159778729;desc=\"Elapsed time\", SQLPanel_sql_time;dur=22.60679320897907;desc=\"SQL 17 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3b62c219-9eba-46b0-8a3b-9ee80a9ac909", "level": "INFO", "time": "2024-05-02T10:41:06.797375", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/comments/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b78f0bc4-c83a-4042-8f16-131b58b15e9f", "level": "INFO", "time": "2024-05-02T10:41:07.144774", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "71", "path_info": "/api/comments/", "remote_addr": "127.0.0.1", "content_type": "application/json", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/", "data": {}, "user": 4}, "response": {"status": 201, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "75477579036f45349003ae269fb1c1d9", "Server-Timing": "TimerPanel_utime;dur=136.3370000000117;desc=\"User CPU time\", TimerPanel_stime;dur=27.986999999995987;desc=\"System CPU time\", TimerPanel_total;dur=164.3240000000077;desc=\"Total CPU time\", TimerPanel_total_time;dur=282.4172500986606;desc=\"Elapsed time\", SQLPanel_sql_time;dur=28.415622771717608;desc=\"SQL 15 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "600", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "802f516a-befc-4708-b13c-45c7cd927981", "level": "INFO", "time": "2024-05-02T10:41:31.251839", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "bef47b832afb4962884d475bd09646a0", "Server-Timing": "TimerPanel_utime;dur=213.1469999999922;desc=\"User CPU time\", TimerPanel_stime;dur=30.744999999996026;desc=\"System CPU time\", TimerPanel_total;dur=243.89199999998823;desc=\"Total CPU time\", TimerPanel_total_time;dur=265.12183400336653;desc=\"Elapsed time\", SQLPanel_sql_time;dur=10.910750017501414;desc=\"SQL 10 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1497", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9b3e470b-612d-4c11-9b80-9bb4b435aa45", "level": "INFO", "time": "2024-05-02T10:41:31.337500", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e082ca022aa742b18bbef83e692255a7", "Server-Timing": "TimerPanel_utime;dur=41.206999999999994;desc=\"User CPU time\", TimerPanel_stime;dur=3.974999999996953;desc=\"System CPU time\", TimerPanel_total;dur=45.18199999999695;desc=\"Total CPU time\", TimerPanel_total_time;dur=45.17558391671628;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.554540988057852;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c314e7c0-1818-402b-b5bb-bc77d2083827", "level": "INFO", "time": "2024-05-02T10:41:31.522201", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "9693082a52e94c1c92c19ce2bd856d52", "Server-Timing": "TimerPanel_utime;dur=117.63799999999947;desc=\"User CPU time\", TimerPanel_stime;dur=23.441000000005374;desc=\"System CPU time\", TimerPanel_total;dur=141.07900000000484;desc=\"Total CPU time\", TimerPanel_total_time;dur=148.95920793060213;desc=\"Elapsed time\", SQLPanel_sql_time;dur=24.919665069319308;desc=\"SQL 15 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1497", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "fb22a55f-508e-4bbe-9ad9-876ce4bb7f95", "level": "INFO", "time": "2024-05-02T10:41:31.573545", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "502e8e000daa4ac2a17556ca4b66c66f", "Server-Timing": "TimerPanel_utime;dur=23.74600000000271;desc=\"User CPU time\", TimerPanel_stime;dur=2.0279999999957;desc=\"System CPU time\", TimerPanel_total;dur=25.77399999999841;desc=\"Total CPU time\", TimerPanel_total_time;dur=38.206499884836376;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.9522920958697796;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2977133c-6c4c-43d7-8417-19a9b0fad53d", "level": "INFO", "time": "2024-05-02T10:41:37.002447", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "2d240bef7f8c48c5b1b9a0d05516e5f2", "Server-Timing": "TimerPanel_utime;dur=26.465000000001737;desc=\"User CPU time\", TimerPanel_stime;dur=4.2810000000059745;desc=\"System CPU time\", TimerPanel_total;dur=30.74600000000771;desc=\"Total CPU time\", TimerPanel_total_time;dur=51.405166974291205;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.940501064993441;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "32e68d99-8d4a-47aa-a52b-4d2b95c19918", "level": "INFO", "time": "2024-05-02T10:42:05.866667", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2e46cf2a-5f20-473c-be48-b008bc88c888", "level": "INFO", "time": "2024-05-02T10:42:06.113634", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "191", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "application/json", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {}, "user": 4}, "response": {"status": 201, "headers": {"Content-Type": "application/json", "Location": "None", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "145655b6d2e14e1299f05ef731215d54", "Server-Timing": "TimerPanel_utime;dur=77.61400000001117;desc=\"User CPU time\", TimerPanel_stime;dur=7.094999999992524;desc=\"System CPU time\", TimerPanel_total;dur=84.7090000000037;desc=\"Total CPU time\", TimerPanel_total_time;dur=156.19904198683798;desc=\"Elapsed time\", SQLPanel_sql_time;dur=13.671583961695433;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "565", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "76db7e0c-0b04-4613-b60c-9b91098703a4", "level": "INFO", "time": "2024-05-02T10:42:06.128772", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/2/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/2/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3bd1f34e-9b1b-4d31-b4da-61e2e22cc24f", "level": "INFO", "time": "2024-05-02T10:42:06.350779", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/2/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/2/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, PUT, PATCH, DELETE, HEAD, OPTIONS", "djdt-store-id": "f8e1d2f20db84b1899852610310c22f3", "Server-Timing": "TimerPanel_utime;dur=136.36900000000196;desc=\"User CPU time\", TimerPanel_stime;dur=20.358999999999128;desc=\"System CPU time\", TimerPanel_total;dur=156.7280000000011;desc=\"Total CPU time\", TimerPanel_total_time;dur=216.2187920184806;desc=\"Elapsed time\", SQLPanel_sql_time;dur=13.312749215401709;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1843", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b9cc4144-e21f-462e-a644-bd2cbc9f52dd", "level": "INFO", "time": "2024-05-02T10:42:06.482697", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "d312881761e84c058babc90f445cbb7e", "Server-Timing": "TimerPanel_utime;dur=42.11999999999705;desc=\"User CPU time\", TimerPanel_stime;dur=3.9069999999981064;desc=\"System CPU time\", TimerPanel_total;dur=46.026999999995155;desc=\"Total CPU time\", TimerPanel_total_time;dur=43.11816592235118;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.9490399174392223;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f14c9cbf-4cdc-41d1-a0b8-9ffa883e2e33", "level": "INFO", "time": "2024-05-02T10:42:06.737105", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "ea498159bc594065bfb27c6cf4fdbb29", "Server-Timing": "TimerPanel_utime;dur=210.29199999999548;desc=\"User CPU time\", TimerPanel_stime;dur=25.905000000008727;desc=\"System CPU time\", TimerPanel_total;dur=236.1970000000042;desc=\"Total CPU time\", TimerPanel_total_time;dur=240.88420893531293;desc=\"Elapsed time\", SQLPanel_sql_time;dur=21.802625968120992;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "2914", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9910bddd-4476-42c3-bf2b-d24f475ea816", "level": "INFO", "time": "2024-05-02T10:42:06.784823", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "d1825c8e8dfb4b758e8bc29531320902", "Server-Timing": "TimerPanel_utime;dur=23.36999999999989;desc=\"User CPU time\", TimerPanel_stime;dur=1.5559999999936736;desc=\"System CPU time\", TimerPanel_total;dur=24.925999999993564;desc=\"Total CPU time\", TimerPanel_total_time;dur=35.446541965939105;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.866542083211243;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "187db438-b733-4b44-a6a4-3a25440042bf", "level": "INFO", "time": "2024-05-02T10:42:14.359206", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "69", "path_info": "/api/comments/", "remote_addr": "127.0.0.1", "content_type": "application/json", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/", "data": {}, "user": 4}, "response": {"status": 201, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "d9f10d8cb6d746eda84834a6ddc42f4a", "Server-Timing": "TimerPanel_utime;dur=130.2170000000018;desc=\"User CPU time\", TimerPanel_stime;dur=26.47500000000491;desc=\"System CPU time\", TimerPanel_total;dur=156.69200000000671;desc=\"Total CPU time\", TimerPanel_total_time;dur=267.37662497907877;desc=\"Elapsed time\", SQLPanel_sql_time;dur=26.184169109910727;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "598", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5902c918-9086-4f21-b0b9-d158509a6ba7", "level": "INFO", "time": "2024-05-02T10:42:27.042774", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "544f2fc4f5d441eaa14c68f83f26269e", "Server-Timing": "TimerPanel_utime;dur=38.11100000000067;desc=\"User CPU time\", TimerPanel_stime;dur=4.231000000004315;desc=\"System CPU time\", TimerPanel_total;dur=42.34200000000499;desc=\"Total CPU time\", TimerPanel_total_time;dur=55.44783303048462;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.119582892395556;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b3f2293a-0711-46b1-a366-e19fed66638e", "level": "INFO", "time": "2024-05-02T10:42:43.874463", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "198", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "application/json", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {}, "user": 4}, "response": {"status": 201, "headers": {"Content-Type": "application/json", "Location": "None", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "d451151f1baa494cac3fe972daeba7e0", "Server-Timing": "TimerPanel_utime;dur=80.55199999999729;desc=\"User CPU time\", TimerPanel_stime;dur=6.192999999996118;desc=\"System CPU time\", TimerPanel_total;dur=86.74499999999341;desc=\"Total CPU time\", TimerPanel_total_time;dur=141.51045808102936;desc=\"Elapsed time\", SQLPanel_sql_time;dur=13.126709032803774;desc=\"SQL 8 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "574", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1e8601e5-788d-49ad-affb-22bd1bb2bbea", "level": "INFO", "time": "2024-05-02T10:42:43.881892", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/3/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/3/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6936c3f6-b9e4-418c-b44e-d11a0720a995", "level": "INFO", "time": "2024-05-02T10:42:44.340411", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/3/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/3/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, PUT, PATCH, DELETE, HEAD, OPTIONS", "djdt-store-id": "a2364f855441407eb27d8b4be0fd5d75", "Server-Timing": "TimerPanel_utime;dur=291.6929999999951;desc=\"User CPU time\", TimerPanel_stime;dur=62.10499999998831;desc=\"System CPU time\", TimerPanel_total;dur=353.7979999999834;desc=\"Total CPU time\", TimerPanel_total_time;dur=452.09937496110797;desc=\"Elapsed time\", SQLPanel_sql_time;dur=39.78262492455542;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1742", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "8932a72a-3f83-4111-9a2d-ee73f02dbf11", "level": "INFO", "time": "2024-05-02T10:42:44.464755", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "8c2dff2454f742ab896325a5e312be3f", "Server-Timing": "TimerPanel_utime;dur=41.17800000000216;desc=\"User CPU time\", TimerPanel_stime;dur=4.118000000005395;desc=\"System CPU time\", TimerPanel_total;dur=45.29600000000755;desc=\"Total CPU time\", TimerPanel_total_time;dur=42.10225003771484;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.3729160204529762;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4d2a7d5e-bcd4-4a59-9544-62ee1024ff3b", "level": "INFO", "time": "2024-05-02T10:42:44.643510", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "f6306f7aaf82489098e2650c9330cca7", "Server-Timing": "TimerPanel_utime;dur=132.6609999999988;desc=\"User CPU time\", TimerPanel_stime;dur=23.765999999994847;desc=\"System CPU time\", TimerPanel_total;dur=156.42699999999365;desc=\"Total CPU time\", TimerPanel_total_time;dur=163.43454201705754;desc=\"Elapsed time\", SQLPanel_sql_time;dur=28.470915276557207;desc=\"SQL 15 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4260", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2de2752f-2093-4dc3-8932-2c14ca3e6d7d", "level": "INFO", "time": "2024-05-02T10:42:44.695363", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "6dedb0c5e1714cec85b4ab1c52c9f360", "Server-Timing": "TimerPanel_utime;dur=23.891999999989366;desc=\"User CPU time\", TimerPanel_stime;dur=2.0580000000052223;desc=\"System CPU time\", TimerPanel_total;dur=25.94999999999459;desc=\"Total CPU time\", TimerPanel_total_time;dur=40.64233403187245;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.3733751149848104;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b0e9f50f-db03-4fba-988c-b18dcb481b5b", "level": "INFO", "time": "2024-05-02T10:42:48.650460", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "941b55f0bca946dca8e918bb3bceda22", "Server-Timing": "TimerPanel_utime;dur=82.31600000000583;desc=\"User CPU time\", TimerPanel_stime;dur=9.089999999986276;desc=\"System CPU time\", TimerPanel_total;dur=91.4059999999921;desc=\"Total CPU time\", TimerPanel_total_time;dur=87.53825002349913;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.73641702067107;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "8e21e4dc-696b-44f7-b797-95a40c859df4", "level": "INFO", "time": "2024-05-02T10:42:48.658890", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "b846b20d67a747f383369b413d9ef0a4", "Server-Timing": "TimerPanel_utime;dur=105.97400000000334;desc=\"User CPU time\", TimerPanel_stime;dur=10.66800000000967;desc=\"System CPU time\", TimerPanel_total;dur=116.64200000001301;desc=\"Total CPU time\", TimerPanel_total_time;dur=113.68420801591128;desc=\"Elapsed time\", SQLPanel_sql_time;dur=26.52558300178498;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "32496d64-af3c-4242-8aa1-4293198d1a5a", "level": "INFO", "time": "2024-05-02T10:42:48.954096", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "065d2dcb85ae49139f17e3f52df2f8e1", "Server-Timing": "TimerPanel_utime;dur=28.70099999999809;desc=\"User CPU time\", TimerPanel_stime;dur=3.099000000005958;desc=\"System CPU time\", TimerPanel_total;dur=31.800000000004047;desc=\"Total CPU time\", TimerPanel_total_time;dur=55.90920790564269;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.896999125368893;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6e7e4e5a-854c-4eec-b344-96f02bb5de7a", "level": "INFO", "time": "2024-05-02T10:45:46.760864", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/top/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/top/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f0b12c58-e04c-4dfd-ad4c-afbc3ebe6659", "level": "INFO", "time": "2024-05-02T10:45:46.953251", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/top/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/top/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "1fef6f760ab44d858f38889da736fcb5", "Server-Timing": "TimerPanel_utime;dur=48.85699999999815;desc=\"User CPU time\", TimerPanel_stime;dur=26.251999999999498;desc=\"System CPU time\", TimerPanel_total;dur=75.10899999999765;desc=\"Total CPU time\", TimerPanel_total_time;dur=63.39716596994549;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.047790938988328;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6346a9b9-05e6-4618-bd83-4f84bcfe506c", "level": "INFO", "time": "2024-05-02T10:45:47.035953", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "9cce7962843f4f65affbf172dcbf6639", "Server-Timing": "TimerPanel_utime;dur=41.17700000000468;desc=\"User CPU time\", TimerPanel_stime;dur=4.797999999993863;desc=\"System CPU time\", TimerPanel_total;dur=45.974999999998545;desc=\"Total CPU time\", TimerPanel_total_time;dur=45.587708009406924;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.0126660130918026;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c592dded-2f52-4ee7-90a4-c06ac4929b21", "level": "INFO", "time": "2024-05-02T10:45:47.198619", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "6e48c909d2e14c41824d41c2534f61d0", "Server-Timing": "TimerPanel_utime;dur=115.52399999999352;desc=\"User CPU time\", TimerPanel_stime;dur=26.998000000006073;desc=\"System CPU time\", TimerPanel_total;dur=142.5219999999996;desc=\"Total CPU time\", TimerPanel_total_time;dur=151.5418749768287;desc=\"Elapsed time\", SQLPanel_sql_time;dur=30.80770920496434;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4260", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "41fabbb6-a9e7-406f-bff8-c5799915acd0", "level": "INFO", "time": "2024-05-02T10:45:47.246810", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "db770f0b65d14b61bd3c3e5418b4dbcf", "Server-Timing": "TimerPanel_utime;dur=24.005999999999972;desc=\"User CPU time\", TimerPanel_stime;dur=2.028999999993175;desc=\"System CPU time\", TimerPanel_total;dur=26.034999999993147;desc=\"Total CPU time\", TimerPanel_total_time;dur=35.982458968646824;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.437875002622604;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "104f926e-8687-4c88-869c-a634debc8a1b", "level": "INFO", "time": "2024-05-02T10:45:48.923715", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/3/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/3/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "ebbecd04-cc44-44a6-b34e-3b849507c8a6", "level": "INFO", "time": "2024-05-02T10:45:49.349254", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/3/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/3/", "data": {"from_view": "recent"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, PUT, PATCH, DELETE, HEAD, OPTIONS", "djdt-store-id": "9e4982ab61af44f89695e33166084d34", "Server-Timing": "TimerPanel_utime;dur=230.21499999998696;desc=\"User CPU time\", TimerPanel_stime;dur=43.542999999999665;desc=\"System CPU time\", TimerPanel_total;dur=273.7579999999866;desc=\"Total CPU time\", TimerPanel_total_time;dur=362.8977909684181;desc=\"Elapsed time\", SQLPanel_sql_time;dur=28.8609997369349;desc=\"SQL 18 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "2685", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f50173cd-99d0-47dc-9cc9-964b53a3ae84", "level": "INFO", "time": "2024-05-02T10:45:49.441907", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "bee4f752e41e4068bcab37094a6bc899", "Server-Timing": "TimerPanel_utime;dur=44.33699999999874;desc=\"User CPU time\", TimerPanel_stime;dur=4.833000000004972;desc=\"System CPU time\", TimerPanel_total;dur=49.17000000000371;desc=\"Total CPU time\", TimerPanel_total_time;dur=50.23704096674919;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.584416932426393;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9b397577-a45b-49a6-8697-d65b3182f753", "level": "INFO", "time": "2024-05-02T10:45:49.667019", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "80fad7f60c184e30ba7be1549180abce", "Server-Timing": "TimerPanel_utime;dur=115.3889999999933;desc=\"User CPU time\", TimerPanel_stime;dur=24.604999999993993;desc=\"System CPU time\", TimerPanel_total;dur=139.9939999999873;desc=\"Total CPU time\", TimerPanel_total_time;dur=148.49112497176975;desc=\"Elapsed time\", SQLPanel_sql_time;dur=21.74579177517444;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4260", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "958d209d-0747-40dc-ace2-81cca800947e", "level": "INFO", "time": "2024-05-02T10:45:49.717688", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "0dfe9c83a23f4e78a7d4b69079f332d7", "Server-Timing": "TimerPanel_utime;dur=22.74300000000551;desc=\"User CPU time\", TimerPanel_stime;dur=1.9670000000076016;desc=\"System CPU time\", TimerPanel_total;dur=24.71000000001311;desc=\"Total CPU time\", TimerPanel_total_time;dur=37.02062496449798;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.4446250647306442;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b14a114b-005a-4f4c-9395-332fc0869429", "level": "INFO", "time": "2024-05-02T10:45:50.322513", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/2/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/2/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b8f8a7c6-3b0f-47ab-b7be-026f5e78751b", "level": "INFO", "time": "2024-05-02T10:45:50.668424", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/2/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/2/", "data": {"from_view": "recent"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, PUT, PATCH, DELETE, HEAD, OPTIONS", "djdt-store-id": "1802ad6823b64bdeadb83af59e2ec2d8", "Server-Timing": "TimerPanel_utime;dur=219.8060000000055;desc=\"User CPU time\", TimerPanel_stime;dur=7.911000000007107;desc=\"System CPU time\", TimerPanel_total;dur=227.7170000000126;desc=\"Total CPU time\", TimerPanel_total_time;dur=334.58208304364234;desc=\"Elapsed time\", SQLPanel_sql_time;dur=41.35050089098513;desc=\"SQL 21 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4348", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5c82d465-fb83-43cf-ab59-fcbc8f03edb6", "level": "INFO", "time": "2024-05-02T10:45:50.765369", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "385da6d4a83c447397b7571b1a72b7b8", "Server-Timing": "TimerPanel_utime;dur=42.214000000001306;desc=\"User CPU time\", TimerPanel_stime;dur=3.702000000004091;desc=\"System CPU time\", TimerPanel_total;dur=45.9160000000054;desc=\"Total CPU time\", TimerPanel_total_time;dur=57.90399992838502;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.8032500306144357;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "373b89f3-8212-4ae9-bce5-823090b6a8fb", "level": "INFO", "time": "2024-05-02T10:45:50.814126", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "7fbe09a01fba46afa1e9a3079088a8c4", "Server-Timing": "TimerPanel_utime;dur=83.13800000000526;desc=\"User CPU time\", TimerPanel_stime;dur=5.291999999997188;desc=\"System CPU time\", TimerPanel_total;dur=88.43000000000245;desc=\"Total CPU time\", TimerPanel_total_time;dur=107.06850001588464;desc=\"Elapsed time\", SQLPanel_sql_time;dur=21.550833946093917;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4260", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "558333c3-0669-457d-9fe6-a9b9bfdf7ef4", "level": "INFO", "time": "2024-05-02T10:45:50.862842", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "4ca7cca6206548aba058bcfdb574bad7", "Server-Timing": "TimerPanel_utime;dur=23.21799999999996;desc=\"User CPU time\", TimerPanel_stime;dur=1.6150000000010323;desc=\"System CPU time\", TimerPanel_total;dur=24.833000000000993;desc=\"Total CPU time\", TimerPanel_total_time;dur=37.8790000686422;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.860124921426177;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "d8dab4e4-2c60-4a0f-984d-4a425f79578c", "level": "INFO", "time": "2024-05-02T10:45:54.831000", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1fe8b759-402d-4e61-bdd2-a73e0bffd4a4", "level": "INFO", "time": "2024-05-02T10:45:55.285762", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "data": {"from_view": "recent"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, PUT, PATCH, DELETE, HEAD, OPTIONS", "djdt-store-id": "b42eb32834154d93ab13a2252e99937a", "Server-Timing": "TimerPanel_utime;dur=232.52399999999795;desc=\"User CPU time\", TimerPanel_stime;dur=31.84700000001328;desc=\"System CPU time\", TimerPanel_total;dur=264.37100000001124;desc=\"Total CPU time\", TimerPanel_total_time;dur=363.17287501879036;desc=\"Elapsed time\", SQLPanel_sql_time;dur=36.66812495794147;desc=\"SQL 21 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4772", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2e0d9552-e511-4c09-a8ab-db6173137c20", "level": "INFO", "time": "2024-05-02T10:45:55.375759", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "83003f4da2414b719be8574ce5be16c7", "Server-Timing": "TimerPanel_utime;dur=42.20499999999561;desc=\"User CPU time\", TimerPanel_stime;dur=5.113999999991847;desc=\"System CPU time\", TimerPanel_total;dur=47.318999999987454;desc=\"Total CPU time\", TimerPanel_total_time;dur=43.85908297263086;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.7978330617770553;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4982b8bb-abd8-4409-8534-0e4372b5b7ac", "level": "INFO", "time": "2024-05-02T10:45:55.667164", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "ddecad5d0ec94c5eb45511a70817db30", "Server-Timing": "TimerPanel_utime;dur=249.96699999999805;desc=\"User CPU time\", TimerPanel_stime;dur=25.097999999999843;desc=\"System CPU time\", TimerPanel_total;dur=275.0649999999979;desc=\"Total CPU time\", TimerPanel_total_time;dur=282.2195829357952;desc=\"Elapsed time\", SQLPanel_sql_time;dur=22.084124153479934;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4260", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6bd6ac20-5cdd-4bac-b7fb-7c95b2d23c7a", "level": "INFO", "time": "2024-05-02T10:45:55.718139", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "515df67fc0464beea3c16d16240c7d5c", "Server-Timing": "TimerPanel_utime;dur=24.571999999992045;desc=\"User CPU time\", TimerPanel_stime;dur=2.174999999994043;desc=\"System CPU time\", TimerPanel_total;dur=26.746999999986087;desc=\"Total CPU time\", TimerPanel_total_time;dur=36.96458297781646;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.196582965552807;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "0db51aef-fe64-4e2f-b215-60e1e625ca3e", "level": "INFO", "time": "2024-05-02T10:45:59.820657", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/comments/1/vote_negative/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/1/vote_negative/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f6ce6329-c5dc-4cb3-8c43-a74ce11f5148", "level": "INFO", "time": "2024-05-02T10:46:00.124231", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "0", "path_info": "/api/comments/1/vote_negative/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/1/vote_negative/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "8325dc54e96f429296840d9cf1a0edb0", "Server-Timing": "TimerPanel_utime;dur=132.44000000000256;desc=\"User CPU time\", TimerPanel_stime;dur=8.258999999995353;desc=\"System CPU time\", TimerPanel_total;dur=140.6989999999979;desc=\"Total CPU time\", TimerPanel_total_time;dur=234.37354201450944;desc=\"Elapsed time\", SQLPanel_sql_time;dur=34.79141916614026;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "75822689-4bff-41bb-a221-0399d9d6a716", "level": "INFO", "time": "2024-05-02T11:05:17.863175", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "97", "path_info": "/api/comments/", "remote_addr": "127.0.0.1", "content_type": "application/json", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/", "data": {}, "user": 4}, "response": {"status": 201, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "dedc979bb3c94989ab6b29b34c738c43", "Server-Timing": "TimerPanel_utime;dur=263.17899999999383;desc=\"User CPU time\", TimerPanel_stime;dur=76.1449999999968;desc=\"System CPU time\", TimerPanel_total;dur=339.32399999999063;desc=\"Total CPU time\", TimerPanel_total_time;dur=666.8697079876438;desc=\"Elapsed time\", SQLPanel_sql_time;dur=104.41137722227722;desc=\"SQL 17 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "626", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "55e83d4b-4e7b-47f3-89b7-cd0d1f6bcd48", "level": "INFO", "time": "2024-05-02T11:05:24.157330", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "91", "path_info": "/api/comments/", "remote_addr": "127.0.0.1", "content_type": "application/json", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/", "data": {}, "user": 4}, "response": {"status": 201, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "5d51a5204e28474a9986d41fca2779b5", "Server-Timing": "TimerPanel_utime;dur=146.98699999999576;desc=\"User CPU time\", TimerPanel_stime;dur=28.020000000012146;desc=\"System CPU time\", TimerPanel_total;dur=175.0070000000079;desc=\"Total CPU time\", TimerPanel_total_time;dur=278.3754999982193;desc=\"Elapsed time\", SQLPanel_sql_time;dur=33.436251105740666;desc=\"SQL 15 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "620", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} diff --git a/logs/http_access.log.2024-05-13.00-21-17 b/logs/http_access.log.2024-05-13.00-21-17 new file mode 100644 index 00000000..06d6be7d --- /dev/null +++ b/logs/http_access.log.2024-05-13.00-21-17 @@ -0,0 +1,212 @@ +{"id": "077c7317-1f8e-4fa8-9758-697ea1e4fc97", "level": "INFO", "time": "2024-05-13T23:13:42.145705", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "192.168.11.183", "content_type": "text/plain", "http_host": "192.168.11.183:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://localhost:8081/login-handler?link=http://localhost:8081/"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=a16a1c09058a0f4fdcba", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "39180c8b141c42a989cda3ff826f3806", "Server-Timing": "TimerPanel_utime;dur=27.42100000000014;desc=\"User CPU time\", TimerPanel_stime;dur=9.904000000000025;desc=\"System CPU time\", TimerPanel_total;dur=37.325000000000166;desc=\"Total CPU time\", TimerPanel_total_time;dur=34.256957937031984;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "fff2cc43-8a39-440c-820d-dec2aad56b0f", "level": "WARNING", "time": "2024-05-13T23:13:42.688006", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "da3ef9bd6bc153364a41", "state": "a16a1c09058a0f4fdcba", "preferred_url": "None"}, "user": null}, "response": {"status": 401, "headers": {"Content-Type": "text/html; charset=utf-8", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "c191be4cd8fb4e6ba0e66db362ef68aa", "Server-Timing": "TimerPanel_utime;dur=134.59700000000007;desc=\"User CPU time\", TimerPanel_stime;dur=61.88100000000007;desc=\"System CPU time\", TimerPanel_total;dur=196.47800000000012;desc=\"Total CPU time\", TimerPanel_total_time;dur=217.31141698546708;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.244040861725807;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "20530", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "37eb7706-36f1-4be5-9060-6091bdd93c64", "level": "INFO", "time": "2024-05-13T23:14:04.338486", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "92ab70f6-2687-4af6-8652-e7b9ea4fffca", "level": "WARNING", "time": "2024-05-13T23:14:04.428816", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "9796da921e1d41e0b94d7dbd5d7484a7", "Server-Timing": "TimerPanel_utime;dur=7.447999999999677;desc=\"User CPU time\", TimerPanel_stime;dur=2.036000000000149;desc=\"System CPU time\", TimerPanel_total;dur=9.483999999999826;desc=\"Total CPU time\", TimerPanel_total_time;dur=9.666290832683444;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e370a2be-3d6c-4ef3-b4a8-4382ed89d230", "level": "INFO", "time": "2024-05-13T23:14:07.375956", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=884fd3e306642dc1a86e", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "11eac60e94c34813961c1cbef56111f9", "Server-Timing": "TimerPanel_utime;dur=9.07300000000033;desc=\"User CPU time\", TimerPanel_stime;dur=5.0840000000000884;desc=\"System CPU time\", TimerPanel_total;dur=14.15700000000042;desc=\"Total CPU time\", TimerPanel_total_time;dur=14.646042138338089;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "7b8d1e24-320f-4abc-8240-9427e858c0ae", "level": "INFO", "time": "2024-05-13T23:14:08.697697", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "6e00c038076f08e05156", "state": "884fd3e306642dc1a86e", "preferred_url": "None"}, "user": 1}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "2d52c151c5664e36b54e01a095dd725d", "Server-Timing": "TimerPanel_utime;dur=212.3210000000002;desc=\"User CPU time\", TimerPanel_stime;dur=73.12600000000002;desc=\"System CPU time\", TimerPanel_total;dur=285.44700000000023;desc=\"Total CPU time\", TimerPanel_total_time;dur=1021.6132921632379;desc=\"Elapsed time\", SQLPanel_sql_time;dur=57.36883217468858;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "8d41248d-a7bc-4120-8c7d-1edc082badfe", "level": "INFO", "time": "2024-05-13T23:14:09.403553", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "24a8fb17063d44a79cf8a95c7e55c21e", "Server-Timing": "TimerPanel_utime;dur=198.39899999999977;desc=\"User CPU time\", TimerPanel_stime;dur=36.51199999999988;desc=\"System CPU time\", TimerPanel_total;dur=234.91099999999966;desc=\"Total CPU time\", TimerPanel_total_time;dur=282.8177500050515;desc=\"Elapsed time\", SQLPanel_sql_time;dur=12.976167257875204;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1515", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "dce44035-70db-4837-b443-96ab48367392", "level": "INFO", "time": "2024-05-13T23:14:09.412006", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f8edfd60-9542-4278-8b1e-8f247e1d9936", "level": "INFO", "time": "2024-05-13T23:14:09.491277", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "2bc189c058ab4e6fb5ce712422c57244", "Server-Timing": "TimerPanel_utime;dur=49.878999999999785;desc=\"User CPU time\", TimerPanel_stime;dur=2.036000000000149;desc=\"System CPU time\", TimerPanel_total;dur=51.914999999999935;desc=\"Total CPU time\", TimerPanel_total_time;dur=73.37345788255334;desc=\"Elapsed time\", SQLPanel_sql_time;dur=9.82179120182991;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "8672", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1d49b848-9e57-455f-91ee-c19034a928fb", "level": "INFO", "time": "2024-05-13T23:14:09.498899", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "29569448-b15a-487c-b617-0b8f6d2f7942", "level": "INFO", "time": "2024-05-13T23:14:09.585453", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "093558fb750544a1af70d60a1583441b", "Server-Timing": "TimerPanel_utime;dur=65.14199999999981;desc=\"User CPU time\", TimerPanel_stime;dur=16.508999999999887;desc=\"System CPU time\", TimerPanel_total;dur=81.6509999999997;desc=\"Total CPU time\", TimerPanel_total_time;dur=78.7302500102669;desc=\"Elapsed time\", SQLPanel_sql_time;dur=9.889082983136177;desc=\"SQL 8 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1627", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e3c43cda-404a-4ebf-b038-fdcbefdd9b94", "level": "INFO", "time": "2024-05-13T23:14:09.594250", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c50333e5-640d-47bd-a683-1eaeb8c21371", "level": "INFO", "time": "2024-05-13T23:14:09.595514", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "8657fac5-d793-439b-a0ad-705c84c7f61e", "level": "INFO", "time": "2024-05-13T23:14:09.665235", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "943b96d722c54b40b14f5d62941e5e3d", "Server-Timing": "TimerPanel_utime;dur=55.93300000000001;desc=\"User CPU time\", TimerPanel_stime;dur=3.9370000000000793;desc=\"System CPU time\", TimerPanel_total;dur=59.87000000000009;desc=\"Total CPU time\", TimerPanel_total_time;dur=60.10454101487994;desc=\"Elapsed time\", SQLPanel_sql_time;dur=7.770499913021922;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5899414f-35ef-48bc-b4aa-2e0a22604c86", "level": "INFO", "time": "2024-05-13T23:14:09.760248", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "d266b2f152f848e991f5eb357d50d7a0", "Server-Timing": "TimerPanel_utime;dur=84.73900000000035;desc=\"User CPU time\", TimerPanel_stime;dur=5.037999999999876;desc=\"System CPU time\", TimerPanel_total;dur=89.77700000000021;desc=\"Total CPU time\", TimerPanel_total_time;dur=93.28312519937754;desc=\"Elapsed time\", SQLPanel_sql_time;dur=9.793915785849094;desc=\"SQL 6 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "7ae540ce-0cf2-40d8-b09a-2d097aa38332", "level": "INFO", "time": "2024-05-13T23:14:09.842998", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "423b8a85-99d8-4ff0-a47c-4001874e3ffd", "level": "INFO", "time": "2024-05-13T23:14:09.909424", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "7e3b05fd91d64c8292943f86fe7ccf60", "Server-Timing": "TimerPanel_utime;dur=31.50900000000023;desc=\"User CPU time\", TimerPanel_stime;dur=2.9529999999999834;desc=\"System CPU time\", TimerPanel_total;dur=34.46200000000022;desc=\"Total CPU time\", TimerPanel_total_time;dur=57.646041037514806;desc=\"Elapsed time\", SQLPanel_sql_time;dur=7.880416931584477;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "074481c1-8ab2-4bb0-a785-452deab1126a", "level": "INFO", "time": "2024-05-13T23:14:12.226980", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "22e0d2f993b345479e76dc2cf7285089", "Server-Timing": "TimerPanel_utime;dur=27.58399999999961;desc=\"User CPU time\", TimerPanel_stime;dur=3.303000000000056;desc=\"System CPU time\", TimerPanel_total;dur=30.886999999999666;desc=\"Total CPU time\", TimerPanel_total_time;dur=49.208167009055614;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.6542908530682325;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "a7be11e1-a37f-450e-a4a3-d81888e85068", "level": "INFO", "time": "2024-05-13T23:14:21.972039", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e5599e97c01b412cb83eb649e1f82086", "Server-Timing": "TimerPanel_utime;dur=70.22400000000006;desc=\"User CPU time\", TimerPanel_stime;dur=10.869999999999935;desc=\"System CPU time\", TimerPanel_total;dur=81.094;desc=\"Total CPU time\", TimerPanel_total_time;dur=88.49579188972712;desc=\"Elapsed time\", SQLPanel_sql_time;dur=10.605124989524484;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "627d519b-f1b2-4de8-bc5e-5af287f7703a", "level": "INFO", "time": "2024-05-13T23:14:21.972548", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "cd769cd0959f473c867ca649189e78ba", "Server-Timing": "TimerPanel_utime;dur=91.47300000000014;desc=\"User CPU time\", TimerPanel_stime;dur=11.626000000000136;desc=\"System CPU time\", TimerPanel_total;dur=103.09900000000027;desc=\"Total CPU time\", TimerPanel_total_time;dur=110.27187504805624;desc=\"Elapsed time\", SQLPanel_sql_time;dur=11.878706747666001;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "fcb4f50c-9d0d-4599-be72-8664ac930d82", "level": "INFO", "time": "2024-05-13T23:14:22.079221", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "c822f5cbdec84f9bb623661ad9f47e79", "Server-Timing": "TimerPanel_utime;dur=37.28400000000009;desc=\"User CPU time\", TimerPanel_stime;dur=15.905000000000058;desc=\"System CPU time\", TimerPanel_total;dur=53.18900000000015;desc=\"Total CPU time\", TimerPanel_total_time;dur=44.48579088784754;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.0620011277496815;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4dfb3288-eb53-42ff-802b-89ccce919ce4", "level": "INFO", "time": "2024-05-13T23:14:23.477180", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9db5f02e-9c8b-4a90-a3a7-c10f415ed783", "level": "INFO", "time": "2024-05-13T23:14:23.776225", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "02c497c353ff41149bebc0c44099c0cc", "Server-Timing": "TimerPanel_utime;dur=226.769;desc=\"User CPU time\", TimerPanel_stime;dur=27.202999999999868;desc=\"System CPU time\", TimerPanel_total;dur=253.97199999999987;desc=\"Total CPU time\", TimerPanel_total_time;dur=290.24724988266826;desc=\"Elapsed time\", SQLPanel_sql_time;dur=14.56424966454506;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4260", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "94c23155-7a58-482d-b299-65d5b655daf9", "level": "INFO", "time": "2024-05-13T23:14:23.816718", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4884472f-05d3-43b4-a4e4-d3fa4b12d0c6", "level": "INFO", "time": "2024-05-13T23:14:23.879283", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "f679f36fc28b45be885022a5b9b9bd43", "Server-Timing": "TimerPanel_utime;dur=46.61300000000024;desc=\"User CPU time\", TimerPanel_stime;dur=3.9529999999998733;desc=\"System CPU time\", TimerPanel_total;dur=50.566000000000116;desc=\"Total CPU time\", TimerPanel_total_time;dur=59.40250004641712;desc=\"Elapsed time\", SQLPanel_sql_time;dur=13.808251125738025;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f06d261c-c05d-4196-b532-8e97600b6462", "level": "INFO", "time": "2024-05-13T23:14:24.018908", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "dde98f4e8ac7471da9813722c0d93d14", "Server-Timing": "TimerPanel_utime;dur=149.06799999999976;desc=\"User CPU time\", TimerPanel_stime;dur=25.361999999999885;desc=\"System CPU time\", TimerPanel_total;dur=174.42999999999964;desc=\"Total CPU time\", TimerPanel_total_time;dur=195.83195820450783;desc=\"Elapsed time\", SQLPanel_sql_time;dur=38.08391490019858;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1497", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "644b492d-9fe0-479e-ab59-bae3ca6a37fd", "level": "INFO", "time": "2024-05-13T23:14:24.025596", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "28769cd3-52c2-44fe-91f7-7efdd66f55a8", "level": "INFO", "time": "2024-05-13T23:14:24.075100", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "05abc833332947b7a90625549a664fc9", "Server-Timing": "TimerPanel_utime;dur=24.878000000000178;desc=\"User CPU time\", TimerPanel_stime;dur=1.6960000000001418;desc=\"System CPU time\", TimerPanel_total;dur=26.574000000000318;desc=\"Total CPU time\", TimerPanel_total_time;dur=41.07308387756348;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.3694577869027853;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "11aa1a92-776b-4d61-ab38-94cbd114fcdd", "level": "INFO", "time": "2024-05-13T23:14:25.783728", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2ac64f90-02fe-42aa-b2f5-afd746a3176a", "level": "INFO", "time": "2024-05-13T23:14:26.170137", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "data": {"from_view": "all", "current": "1"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, PUT, PATCH, DELETE, HEAD, OPTIONS", "djdt-store-id": "8d86514db90c401d8143064371cbf6a0", "Server-Timing": "TimerPanel_utime;dur=202.10400000000027;desc=\"User CPU time\", TimerPanel_stime;dur=9.47000000000009;desc=\"System CPU time\", TimerPanel_total;dur=211.57400000000035;desc=\"Total CPU time\", TimerPanel_total_time;dur=378.95129108801484;desc=\"Elapsed time\", SQLPanel_sql_time;dur=43.78395900130272;desc=\"SQL 21 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "6278", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "bcf7cfda-2fec-457d-b5c6-62a7e917aa5a", "level": "INFO", "time": "2024-05-13T23:14:26.299729", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "cdca418c60b44f92af6964701dbff7f1", "Server-Timing": "TimerPanel_utime;dur=72.00899999999955;desc=\"User CPU time\", TimerPanel_stime;dur=15.720999999999874;desc=\"System CPU time\", TimerPanel_total;dur=87.72999999999942;desc=\"Total CPU time\", TimerPanel_total_time;dur=82.23608299158514;desc=\"Elapsed time\", SQLPanel_sql_time;dur=12.014624197036028;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "849f9727-fc18-474e-98a0-30daf8b7a2f6", "level": "INFO", "time": "2024-05-13T23:14:26.708494", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "7e2a78d0ec5343ca80e1db577aa501f2", "Server-Timing": "TimerPanel_utime;dur=300.2659999999997;desc=\"User CPU time\", TimerPanel_stime;dur=114.01299999999992;desc=\"System CPU time\", TimerPanel_total;dur=414.2789999999996;desc=\"Total CPU time\", TimerPanel_total_time;dur=360.48662499524653;desc=\"Elapsed time\", SQLPanel_sql_time;dur=33.66812155582011;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1497", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3decf825-af3b-49cc-a632-a54d83cc096b", "level": "INFO", "time": "2024-05-13T23:14:26.760102", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "278e91e0bd2d4974958eb5c7602ceaf3", "Server-Timing": "TimerPanel_utime;dur=29.11700000000028;desc=\"User CPU time\", TimerPanel_stime;dur=10.826000000000224;desc=\"System CPU time\", TimerPanel_total;dur=39.94300000000051;desc=\"Total CPU time\", TimerPanel_total_time;dur=40.63912504352629;desc=\"Elapsed time\", SQLPanel_sql_time;dur=6.849667057394981;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f6b71bc8-2e6c-4d95-8dcb-a0256a6f51ca", "level": "INFO", "time": "2024-05-13T23:14:32.864475", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5c86d63a-a658-41b6-a573-7d6b5f5b0bfb", "level": "INFO", "time": "2024-05-13T23:14:33.052041", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "f2e044bc540f47118e53f6a5824cb561", "Server-Timing": "TimerPanel_utime;dur=71.41999999999982;desc=\"User CPU time\", TimerPanel_stime;dur=4.987000000000297;desc=\"System CPU time\", TimerPanel_total;dur=76.40700000000011;desc=\"Total CPU time\", TimerPanel_total_time;dur=95.7360421307385;desc=\"Elapsed time\", SQLPanel_sql_time;dur=9.003583109006286;desc=\"SQL 7 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "3616", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e07e1889-7524-408b-b1da-e8ad087834df", "level": "INFO", "time": "2024-05-13T23:14:33.136643", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "99ed70039e434039af527ebbf3f1f883", "Server-Timing": "TimerPanel_utime;dur=25.06399999999953;desc=\"User CPU time\", TimerPanel_stime;dur=1.762999999999959;desc=\"System CPU time\", TimerPanel_total;dur=26.82699999999949;desc=\"Total CPU time\", TimerPanel_total_time;dur=51.274708937853575;desc=\"Elapsed time\", SQLPanel_sql_time;dur=1.8790417816489935;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6fcc9e72-94dc-4699-96e2-191730e0fb6f", "level": "INFO", "time": "2024-05-13T23:15:00.222947", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/1/read/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/1/read/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "bf052511-2c32-480c-86b0-10429a1156c1", "level": "INFO", "time": "2024-05-13T23:15:00.527625", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "0", "path_info": "/api/notifications/1/read/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/1/read/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "94bfce9241804fd0a4c07c30bb614294", "Server-Timing": "TimerPanel_utime;dur=67.34699999999982;desc=\"User CPU time\", TimerPanel_stime;dur=5.323000000000189;desc=\"System CPU time\", TimerPanel_total;dur=72.67000000000002;desc=\"Total CPU time\", TimerPanel_total_time;dur=100.75316694565117;desc=\"Elapsed time\", SQLPanel_sql_time;dur=15.468751545995474;desc=\"SQL 8 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9a419dfc-31d1-4c24-b0d6-7cdbd22cbb85", "level": "INFO", "time": "2024-05-13T23:15:00.542373", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e6f07f41-424e-4509-b13e-6c6ae9708433", "level": "INFO", "time": "2024-05-13T23:15:00.760527", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "data": {"from_view": "all"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, PUT, PATCH, DELETE, HEAD, OPTIONS", "djdt-store-id": "f44af4bb30bb444381091890b28224c2", "Server-Timing": "TimerPanel_utime;dur=115.11599999999956;desc=\"User CPU time\", TimerPanel_stime;dur=21.739000000000175;desc=\"System CPU time\", TimerPanel_total;dur=136.85499999999973;desc=\"Total CPU time\", TimerPanel_total_time;dur=212.10904186591506;desc=\"Elapsed time\", SQLPanel_sql_time;dur=27.518122224137187;desc=\"SQL 18 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "6278", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "a31538e2-4283-484f-86a7-c47346bf1e8f", "level": "INFO", "time": "2024-05-13T23:15:00.848308", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "134735a9d5ad4936a1da4ccdbcac8132", "Server-Timing": "TimerPanel_utime;dur=42.26099999999988;desc=\"User CPU time\", TimerPanel_stime;dur=4.525000000000112;desc=\"System CPU time\", TimerPanel_total;dur=46.785999999999994;desc=\"Total CPU time\", TimerPanel_total_time;dur=46.26374994404614;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.4585837963968515;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2d85faa4-a509-4d0b-80e5-7ded33989720", "level": "INFO", "time": "2024-05-13T23:15:01.007726", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "b8f931a8718e47c1bd3b4eeb726af2a4", "Server-Timing": "TimerPanel_utime;dur=115.32300000000006;desc=\"User CPU time\", TimerPanel_stime;dur=25.39200000000008;desc=\"System CPU time\", TimerPanel_total;dur=140.71500000000015;desc=\"Total CPU time\", TimerPanel_total_time;dur=148.26283394359052;desc=\"Elapsed time\", SQLPanel_sql_time;dur=27.513999259099364;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1497", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "166fa739-dbee-47cb-b230-5e61701b076a", "level": "INFO", "time": "2024-05-13T23:15:01.057823", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "ff2a234434fb4922985def875f8caf0b", "Server-Timing": "TimerPanel_utime;dur=24.341999999999864;desc=\"User CPU time\", TimerPanel_stime;dur=1.9379999999999953;desc=\"System CPU time\", TimerPanel_total;dur=26.27999999999986;desc=\"Total CPU time\", TimerPanel_total_time;dur=38.88791589997709;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.6013328935950994;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3cce6aa1-0d7c-4bcd-8f4e-cc9855bd1bbc", "level": "INFO", "time": "2024-05-13T23:15:10.343260", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "0dec56d56fa54a55bd97a719b532ad90", "Server-Timing": "TimerPanel_utime;dur=39.984999999999715;desc=\"User CPU time\", TimerPanel_stime;dur=6.65199999999988;desc=\"System CPU time\", TimerPanel_total;dur=46.636999999999595;desc=\"Total CPU time\", TimerPanel_total_time;dur=61.88212498091161;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.565166076645255;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "afd663b2-e664-4534-bdfd-c852bc5155b8", "level": "INFO", "time": "2024-05-13T23:15:13.593595", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/1/sso_logout/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/1/sso_logout/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1694be65-d617-4d67-9a1a-4518f7fbe2b6", "level": "INFO", "time": "2024-05-13T23:15:13.743457", "request": {"method": "DELETE", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/1/sso_logout/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/1/sso_logout/", "user": null}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "DELETE, OPTIONS", "djdt-store-id": "c44d43dab4e543b6a9ad78bdf51d2d23", "Server-Timing": "TimerPanel_utime;dur=41.555999999999926;desc=\"User CPU time\", TimerPanel_stime;dur=4.445000000000032;desc=\"System CPU time\", TimerPanel_total;dur=46.00099999999996;desc=\"Total CPU time\", TimerPanel_total_time;dur=80.84458392113447;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.548416869714856;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "426d5018-30f4-4ad8-b2a4-1faa1d55c8a4", "level": "INFO", "time": "2024-05-13T23:15:17.607985", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=deefab291b98b851cd0d", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "0344631ea18644d9acbe3dcab0b22e29", "Server-Timing": "TimerPanel_utime;dur=6.4229999999998455;desc=\"User CPU time\", TimerPanel_stime;dur=1.4080000000000759;desc=\"System CPU time\", TimerPanel_total;dur=7.830999999999921;desc=\"Total CPU time\", TimerPanel_total_time;dur=8.085208013653755;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "35a3db26-a939-4b70-955a-306a9b18d8a2", "level": "INFO", "time": "2024-05-13T23:15:18.087493", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "61d6e13b915e414c1dd3", "state": "deefab291b98b851cd0d", "preferred_url": "None"}, "user": 1}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=undefined", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "057e0f1bdb744988bb0b159a05359c0d", "Server-Timing": "TimerPanel_utime;dur=94.92199999999951;desc=\"User CPU time\", TimerPanel_stime;dur=5.72600000000012;desc=\"System CPU time\", TimerPanel_total;dur=100.64799999999963;desc=\"Total CPU time\", TimerPanel_total_time;dur=362.1744168922305;desc=\"Elapsed time\", SQLPanel_sql_time;dur=27.238416485488415;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c0126e27-4f03-48b9-ae48-cf0da2b3ac86", "level": "INFO", "time": "2024-05-13T23:15:18.776032", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "6dd293b3596e45b48358d635eba63fe5", "Server-Timing": "TimerPanel_utime;dur=180.91200000000018;desc=\"User CPU time\", TimerPanel_stime;dur=21.539000000000197;desc=\"System CPU time\", TimerPanel_total;dur=202.45100000000036;desc=\"Total CPU time\", TimerPanel_total_time;dur=228.76029112376273;desc=\"Elapsed time\", SQLPanel_sql_time;dur=8.334998972713947;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1515", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4c4664b2-46d0-4bdb-bf5f-1f7f0369355a", "level": "INFO", "time": "2024-05-13T23:15:18.836146", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "4fd14e3952144954b6a2a46988a66c20", "Server-Timing": "TimerPanel_utime;dur=33.24999999999978;desc=\"User CPU time\", TimerPanel_stime;dur=2.3249999999999105;desc=\"System CPU time\", TimerPanel_total;dur=35.57499999999969;desc=\"Total CPU time\", TimerPanel_total_time;dur=47.51479090191424;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.9626667965203524;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "8672", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "54abb5c1-6cdb-4d2a-a614-02755c6b0919", "level": "INFO", "time": "2024-05-13T23:15:18.889871", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "de98a091d8fc4886ac0bf3018df6efef", "Server-Timing": "TimerPanel_utime;dur=25.420999999999694;desc=\"User CPU time\", TimerPanel_stime;dur=1.630999999999716;desc=\"System CPU time\", TimerPanel_total;dur=27.05199999999941;desc=\"Total CPU time\", TimerPanel_total_time;dur=42.93762496672571;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.018207684159279;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1627", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "ba9a2e62-dfd1-41e9-ad3b-4342c1799471", "level": "INFO", "time": "2024-05-13T23:15:18.976853", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "834bcf94db774214a451dc0134755bd7", "Server-Timing": "TimerPanel_utime;dur=61.07499999999977;desc=\"User CPU time\", TimerPanel_stime;dur=5.3200000000002134;desc=\"System CPU time\", TimerPanel_total;dur=66.39499999999998;desc=\"Total CPU time\", TimerPanel_total_time;dur=67.54291709512472;desc=\"Elapsed time\", SQLPanel_sql_time;dur=6.787167163565755;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "65d50096-9773-46a0-b190-5dafb5a1b87f", "level": "INFO", "time": "2024-05-13T23:15:19.044061", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "bbfb0f3dda5d441eb9ff5379c20932df", "Server-Timing": "TimerPanel_utime;dur=75.88799999999995;desc=\"User CPU time\", TimerPanel_stime;dur=5.758000000000152;desc=\"System CPU time\", TimerPanel_total;dur=81.6460000000001;desc=\"Total CPU time\", TimerPanel_total_time;dur=82.60562503710389;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.183458862826228;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "a451eeae-ee61-496d-9ccd-8bd09499d8e2", "level": "INFO", "time": "2024-05-13T23:15:19.196241", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "61d4ccac6cd14bbc994c708df22f389c", "Server-Timing": "TimerPanel_utime;dur=34.30499999999981;desc=\"User CPU time\", TimerPanel_stime;dur=15.210000000000168;desc=\"System CPU time\", TimerPanel_total;dur=49.51499999999997;desc=\"Total CPU time\", TimerPanel_total_time;dur=63.70833283290267;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.014749011024833;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "7e0b2ced-5bee-4de8-971b-083f2be20481", "level": "INFO", "time": "2024-05-13T23:15:21.440258", "request": {"method": "DELETE", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/1/sso_logout/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/1/sso_logout/", "user": null}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "DELETE, OPTIONS", "djdt-store-id": "de517c4f526747ab8e58e4b168d51f5e", "Server-Timing": "TimerPanel_utime;dur=33.0919999999999;desc=\"User CPU time\", TimerPanel_stime;dur=6.447999999999787;desc=\"System CPU time\", TimerPanel_total;dur=39.53999999999969;desc=\"Total CPU time\", TimerPanel_total_time;dur=53.23087517172098;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.663832951337099;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "cac6c58f-cf2f-4d36-9930-eb9e4c9c1ef0", "level": "INFO", "time": "2024-05-13T23:15:26.561338", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=275a127020c7949e1045", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "348f1efaf8b344169220ff50c0e3fcca", "Server-Timing": "TimerPanel_utime;dur=5.199000000000176;desc=\"User CPU time\", TimerPanel_stime;dur=1.2859999999998983;desc=\"System CPU time\", TimerPanel_total;dur=6.485000000000074;desc=\"Total CPU time\", TimerPanel_total_time;dur=6.954916985705495;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "729c26e7-ed92-4331-9605-200094f8a968", "level": "INFO", "time": "2024-05-13T23:15:27.001192", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "2271ba22a5efa6b1d010", "state": "275a127020c7949e1045", "preferred_url": "None"}, "user": 1}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=undefined", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "4391afa152994dd7b684391c66b2bb67", "Server-Timing": "TimerPanel_utime;dur=109.09899999999962;desc=\"User CPU time\", TimerPanel_stime;dur=7.66;desc=\"System CPU time\", TimerPanel_total;dur=116.75899999999962;desc=\"Total CPU time\", TimerPanel_total_time;dur=329.77983402088284;desc=\"Elapsed time\", SQLPanel_sql_time;dur=27.397168334573507;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4e1728e4-9774-4939-bc7f-44daf194ed3c", "level": "INFO", "time": "2024-05-13T23:15:27.573335", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "18910070beff4de88105111ba5dcc9e9", "Server-Timing": "TimerPanel_utime;dur=112.21799999999948;desc=\"User CPU time\", TimerPanel_stime;dur=58.892000000000166;desc=\"System CPU time\", TimerPanel_total;dur=171.10999999999964;desc=\"Total CPU time\", TimerPanel_total_time;dur=167.80966613441706;desc=\"Elapsed time\", SQLPanel_sql_time;dur=10.549167636781931;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1515", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5d9140f3-9218-41ec-806b-7515dced57a3", "level": "INFO", "time": "2024-05-13T23:15:27.632945", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "abfbbb063c7c440d8cf7cf711aeda6f8", "Server-Timing": "TimerPanel_utime;dur=32.6550000000001;desc=\"User CPU time\", TimerPanel_stime;dur=1.9379999999999953;desc=\"System CPU time\", TimerPanel_total;dur=34.593000000000096;desc=\"Total CPU time\", TimerPanel_total_time;dur=49.094334011897445;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.130875062197447;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "8672", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c2166be5-0052-4a69-a73d-a674a99207d4", "level": "INFO", "time": "2024-05-13T23:15:27.798886", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "960a823ca36b45ffaef003cbaf802b23", "Server-Timing": "TimerPanel_utime;dur=125.93999999999994;desc=\"User CPU time\", TimerPanel_stime;dur=5.019000000000329;desc=\"System CPU time\", TimerPanel_total;dur=130.95900000000026;desc=\"Total CPU time\", TimerPanel_total_time;dur=155.06637492217124;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.8824169896543026;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1627", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "a20beb5b-1497-41a2-b0bb-df1aa8981a4f", "level": "INFO", "time": "2024-05-13T23:15:27.869832", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "228f8fa8b9e1427c9f4273bd2dbe48c2", "Server-Timing": "TimerPanel_utime;dur=51.250999999998825;desc=\"User CPU time\", TimerPanel_stime;dur=5.299999999999638;desc=\"System CPU time\", TimerPanel_total;dur=56.55099999999847;desc=\"Total CPU time\", TimerPanel_total_time;dur=52.81379190273583;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.1923333667218685;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1aff9f8e-d029-46ca-a0f0-cba89355d65c", "level": "INFO", "time": "2024-05-13T23:15:27.930322", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "81ca8b316d5343098b054debf91dfdd4", "Server-Timing": "TimerPanel_utime;dur=53.886999999999574;desc=\"User CPU time\", TimerPanel_stime;dur=5.192000000000085;desc=\"System CPU time\", TimerPanel_total;dur=59.07899999999966;desc=\"Total CPU time\", TimerPanel_total_time;dur=55.47945899888873;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.9538335986435413;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "334bf994-f259-447e-ad8f-23f95b07aead", "level": "INFO", "time": "2024-05-13T23:15:28.084654", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "990b0ed56ac9459d8faafbe1745a9b01", "Server-Timing": "TimerPanel_utime;dur=30.291000000000068;desc=\"User CPU time\", TimerPanel_stime;dur=2.737999999999907;desc=\"System CPU time\", TimerPanel_total;dur=33.028999999999975;desc=\"Total CPU time\", TimerPanel_total_time;dur=67.83666694536805;desc=\"Elapsed time\", SQLPanel_sql_time;dur=8.273874875158072;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "81fa8ec0-c942-4ac3-83b1-b9e16fc4a8b3", "level": "INFO", "time": "2024-05-13T23:15:34.245805", "request": {"method": "DELETE", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/1/sso_logout/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/1/sso_logout/", "user": null}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "DELETE, OPTIONS", "djdt-store-id": "750cd874e70a41e397ddda5160da1cf6", "Server-Timing": "TimerPanel_utime;dur=48.524000000000456;desc=\"User CPU time\", TimerPanel_stime;dur=5.977000000000121;desc=\"System CPU time\", TimerPanel_total;dur=54.50100000000057;desc=\"Total CPU time\", TimerPanel_total_time;dur=79.80762491934001;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.906792124733329;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "013db9db-22c0-4636-b109-14735caec786", "level": "INFO", "time": "2024-05-13T23:15:42.587449", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=da40a5ce1badf53b40b1", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "f5e95b9bd00d4727bf68d5a04e11e932", "Server-Timing": "TimerPanel_utime;dur=7.887000000000199;desc=\"User CPU time\", TimerPanel_stime;dur=3.765999999999714;desc=\"System CPU time\", TimerPanel_total;dur=11.652999999999913;desc=\"Total CPU time\", TimerPanel_total_time;dur=15.38875000551343;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5b6eed29-1589-41d4-b834-920971bb8fd6", "level": "INFO", "time": "2024-05-13T23:15:43.070339", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "83baf2459cc5f1f1da63", "state": "da40a5ce1badf53b40b1", "preferred_url": "None"}, "user": 1}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=undefined", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "185c622f23544aeb8e52cc928ee3d8db", "Server-Timing": "TimerPanel_utime;dur=72.37600000000022;desc=\"User CPU time\", TimerPanel_stime;dur=8.267000000000024;desc=\"System CPU time\", TimerPanel_total;dur=80.64300000000024;desc=\"Total CPU time\", TimerPanel_total_time;dur=330.04199992865324;desc=\"Elapsed time\", SQLPanel_sql_time;dur=33.471543341875076;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b40d508b-9629-408c-8ae7-4976be2c99de", "level": "INFO", "time": "2024-05-13T23:15:43.613292", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "304d7de00b9f45e3b225f8bf581da7b9", "Server-Timing": "TimerPanel_utime;dur=202.12300000000027;desc=\"User CPU time\", TimerPanel_stime;dur=32.871000000000095;desc=\"System CPU time\", TimerPanel_total;dur=234.99400000000037;desc=\"Total CPU time\", TimerPanel_total_time;dur=272.718874970451;desc=\"Elapsed time\", SQLPanel_sql_time;dur=8.518915623426437;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1515", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "af85253a-7db6-422e-87b3-f11e7baeddc5", "level": "INFO", "time": "2024-05-13T23:15:43.678162", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "0b1a008236ef45de90a2da2d1b453e6b", "Server-Timing": "TimerPanel_utime;dur=30.73199999999865;desc=\"User CPU time\", TimerPanel_stime;dur=1.8940000000000623;desc=\"System CPU time\", TimerPanel_total;dur=32.62599999999871;desc=\"Total CPU time\", TimerPanel_total_time;dur=55.49858300946653;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.7514989487826824;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "8672", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3752e350-6c63-4761-8947-afba0275df8f", "level": "INFO", "time": "2024-05-13T23:15:43.729895", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "503adfd5acfd45a991fe281820a00fc2", "Server-Timing": "TimerPanel_utime;dur=23.882000000000403;desc=\"User CPU time\", TimerPanel_stime;dur=1.487000000000016;desc=\"System CPU time\", TimerPanel_total;dur=25.36900000000042;desc=\"Total CPU time\", TimerPanel_total_time;dur=41.076833847910166;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.802958944812417;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1627", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "55deb795-3150-4c08-a9d1-0305f9272432", "level": "INFO", "time": "2024-05-13T23:15:43.796143", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "5b6921debfcc4c1bb5f117cc9c795e74", "Server-Timing": "TimerPanel_utime;dur=45.25499999999916;desc=\"User CPU time\", TimerPanel_stime;dur=4.298999999999609;desc=\"System CPU time\", TimerPanel_total;dur=49.553999999998766;desc=\"Total CPU time\", TimerPanel_total_time;dur=47.75920882821083;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.409458255395293;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "471369ad-a455-414a-84a3-95ba029660d9", "level": "INFO", "time": "2024-05-13T23:15:43.863069", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "b83ae208edba44e1b9daa7139c124f46", "Server-Timing": "TimerPanel_utime;dur=56.94599999999994;desc=\"User CPU time\", TimerPanel_stime;dur=4.9440000000000595;desc=\"System CPU time\", TimerPanel_total;dur=61.89;desc=\"Total CPU time\", TimerPanel_total_time;dur=59.54612512141466;desc=\"Elapsed time\", SQLPanel_sql_time;dur=11.09441602602601;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f0d85441-dbfe-4e67-a218-21d3fde6dd06", "level": "INFO", "time": "2024-05-13T23:15:43.996418", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "8819cc38bcbc4547b3ba843f9008bfc2", "Server-Timing": "TimerPanel_utime;dur=25.23500000000034;desc=\"User CPU time\", TimerPanel_stime;dur=1.8910000000005311;desc=\"System CPU time\", TimerPanel_total;dur=27.12600000000087;desc=\"Total CPU time\", TimerPanel_total_time;dur=41.215499863028526;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.6060838028788567;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "fded6a10-4fd6-4e58-a0d4-26a7bc3d87dd", "level": "INFO", "time": "2024-05-13T23:15:46.941123", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/blocks/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/blocks/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "33e0a82d-5750-421a-835d-fd1cbbfe95f9", "level": "INFO", "time": "2024-05-13T23:15:46.945296", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "8f7f1264-0684-4d26-a83d-73f41653b179", "level": "INFO", "time": "2024-05-13T23:15:47.267784", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/blocks/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/blocks/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "2000d5ae0a3e411ca705f04fdcd79a96", "Server-Timing": "TimerPanel_utime;dur=61.465999999999354;desc=\"User CPU time\", TimerPanel_stime;dur=6.8310000000000315;desc=\"System CPU time\", TimerPanel_total;dur=68.29699999999939;desc=\"Total CPU time\", TimerPanel_total_time;dur=72.65270804055035;desc=\"Elapsed time\", SQLPanel_sql_time;dur=17.380876000970602;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4d3f8bf3-3f09-4e13-92d2-230e80cccb4d", "level": "INFO", "time": "2024-05-13T23:15:47.397076", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"created_by": "1"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "14db74314f294ddab131c11dd64a5958", "Server-Timing": "TimerPanel_utime;dur=318.35399999999936;desc=\"User CPU time\", TimerPanel_stime;dur=100.74400000000061;desc=\"System CPU time\", TimerPanel_total;dur=419.09799999999996;desc=\"Total CPU time\", TimerPanel_total_time;dur=375.88308402337134;desc=\"Elapsed time\", SQLPanel_sql_time;dur=128.89095884747803;desc=\"SQL 10 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1497", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "85b38f41-a8a7-42d5-885b-2ade89ea687d", "level": "INFO", "time": "2024-05-13T23:15:47.474229", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "1c57a881fad24bb1a14805af3e5d54f6", "Server-Timing": "TimerPanel_utime;dur=25.484000000000506;desc=\"User CPU time\", TimerPanel_stime;dur=1.9520000000001758;desc=\"System CPU time\", TimerPanel_total;dur=27.436000000000682;desc=\"Total CPU time\", TimerPanel_total_time;dur=40.3440420050174;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.628207206726074;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "d73f42e0-4370-4791-bbfa-550e47050195", "level": "INFO", "time": "2024-05-13T23:17:13.810332", "request": {"method": "DELETE", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/1/sso_logout/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/1/sso_logout/", "user": null}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "DELETE, OPTIONS", "djdt-store-id": "b237d12bc2c24d838a4ffc14831af1ba", "Server-Timing": "TimerPanel_utime;dur=39.15600000000019;desc=\"User CPU time\", TimerPanel_stime;dur=15.420999999999907;desc=\"System CPU time\", TimerPanel_total;dur=54.5770000000001;desc=\"Total CPU time\", TimerPanel_total_time;dur=98.13700011000037;desc=\"Elapsed time\", SQLPanel_sql_time;dur=8.82899877615273;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "80c18618-289b-484d-aa33-cb306c9fd6c8", "level": "INFO", "time": "2024-05-13T23:18:01.178699", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=0cfa717b4d1b1ac78190", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "91aed548d0a6488291ee06f3dda113fc", "Server-Timing": "TimerPanel_utime;dur=33.311999999998676;desc=\"User CPU time\", TimerPanel_stime;dur=10.167000000000037;desc=\"System CPU time\", TimerPanel_total;dur=43.47899999999871;desc=\"Total CPU time\", TimerPanel_total_time;dur=71.89891603775322;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.7797081749886274;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "d65b629d-90ee-49bc-ae3f-443fe579d13c", "level": "INFO", "time": "2024-05-13T23:18:01.717339", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "4619e4869d40530ba45f", "state": "0cfa717b4d1b1ac78190", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=undefined", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "a04bce1a88d6474ebafa3a6f7ed3ef18", "Server-Timing": "TimerPanel_utime;dur=105.32200000000103;desc=\"User CPU time\", TimerPanel_stime;dur=27.131000000000682;desc=\"System CPU time\", TimerPanel_total;dur=132.4530000000017;desc=\"Total CPU time\", TimerPanel_total_time;dur=392.88191706873477;desc=\"Elapsed time\", SQLPanel_sql_time;dur=23.846167139708996;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "435d01ad-6169-4981-b1f3-2da277c8078e", "level": "INFO", "time": "2024-05-13T23:18:02.061938", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e56e4ad5-3250-4973-a55d-7d88e4022844", "level": "WARNING", "time": "2024-05-13T23:18:02.152855", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "bbeceef1e2624dfeaf42e02ad2814f51", "Server-Timing": "TimerPanel_utime;dur=7.140999999998954;desc=\"User CPU time\", TimerPanel_stime;dur=1.743000000000272;desc=\"System CPU time\", TimerPanel_total;dur=8.883999999999226;desc=\"Total CPU time\", TimerPanel_total_time;dur=10.143375024199486;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3f5bae82-a001-4e26-8f84-d077f4e8efde", "level": "WARNING", "time": "2024-05-13T23:18:02.168696", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "b85791f124e64f80a467c98c66d0bc43", "Server-Timing": "TimerPanel_utime;dur=4.582000000000974;desc=\"User CPU time\", TimerPanel_stime;dur=1.1760000000000659;desc=\"System CPU time\", TimerPanel_total;dur=5.75800000000104;desc=\"Total CPU time\", TimerPanel_total_time;dur=6.287290947511792;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "a907da2f-8bf9-4c77-b604-51fce835a420", "level": "INFO", "time": "2024-05-13T23:18:04.750716", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=ec7d5070c29a3bc40511", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "9e7a0578287b441688ce51e6417e3b77", "Server-Timing": "TimerPanel_utime;dur=32.94599999999903;desc=\"User CPU time\", TimerPanel_stime;dur=2.870999999999846;desc=\"System CPU time\", TimerPanel_total;dur=35.81699999999888;desc=\"Total CPU time\", TimerPanel_total_time;dur=47.74354095570743;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.301917178556323;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3b13cb0f-f1bc-4752-9cdb-bd5bd01b7e44", "level": "INFO", "time": "2024-05-13T23:18:05.097505", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "c10b3658e64f2fe7dcf2", "state": "ec7d5070c29a3bc40511", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "55cd95e2e70b46b09a60989561d426e7", "Server-Timing": "TimerPanel_utime;dur=98.99700000000067;desc=\"User CPU time\", TimerPanel_stime;dur=6.451999999999458;desc=\"System CPU time\", TimerPanel_total;dur=105.44900000000013;desc=\"Total CPU time\", TimerPanel_total_time;dur=265.2956659439951;desc=\"Elapsed time\", SQLPanel_sql_time;dur=27.233208995312452;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1c60eafd-e6a6-4c71-88ca-bc28f58895ce", "level": "WARNING", "time": "2024-05-13T23:18:05.250524", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "0307a55903ee4b52ad20feede4d13189", "Server-Timing": "TimerPanel_utime;dur=5.601000000000411;desc=\"User CPU time\", TimerPanel_stime;dur=1.3969999999998706;desc=\"System CPU time\", TimerPanel_total;dur=6.998000000000282;desc=\"Total CPU time\", TimerPanel_total_time;dur=9.142583003267646;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "ca341d18-4f45-44b0-a0fe-7be27a33b316", "level": "WARNING", "time": "2024-05-13T23:18:05.268774", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "10723be070ad460c95b6102f7fcda696", "Server-Timing": "TimerPanel_utime;dur=5.0080000000001235;desc=\"User CPU time\", TimerPanel_stime;dur=1.3180000000003744;desc=\"System CPU time\", TimerPanel_total;dur=6.326000000000498;desc=\"Total CPU time\", TimerPanel_total_time;dur=7.4475419241935015;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f5f7b0a2-26a2-4f9c-bce5-9c3830cd5c56", "level": "INFO", "time": "2024-05-13T23:18:07.721584", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=77b13dd90ef4f51932d2", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "cc13a2adab3245638f9f37ac6219d8c7", "Server-Timing": "TimerPanel_utime;dur=37.675000000000125;desc=\"User CPU time\", TimerPanel_stime;dur=3.87800000000027;desc=\"System CPU time\", TimerPanel_total;dur=41.553000000000395;desc=\"Total CPU time\", TimerPanel_total_time;dur=63.1805001758039;desc=\"Elapsed time\", SQLPanel_sql_time;dur=13.194750295951962;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "00baeb94-d03f-41c6-bcbb-ba4fb7567996", "level": "INFO", "time": "2024-05-13T23:18:08.044038", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "085df1a847c431541a2a", "state": "77b13dd90ef4f51932d2", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e8982f693ec243a5905393dbddde9006", "Server-Timing": "TimerPanel_utime;dur=63.25299999999956;desc=\"User CPU time\", TimerPanel_stime;dur=4.266000000000325;desc=\"System CPU time\", TimerPanel_total;dur=67.51899999999989;desc=\"Total CPU time\", TimerPanel_total_time;dur=232.77937504462898;desc=\"Elapsed time\", SQLPanel_sql_time;dur=20.142792956903577;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "dcdf9173-2d3f-4756-8a95-af4a7cd54329", "level": "WARNING", "time": "2024-05-13T23:18:08.248160", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "d0ecf04a354f4afd97b93a6be71d753a", "Server-Timing": "TimerPanel_utime;dur=5.762999999999963;desc=\"User CPU time\", TimerPanel_stime;dur=1.4580000000004034;desc=\"System CPU time\", TimerPanel_total;dur=7.221000000000366;desc=\"Total CPU time\", TimerPanel_total_time;dur=8.309666998684406;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "a99d8f73-7a0b-4b89-9e5f-52820b8eb93e", "level": "WARNING", "time": "2024-05-13T23:18:08.265518", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "3847d82fa8d44d4ca42346b9f3d8b615", "Server-Timing": "TimerPanel_utime;dur=5.452000000000012;desc=\"User CPU time\", TimerPanel_stime;dur=1.5529999999994715;desc=\"System CPU time\", TimerPanel_total;dur=7.004999999999484;desc=\"Total CPU time\", TimerPanel_total_time;dur=8.009917102754116;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2630fbce-df04-4113-9473-7134f202a173", "level": "INFO", "time": "2024-05-13T23:18:16.962392", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=cadca4bf37a67c60ffa0", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "5d5947a438934bc6b2b3aaf425ace3d6", "Server-Timing": "TimerPanel_utime;dur=35.40600000000005;desc=\"User CPU time\", TimerPanel_stime;dur=10.717000000000532;desc=\"System CPU time\", TimerPanel_total;dur=46.12300000000058;desc=\"Total CPU time\", TimerPanel_total_time;dur=89.876415906474;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.041374126449227;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "8b93bec8-1475-4b5b-9135-b2b609a09957", "level": "INFO", "time": "2024-05-13T23:18:17.352498", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "d9f3c2d1b345cfb80aba", "state": "cadca4bf37a67c60ffa0", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=undefined", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "2f61e055d90b461a9883b4b15cf3f77e", "Server-Timing": "TimerPanel_utime;dur=70.54399999999994;desc=\"User CPU time\", TimerPanel_stime;dur=22.046999999999706;desc=\"System CPU time\", TimerPanel_total;dur=92.59099999999964;desc=\"Total CPU time\", TimerPanel_total_time;dur=298.2594999484718;desc=\"Elapsed time\", SQLPanel_sql_time;dur=24.29500105790794;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5edac36f-4f30-44bf-96b5-000fe6097e2f", "level": "WARNING", "time": "2024-05-13T23:18:17.587932", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "b963e6393d1b41209f17bce2f0dadc69", "Server-Timing": "TimerPanel_utime;dur=6.697000000000841;desc=\"User CPU time\", TimerPanel_stime;dur=1.2530000000001706;desc=\"System CPU time\", TimerPanel_total;dur=7.950000000001012;desc=\"Total CPU time\", TimerPanel_total_time;dur=10.681458050385118;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9bfed198-28ef-4f07-bfe3-deb7b30cf10c", "level": "WARNING", "time": "2024-05-13T23:18:17.602913", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e35a722a09654482abeddd0ffa3061b0", "Server-Timing": "TimerPanel_utime;dur=4.570000000001073;desc=\"User CPU time\", TimerPanel_stime;dur=0.9920000000001039;desc=\"System CPU time\", TimerPanel_total;dur=5.562000000001177;desc=\"Total CPU time\", TimerPanel_total_time;dur=5.867833038792014;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b982fcba-7e8b-4c87-9cb4-0cfe7e6e76e7", "level": "INFO", "time": "2024-05-13T23:18:19.912277", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=13667ebbbe455ff63403", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "9a413ff33a2b4e75b8726c2fef468a02", "Server-Timing": "TimerPanel_utime;dur=31.751999999999114;desc=\"User CPU time\", TimerPanel_stime;dur=2.861999999998588;desc=\"System CPU time\", TimerPanel_total;dur=34.6139999999977;desc=\"Total CPU time\", TimerPanel_total_time;dur=46.244250144809484;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.528666915372014;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "70fc4072-c6d1-496b-884d-5fad902b734a", "level": "INFO", "time": "2024-05-13T23:18:20.244782", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "e72e003035ba8783201a", "state": "13667ebbbe455ff63403", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "d4954cc89b1b489284734e62e874def5", "Server-Timing": "TimerPanel_utime;dur=95.3759999999999;desc=\"User CPU time\", TimerPanel_stime;dur=6.403999999999854;desc=\"System CPU time\", TimerPanel_total;dur=101.77999999999976;desc=\"Total CPU time\", TimerPanel_total_time;dur=276.0393749922514;desc=\"Elapsed time\", SQLPanel_sql_time;dur=22.794957272708416;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f9f7811e-d96c-4da7-8292-f9686fc6e944", "level": "WARNING", "time": "2024-05-13T23:18:20.434827", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "26321709519640c4b2b92f3cd74fc36d", "Server-Timing": "TimerPanel_utime;dur=4.807000000001338;desc=\"User CPU time\", TimerPanel_stime;dur=1.1780000000012336;desc=\"System CPU time\", TimerPanel_total;dur=5.985000000002572;desc=\"Total CPU time\", TimerPanel_total_time;dur=6.6517910454422235;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "14561322-c2b3-447b-a7e7-28eb6b13c516", "level": "WARNING", "time": "2024-05-13T23:18:20.468924", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "3d559f261a4a43dea7175db591fbc0df", "Server-Timing": "TimerPanel_utime;dur=4.283000000000925;desc=\"User CPU time\", TimerPanel_stime;dur=1.006999999999536;desc=\"System CPU time\", TimerPanel_total;dur=5.290000000000461;desc=\"Total CPU time\", TimerPanel_total_time;dur=5.3915828466415405;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "184df0e9-4a7a-4865-8e59-532905de42f3", "level": "INFO", "time": "2024-05-13T23:18:53.227291", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language", "access-control-allow-origin": "http://localhost:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "55975770-279c-4852-86b2-f19e0540d8e2", "level": "WARNING", "time": "2024-05-13T23:18:53.444117", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "5fc967f964a54f3d870d3f8eedec9494", "Server-Timing": "TimerPanel_utime;dur=6.943999999998951;desc=\"User CPU time\", TimerPanel_stime;dur=4.096000000000544;desc=\"System CPU time\", TimerPanel_total;dur=11.039999999999495;desc=\"Total CPU time\", TimerPanel_total_time;dur=12.485291110351682;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://localhost:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6b9faf2d-0338-42da-9c5f-a7a35a8184cb", "level": "INFO", "time": "2024-05-13T23:18:55.909956", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://localhost:8080/login-handler?link=http://localhost:8080/"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=b0c8541a517b182cf572", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "b931a2d2d10742059f9db79d1e50b7cc", "Server-Timing": "TimerPanel_utime;dur=35.71600000000075;desc=\"User CPU time\", TimerPanel_stime;dur=4.542000000000712;desc=\"System CPU time\", TimerPanel_total;dur=40.25800000000146;desc=\"Total CPU time\", TimerPanel_total_time;dur=78.79679114557803;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.327999824658036;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "71a37825-f341-4ab7-8d96-1ec790594d50", "level": "INFO", "time": "2024-05-13T23:18:56.746768", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "be9c4cecd7ec78064f10", "state": "b0c8541a517b182cf572", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://localhost:8080/login-handler?link=http://localhost:8080/", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "43d626e3aefe4090a1a5d2681a24272f", "Server-Timing": "TimerPanel_utime;dur=89.75899999999903;desc=\"User CPU time\", TimerPanel_stime;dur=7.179999999999964;desc=\"System CPU time\", TimerPanel_total;dur=96.938999999999;desc=\"Total CPU time\", TimerPanel_total_time;dur=600.6249168422073;desc=\"Elapsed time\", SQLPanel_sql_time;dur=31.47024940699339;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "98b21d59-df55-45cd-b6d5-38a98e4dfae3", "level": "WARNING", "time": "2024-05-13T23:18:57.146651", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "bd63577d353a42f0be1fe51521b74fcf", "Server-Timing": "TimerPanel_utime;dur=4.656999999999911;desc=\"User CPU time\", TimerPanel_stime;dur=1.2430000000005492;desc=\"System CPU time\", TimerPanel_total;dur=5.90000000000046;desc=\"Total CPU time\", TimerPanel_total_time;dur=6.362125044688582;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://localhost:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c2d9952c-ea2b-434b-825a-611c39952a69", "level": "WARNING", "time": "2024-05-13T23:18:57.164710", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "c8ae6a03690d48c390f4202da6769c29", "Server-Timing": "TimerPanel_utime;dur=5.806999999999007;desc=\"User CPU time\", TimerPanel_stime;dur=1.519000000000048;desc=\"System CPU time\", TimerPanel_total;dur=7.3259999999990555;desc=\"Total CPU time\", TimerPanel_total_time;dur=9.095542132854462;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://localhost:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c4ae4755-a33b-4337-b67a-ae1a8c01f9ec", "level": "WARNING", "time": "2024-05-13T23:19:00.056616", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "d67b7e3999bc42e1bb60b441e23eb434", "Server-Timing": "TimerPanel_utime;dur=4.618000000000677;desc=\"User CPU time\", TimerPanel_stime;dur=1.1820000000000164;desc=\"System CPU time\", TimerPanel_total;dur=5.8000000000006935;desc=\"Total CPU time\", TimerPanel_total_time;dur=6.803415948525071;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://localhost:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "011a44ae-5299-4e44-a30c-c1a1e1aca38d", "level": "INFO", "time": "2024-05-13T23:19:15.823072", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://localhost:8080/login-handler?link=http://localhost:8080/"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=207eb2290de062004f45", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "c9bab1e74ec44bf28ad9e775c67e4f78", "Server-Timing": "TimerPanel_utime;dur=34.85600000000133;desc=\"User CPU time\", TimerPanel_stime;dur=12.282000000000792;desc=\"System CPU time\", TimerPanel_total;dur=47.13800000000212;desc=\"Total CPU time\", TimerPanel_total_time;dur=73.96391709335148;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.797917557880282;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9e9b8b12-05fe-4edd-aa59-af8c478011c1", "level": "INFO", "time": "2024-05-13T23:19:16.697272", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "e8c94d72462119736d56", "state": "207eb2290de062004f45", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://localhost:8080/login-handler?link=http://localhost:8080/", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "af2f4e9cbd634694ae2e533909c125d3", "Server-Timing": "TimerPanel_utime;dur=92.61199999999903;desc=\"User CPU time\", TimerPanel_stime;dur=7.134999999999891;desc=\"System CPU time\", TimerPanel_total;dur=99.74699999999892;desc=\"Total CPU time\", TimerPanel_total_time;dur=646.7224999796599;desc=\"Elapsed time\", SQLPanel_sql_time;dur=26.96571033447981;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "13ae26a7-9553-4062-ad9b-6e6a2d0cda15", "level": "WARNING", "time": "2024-05-13T23:19:17.973547", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "320a58da76ee41e5a8328bd4920beac0", "Server-Timing": "TimerPanel_utime;dur=7.600000000000051;desc=\"User CPU time\", TimerPanel_stime;dur=2.088000000000534;desc=\"System CPU time\", TimerPanel_total;dur=9.688000000000585;desc=\"Total CPU time\", TimerPanel_total_time;dur=12.376250000670552;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://localhost:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "78737daa-6efc-4f0f-8421-4b5259e60d36", "level": "WARNING", "time": "2024-05-13T23:19:18.017852", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e8ab73d04c8048b79a30d0286b4601c2", "Server-Timing": "TimerPanel_utime;dur=6.24700000000189;desc=\"User CPU time\", TimerPanel_stime;dur=3.7040000000008177;desc=\"System CPU time\", TimerPanel_total;dur=9.951000000002708;desc=\"Total CPU time\", TimerPanel_total_time;dur=8.726291125640273;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://localhost:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3c742279-3115-493e-8763-156a87685819", "level": "INFO", "time": "2024-05-13T23:20:00.120546", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=1857581393b49b344cfc", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "7be2c8bf2a724c55acb6ce4d4ff4f3a3", "Server-Timing": "TimerPanel_utime;dur=34.08199999999795;desc=\"User CPU time\", TimerPanel_stime;dur=11.73599999999908;desc=\"System CPU time\", TimerPanel_total;dur=45.81799999999703;desc=\"Total CPU time\", TimerPanel_total_time;dur=80.38879209198058;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.894250003620982;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e11ab1a1-734d-413b-8281-1a1d71165e2d", "level": "INFO", "time": "2024-05-13T23:20:01.256739", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "5e0b03b92ca9992d6c7a", "state": "1857581393b49b344cfc", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=undefined", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "c60f70284c964ccfade9e0e7208f7b84", "Server-Timing": "TimerPanel_utime;dur=114.40199999999834;desc=\"User CPU time\", TimerPanel_stime;dur=13.623000000000829;desc=\"System CPU time\", TimerPanel_total;dur=128.02499999999918;desc=\"Total CPU time\", TimerPanel_total_time;dur=370.61416590586305;desc=\"Elapsed time\", SQLPanel_sql_time;dur=30.64046031795442;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "ce1976f8-c9ff-49d0-8eeb-1d8eb7d56eef", "level": "WARNING", "time": "2024-05-13T23:20:02.615801", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "f9c71ab98a014f449da7f012ab7c614c", "Server-Timing": "TimerPanel_utime;dur=7.00700000000154;desc=\"User CPU time\", TimerPanel_stime;dur=1.870999999999512;desc=\"System CPU time\", TimerPanel_total;dur=8.878000000001052;desc=\"Total CPU time\", TimerPanel_total_time;dur=11.434874963015318;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4e7bf623-2c77-4952-8d49-fb140a3fefc7", "level": "WARNING", "time": "2024-05-13T23:20:02.639547", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e67ee63fdf3d47ab8ac3d86ac3c2a5b9", "Server-Timing": "TimerPanel_utime;dur=6.059000000000481;desc=\"User CPU time\", TimerPanel_stime;dur=1.4769999999995065;desc=\"System CPU time\", TimerPanel_total;dur=7.535999999999987;desc=\"Total CPU time\", TimerPanel_total_time;dur=8.718374883756042;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "056b2f0b-f53b-41e8-9f8b-3664d08f0f82", "level": "INFO", "time": "2024-05-13T23:20:54.557712", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=1d11ce108a6e4f9b98d7", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "3c1845488ea346389c0601311cfd2a84", "Server-Timing": "TimerPanel_utime;dur=33.373000000000985;desc=\"User CPU time\", TimerPanel_stime;dur=11.521999999999366;desc=\"System CPU time\", TimerPanel_total;dur=44.89500000000035;desc=\"Total CPU time\", TimerPanel_total_time;dur=69.09987516701221;desc=\"Elapsed time\", SQLPanel_sql_time;dur=6.223500007763505;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "92e89fc2-68fa-4d35-be65-c77fd92fc052", "level": "INFO", "time": "2024-05-13T23:20:55.195580", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "79c8c9eb5d514b2e4bbf", "state": "1d11ce108a6e4f9b98d7", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "8c3896ce5c2d4b9681c88a3ee6a47a38", "Server-Timing": "TimerPanel_utime;dur=97.69700000000014;desc=\"User CPU time\", TimerPanel_stime;dur=13.396000000000186;desc=\"System CPU time\", TimerPanel_total;dur=111.09300000000033;desc=\"Total CPU time\", TimerPanel_total_time;dur=437.1720419730991;desc=\"Elapsed time\", SQLPanel_sql_time;dur=39.333500899374485;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9ccbe2a2-81ca-4205-8a29-b84681f2db1a", "level": "WARNING", "time": "2024-05-13T23:20:56.169243", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "18d4eda5dfce450a9810d0ef427b500f", "Server-Timing": "TimerPanel_utime;dur=8.257000000000403;desc=\"User CPU time\", TimerPanel_stime;dur=2.744000000001634;desc=\"System CPU time\", TimerPanel_total;dur=11.001000000002037;desc=\"Total CPU time\", TimerPanel_total_time;dur=21.651916205883026;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "678b7885-b4dc-4678-9be6-1eb8cdf832ab", "level": "WARNING", "time": "2024-05-13T23:20:56.267621", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "301f73b4752a4c91b6681ddc1fc35f3a", "Server-Timing": "TimerPanel_utime;dur=7.146000000002317;desc=\"User CPU time\", TimerPanel_stime;dur=1.924000000000703;desc=\"System CPU time\", TimerPanel_total;dur=9.07000000000302;desc=\"Total CPU time\", TimerPanel_total_time;dur=61.92620890215039;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "413109b7-2e7e-460a-90b2-821833daf6c8", "level": "INFO", "time": "2024-05-13T23:21:17.665935", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=8f7e9784b3bc1421a58a", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "ea6b491bc81d46d3b07ff20bcc202285", "Server-Timing": "TimerPanel_utime;dur=7.584999999998843;desc=\"User CPU time\", TimerPanel_stime;dur=4.775000000000418;desc=\"System CPU time\", TimerPanel_total;dur=12.35999999999926;desc=\"Total CPU time\", TimerPanel_total_time;dur=15.368166146799922;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "445ec995-aff3-4ec5-9774-1aac6477720f", "level": "INFO", "time": "2024-05-13T23:21:18.232419", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=a69838d77f00fc869d16", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e1ff72a7754346aba939522cf0a70baf", "Server-Timing": "TimerPanel_utime;dur=36.20099999999837;desc=\"User CPU time\", TimerPanel_stime;dur=12.341000000001046;desc=\"System CPU time\", TimerPanel_total;dur=48.54199999999942;desc=\"Total CPU time\", TimerPanel_total_time;dur=45.71958305314183;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.0154169760644436;desc=\"SQL 2 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "fe61d08c-0f03-439e-8846-4a7aef837767", "level": "INFO", "time": "2024-05-13T23:22:03.473426", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "08719a26d3bd5f1ca059", "state": "a69838d77f00fc869d16", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=undefined", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e7b370ac01f44a4cad11d14559bd52ba", "Server-Timing": "TimerPanel_utime;dur=127.67499999999998;desc=\"User CPU time\", TimerPanel_stime;dur=34.14099999999998;desc=\"System CPU time\", TimerPanel_total;dur=161.81599999999997;desc=\"Total CPU time\", TimerPanel_total_time;dur=912.49870788306;desc=\"Elapsed time\", SQLPanel_sql_time;dur=37.38945699296892;desc=\"SQL 15 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f684b629-c3d1-4fef-80dc-0281fd8486f2", "level": "INFO", "time": "2024-05-13T23:22:05.351481", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2b52f284-00ef-4ecd-87b7-8d7b11020de7", "level": "INFO", "time": "2024-05-13T23:22:05.554549", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "775edc420870459686b1a4e2afad9589", "Server-Timing": "TimerPanel_utime;dur=92.175000000001;desc=\"User CPU time\", TimerPanel_stime;dur=21.630000000000038;desc=\"System CPU time\", TimerPanel_total;dur=113.80500000000104;desc=\"Total CPU time\", TimerPanel_total_time;dur=137.33558380044997;desc=\"Elapsed time\", SQLPanel_sql_time;dur=10.60391659848392;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1000", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "d7b819cd-91c3-4b70-a174-d80290a1e47c", "level": "INFO", "time": "2024-05-13T23:22:05.561886", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1efcbfdf-3dc3-4377-b4a8-49fea6a2828e", "level": "INFO", "time": "2024-05-13T23:22:05.618021", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "ecb63c9b27394ce2b616ddb33ee08a9f", "Server-Timing": "TimerPanel_utime;dur=33.37799999999902;desc=\"User CPU time\", TimerPanel_stime;dur=1.833999999998781;desc=\"System CPU time\", TimerPanel_total;dur=35.2119999999978;desc=\"Total CPU time\", TimerPanel_total_time;dur=50.66395807079971;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.9757500160485506;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "8672", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2d4e581e-dffa-4f65-bbbc-a29a5df4d9e6", "level": "INFO", "time": "2024-05-13T23:22:05.625208", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3190085f-1adc-4069-8f0e-fa880f22475f", "level": "INFO", "time": "2024-05-13T23:22:05.678251", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "b39b81be08c041849e94d0bd441246c3", "Server-Timing": "TimerPanel_utime;dur=24.53199999999711;desc=\"User CPU time\", TimerPanel_stime;dur=1.5339999999994802;desc=\"System CPU time\", TimerPanel_total;dur=26.065999999996592;desc=\"Total CPU time\", TimerPanel_total_time;dur=44.48641696944833;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.3212080597877502;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1627", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "261b7170-e815-4caf-8659-26c80355087f", "level": "INFO", "time": "2024-05-13T23:22:05.687772", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4bdfd5cd-e3e8-4b1a-9ded-55b18439a778", "level": "INFO", "time": "2024-05-13T23:22:05.688567", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6f61fc28-3193-44fc-9e30-3777bacb651a", "level": "INFO", "time": "2024-05-13T23:22:05.774545", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "760f47c52b9240e1ab4647ee73221383", "Server-Timing": "TimerPanel_utime;dur=58.92200000000258;desc=\"User CPU time\", TimerPanel_stime;dur=4.819999999998714;desc=\"System CPU time\", TimerPanel_total;dur=63.7420000000013;desc=\"Total CPU time\", TimerPanel_total_time;dur=69.93349990807474;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.632041789591312;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "30d789a2-b6cc-4ccb-b717-347a3ffbe0b2", "level": "INFO", "time": "2024-05-13T23:22:05.907057", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "2a9af4f3ca7449cfbde699e893a552fb", "Server-Timing": "TimerPanel_utime;dur=73.96500000000117;desc=\"User CPU time\", TimerPanel_stime;dur=4.920999999999509;desc=\"System CPU time\", TimerPanel_total;dur=78.88600000000068;desc=\"Total CPU time\", TimerPanel_total_time;dur=83.5945000872016;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.479875788092613;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "fbe1d32e-c953-4605-84c9-254859ab4e17", "level": "INFO", "time": "2024-05-13T23:22:05.983679", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "7a7067dc-31b7-403a-8194-c3e0ee770267", "level": "INFO", "time": "2024-05-13T23:22:06.044496", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "7c31b7aacc7f469d888967d7558c5dda", "Server-Timing": "TimerPanel_utime;dur=28.812999999999533;desc=\"User CPU time\", TimerPanel_stime;dur=2.1769999999996514;desc=\"System CPU time\", TimerPanel_total;dur=30.989999999999185;desc=\"Total CPU time\", TimerPanel_total_time;dur=51.48366582579911;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.65149911865592;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1f25655e-aef3-4694-b9fa-220b4c07a500", "level": "INFO", "time": "2024-05-13T23:22:22.778206", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "dc87e27e-f922-48d2-ad1a-bbcb2a1ece79", "level": "INFO", "time": "2024-05-13T23:22:23.019915", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "24d14cd478dc4e7bac5be90d9a798ead", "Server-Timing": "TimerPanel_utime;dur=132.35999999999848;desc=\"User CPU time\", TimerPanel_stime;dur=41.88699999999912;desc=\"System CPU time\", TimerPanel_total;dur=174.2469999999976;desc=\"Total CPU time\", TimerPanel_total_time;dur=177.21945885568857;desc=\"Elapsed time\", SQLPanel_sql_time;dur=16.483626095578074;desc=\"SQL 10 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4260", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "60c0a8c5-553f-4cb1-aaed-a2ce8457a11c", "level": "INFO", "time": "2024-05-13T23:22:23.055736", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9a86d93e-4f55-4003-be4b-b4ba7716d33b", "level": "INFO", "time": "2024-05-13T23:22:23.107394", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "76cac4ff22af45eaa3ef43ec0ec22347", "Server-Timing": "TimerPanel_utime;dur=41.601;desc=\"User CPU time\", TimerPanel_stime;dur=4.367999999999483;desc=\"System CPU time\", TimerPanel_total;dur=45.96899999999948;desc=\"Total CPU time\", TimerPanel_total_time;dur=44.9324999935925;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.872501267120242;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1e907558-6e47-4714-9885-aa5cbc988b50", "level": "INFO", "time": "2024-05-13T23:22:23.406584", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "41317c87451643db9ebc61f625476bf1", "Server-Timing": "TimerPanel_utime;dur=250.04300000000157;desc=\"User CPU time\", TimerPanel_stime;dur=25.187999999999988;desc=\"System CPU time\", TimerPanel_total;dur=275.2310000000016;desc=\"Total CPU time\", TimerPanel_total_time;dur=289.899833034724;desc=\"Elapsed time\", SQLPanel_sql_time;dur=28.761998750269413;desc=\"SQL 16 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4260", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "df52456f-0c19-4de4-84e1-e126ad8d31c0", "level": "INFO", "time": "2024-05-13T23:22:23.416315", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "efdcc07d-8a87-424b-b93c-633e23e07536", "level": "INFO", "time": "2024-05-13T23:22:23.463247", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "99fdf0d94d54421e91d584f9091ddff8", "Server-Timing": "TimerPanel_utime;dur=24.236999999999398;desc=\"User CPU time\", TimerPanel_stime;dur=1.6990000000003391;desc=\"System CPU time\", TimerPanel_total;dur=25.935999999999737;desc=\"Total CPU time\", TimerPanel_total_time;dur=38.67470799013972;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.1412499956786633;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "ca207796-1ccd-439b-8011-3e2c7f67f7d2", "level": "INFO", "time": "2024-05-13T23:22:24.840491", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "762d8ad1-00c0-469c-a2a4-a328524ce183", "level": "INFO", "time": "2024-05-13T23:22:25.319023", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "data": {"from_view": "all", "current": "1"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, PUT, PATCH, DELETE, HEAD, OPTIONS", "djdt-store-id": "797ccbcc388346febe587ee590871016", "Server-Timing": "TimerPanel_utime;dur=216.4760000000001;desc=\"User CPU time\", TimerPanel_stime;dur=44.68400000000017;desc=\"System CPU time\", TimerPanel_total;dur=261.1600000000003;desc=\"Total CPU time\", TimerPanel_total_time;dur=316.7316250037402;desc=\"Elapsed time\", SQLPanel_sql_time;dur=36.07187606394291;desc=\"SQL 20 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "6314", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "ac76828a-478c-454a-a10c-87ed7adc736c", "level": "INFO", "time": "2024-05-13T23:22:25.450584", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "632042df85794fe9845d20baa7203f35", "Server-Timing": "TimerPanel_utime;dur=49.60099999999912;desc=\"User CPU time\", TimerPanel_stime;dur=5.378000000000327;desc=\"System CPU time\", TimerPanel_total;dur=54.978999999999445;desc=\"Total CPU time\", TimerPanel_total_time;dur=67.29258294217288;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.139332937076688;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "8e4afc82-22fb-47cf-b7e1-9f72af28cb78", "level": "INFO", "time": "2024-05-13T23:22:25.649413", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "35c440efd59b4aa8980b1828fd7ca7cd", "Server-Timing": "TimerPanel_utime;dur=144.38300000000126;desc=\"User CPU time\", TimerPanel_stime;dur=31.755999999999673;desc=\"System CPU time\", TimerPanel_total;dur=176.13900000000092;desc=\"Total CPU time\", TimerPanel_total_time;dur=216.07833285816014;desc=\"Elapsed time\", SQLPanel_sql_time;dur=49.47970970533788;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "4260", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3b9d4bef-78b7-4033-a807-4f98340c875e", "level": "INFO", "time": "2024-05-13T23:22:25.700027", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "e398edf39d9948f293c478541c30ca1e", "Server-Timing": "TimerPanel_utime;dur=24.786999999999892;desc=\"User CPU time\", TimerPanel_stime;dur=1.9599999999986295;desc=\"System CPU time\", TimerPanel_total;dur=26.746999999998522;desc=\"Total CPU time\", TimerPanel_total_time;dur=38.075667107477784;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.8041668701916933;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f9af7453-09cb-482d-8a33-e0f14025284d", "level": "INFO", "time": "2024-05-13T23:22:32.427924", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/comments/1/vote_positive/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/1/vote_positive/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "a7adcc05-07f9-482b-b71c-f13c2940c6de", "level": "INFO", "time": "2024-05-13T23:22:32.830858", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "0", "path_info": "/api/comments/1/vote_positive/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/1/vote_positive/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "a07d392167e74e13a3682b90c45b9e24", "Server-Timing": "TimerPanel_utime;dur=124.35699999999983;desc=\"User CPU time\", TimerPanel_stime;dur=7.246000000000308;desc=\"System CPU time\", TimerPanel_total;dur=131.60300000000012;desc=\"Total CPU time\", TimerPanel_total_time;dur=211.32262493483722;desc=\"Elapsed time\", SQLPanel_sql_time;dur=26.35362488217652;desc=\"SQL 15 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "df88c6ac-538f-4dd1-b58f-28607246a599", "level": "INFO", "time": "2024-05-13T23:22:33.090690", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/comments/1/vote_negative/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/1/vote_negative/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "db79aa3f-74fb-44a7-b2ee-a1fec14fe318", "level": "INFO", "time": "2024-05-13T23:22:33.247307", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "0", "path_info": "/api/comments/1/vote_negative/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/1/vote_negative/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "1ae6ac283e8646d4a5fee65571790291", "Server-Timing": "TimerPanel_utime;dur=88.99100000000004;desc=\"User CPU time\", TimerPanel_stime;dur=24.132999999999072;desc=\"System CPU time\", TimerPanel_total;dur=113.12399999999911;desc=\"Total CPU time\", TimerPanel_total_time;dur=146.13829110749066;desc=\"Elapsed time\", SQLPanel_sql_time;dur=21.053914912045002;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "dc3a9f3e-3974-49cf-a86a-99cccbabfaef", "level": "INFO", "time": "2024-05-13T23:22:38.252043", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/comments/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e3c4fdc7-3364-4772-a0d1-fe3118ef0f2e", "level": "INFO", "time": "2024-05-13T23:22:38.653696", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "77", "path_info": "/api/comments/", "remote_addr": "127.0.0.1", "content_type": "application/json", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/", "data": {}, "user": 4}, "response": {"status": 201, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "874d3b60dcb54fd2ad9e83a6b51aa828", "Server-Timing": "TimerPanel_utime;dur=147.48300000000114;desc=\"User CPU time\", TimerPanel_stime;dur=42.901999999999774;desc=\"System CPU time\", TimerPanel_total;dur=190.3850000000009;desc=\"Total CPU time\", TimerPanel_total_time;dur=335.9652499202639;desc=\"Elapsed time\", SQLPanel_sql_time;dur=49.70041662454605;desc=\"SQL 20 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "606", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3ee56214-ed25-42f8-95c0-02f33e23b249", "level": "INFO", "time": "2024-05-13T23:22:46.572603", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "67", "path_info": "/api/comments/", "remote_addr": "127.0.0.1", "content_type": "application/json", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/", "data": {}, "user": 4}, "response": {"status": 201, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "bcce42ae85a04564b7c9f16ad94d1ffe", "Server-Timing": "TimerPanel_utime;dur=263.8309999999997;desc=\"User CPU time\", TimerPanel_stime;dur=29.899999999999594;desc=\"System CPU time\", TimerPanel_total;dur=293.73099999999926;desc=\"Total CPU time\", TimerPanel_total_time;dur=388.0004580132663;desc=\"Elapsed time\", SQLPanel_sql_time;dur=44.75766536779702;desc=\"SQL 21 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "596", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c82e3a43-e276-44af-8f00-398eb1e84399", "level": "INFO", "time": "2024-05-13T23:22:55.310675", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "90", "path_info": "/api/comments/", "remote_addr": "127.0.0.1", "content_type": "application/json", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/comments/", "data": {}, "user": 4}, "response": {"status": 201, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "06c516919f7644cd97f039a8a349170a", "Server-Timing": "TimerPanel_utime;dur=147.75000000000205;desc=\"User CPU time\", TimerPanel_stime;dur=53.96000000000001;desc=\"System CPU time\", TimerPanel_total;dur=201.71000000000205;desc=\"Total CPU time\", TimerPanel_total_time;dur=295.2007499989122;desc=\"Elapsed time\", SQLPanel_sql_time;dur=48.00124582834542;desc=\"SQL 18 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "619", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "32da65b3-36d9-4461-9fc3-f6db88d828b0", "level": "INFO", "time": "2024-05-13T23:22:58.060380", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/4/sso_logout/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/4/sso_logout/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "bf51791d-43bd-4935-9b74-e1128708d4ab", "level": "INFO", "time": "2024-05-13T23:22:58.137377", "request": {"method": "DELETE", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/4/sso_logout/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/4/sso_logout/", "user": null}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "DELETE, OPTIONS", "djdt-store-id": "1d4dbe15464e457983c32c9e86dc0a3a", "Server-Timing": "TimerPanel_utime;dur=41.98599999999786;desc=\"User CPU time\", TimerPanel_stime;dur=3.0959999999993215;desc=\"System CPU time\", TimerPanel_total;dur=45.08199999999718;desc=\"Total CPU time\", TimerPanel_total_time;dur=67.97254201956093;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.1933751199394464;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "fe557ac6-408c-43c9-9877-c56b9d1a6adc", "level": "INFO", "time": "2024-05-13T23:23:00.626688", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=816ccee87ba703c33c5e", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "78dbb56dbae34b30b0a322fb7d60d88b", "Server-Timing": "TimerPanel_utime;dur=6.86900000000179;desc=\"User CPU time\", TimerPanel_stime;dur=1.5199999999992997;desc=\"System CPU time\", TimerPanel_total;dur=8.38900000000109;desc=\"Total CPU time\", TimerPanel_total_time;dur=8.942666929215193;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "4277ef83-15f3-409f-a54f-d5f442ed92d1", "level": "INFO", "time": "2024-05-13T23:23:01.033920", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "ce6b742ce95284923de8", "state": "816ccee87ba703c33c5e", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=undefined", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "93c29ab007964cdc8137577a1a952509", "Server-Timing": "TimerPanel_utime;dur=114.92199999999997;desc=\"User CPU time\", TimerPanel_stime;dur=7.082000000000477;desc=\"System CPU time\", TimerPanel_total;dur=122.00400000000045;desc=\"Total CPU time\", TimerPanel_total_time;dur=315.9096671734005;desc=\"Elapsed time\", SQLPanel_sql_time;dur=30.882541555911303;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f7d9d64d-3489-41ea-a373-aa0133fb5f2a", "level": "INFO", "time": "2024-05-13T23:23:01.686688", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "886d03cf3df344698cdef59b29a68082", "Server-Timing": "TimerPanel_utime;dur=81.57599999999832;desc=\"User CPU time\", TimerPanel_stime;dur=21.255999999999275;desc=\"System CPU time\", TimerPanel_total;dur=102.83199999999759;desc=\"Total CPU time\", TimerPanel_total_time;dur=122.42324999533594;desc=\"Elapsed time\", SQLPanel_sql_time;dur=8.112582843750715;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1000", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "029a96cc-b3c1-4bf3-a147-a3915695635f", "level": "INFO", "time": "2024-05-13T23:23:01.743088", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "537d0d7f26964d4eb0af18479c918b87", "Server-Timing": "TimerPanel_utime;dur=30.986999999999654;desc=\"User CPU time\", TimerPanel_stime;dur=1.9969999999993604;desc=\"System CPU time\", TimerPanel_total;dur=32.983999999999014;desc=\"Total CPU time\", TimerPanel_total_time;dur=46.24775005504489;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.832958009094;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "8672", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "d271ab25-74b5-4ca4-8586-8ee800f7ad0d", "level": "INFO", "time": "2024-05-13T23:23:01.797131", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "56efb8b29615457486d35abd1e3ff5bf", "Server-Timing": "TimerPanel_utime;dur=25.646000000001834;desc=\"User CPU time\", TimerPanel_stime;dur=1.6749999999987608;desc=\"System CPU time\", TimerPanel_total;dur=27.321000000000595;desc=\"Total CPU time\", TimerPanel_total_time;dur=43.34087506867945;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.18987581320107;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1627", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5d6782da-d9f8-4ac7-9f72-461c114585d5", "level": "INFO", "time": "2024-05-13T23:23:01.882115", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "063228d83ed44d47b3a0d44588951907", "Server-Timing": "TimerPanel_utime;dur=60.676999999998316;desc=\"User CPU time\", TimerPanel_stime;dur=4.640999999999451;desc=\"System CPU time\", TimerPanel_total;dur=65.31799999999777;desc=\"Total CPU time\", TimerPanel_total_time;dur=65.48250000923872;desc=\"Elapsed time\", SQLPanel_sql_time;dur=5.980584071949124;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "277fe249-e343-4fff-82eb-15b705605485", "level": "INFO", "time": "2024-05-13T23:23:02.016107", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "bf1549971c984c138599335d8b83de1d", "Server-Timing": "TimerPanel_utime;dur=76.72499999999971;desc=\"User CPU time\", TimerPanel_stime;dur=5.141999999999314;desc=\"System CPU time\", TimerPanel_total;dur=81.86699999999902;desc=\"Total CPU time\", TimerPanel_total_time;dur=80.70437493734062;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.320041975006461;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "3b86d94d-4286-405b-8994-2afaee9d1c8c", "level": "INFO", "time": "2024-05-13T23:23:02.179206", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "4c09a662e5fa482f8c61ff41f553bdbb", "Server-Timing": "TimerPanel_utime;dur=31.830999999996834;desc=\"User CPU time\", TimerPanel_stime;dur=2.803000000000111;desc=\"System CPU time\", TimerPanel_total;dur=34.633999999996945;desc=\"Total CPU time\", TimerPanel_total_time;dur=67.52137490548193;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.738665651530027;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "cc81c4b4-5ec5-4aca-8f6d-d6cb8ff88af9", "level": "INFO", "time": "2024-05-13T23:23:03.781550", "request": {"method": "DELETE", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/4/sso_logout/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/4/sso_logout/", "user": null}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "DELETE, OPTIONS", "djdt-store-id": "f32d19ec365242ceaa78f1ce2d503e4f", "Server-Timing": "TimerPanel_utime;dur=44.14500000000032;desc=\"User CPU time\", TimerPanel_stime;dur=3.7680000000008818;desc=\"System CPU time\", TimerPanel_total;dur=47.913000000001205;desc=\"Total CPU time\", TimerPanel_total_time;dur=68.76112497411668;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.732165951281786;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e44457c5-3676-4d51-8aa8-b3a8705fe8bd", "level": "INFO", "time": "2024-05-13T23:23:14.963254", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=undefined"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=24cb481b14c93fb9c2c7", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "0c5d9b039bd64aeeb86eeb3d0dfbb024", "Server-Timing": "TimerPanel_utime;dur=7.000999999998925;desc=\"User CPU time\", TimerPanel_stime;dur=2.323000000000519;desc=\"System CPU time\", TimerPanel_total;dur=9.323999999999444;desc=\"Total CPU time\", TimerPanel_total_time;dur=9.53975017182529;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "81258c4b-2c3b-41ed-9346-0492dba24a10", "level": "INFO", "time": "2024-05-13T23:23:21.803552", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "67a2779e2341125e4d7e", "state": "24cb481b14c93fb9c2c7", "preferred_url": "None"}, "user": 1}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=undefined", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "4d6dff7c80fb43b78d3a8777b442cc1c", "Server-Timing": "TimerPanel_utime;dur=154.71600000000052;desc=\"User CPU time\", TimerPanel_stime;dur=15.522000000000702;desc=\"System CPU time\", TimerPanel_total;dur=170.23800000000122;desc=\"Total CPU time\", TimerPanel_total_time;dur=383.6444579064846;desc=\"Elapsed time\", SQLPanel_sql_time;dur=34.8320824559778;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "a8978d4b-e3c8-4c87-91d8-9c066966605a", "level": "INFO", "time": "2024-05-13T23:23:22.662917", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e23721f4-262d-4a22-be7f-b20a94f7d014", "level": "INFO", "time": "2024-05-13T23:23:23.052021", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "f7d913b7b3b64d79a751b00c09497c48", "Server-Timing": "TimerPanel_utime;dur=240.39900000000003;desc=\"User CPU time\", TimerPanel_stime;dur=40.894999999999015;desc=\"System CPU time\", TimerPanel_total;dur=281.2939999999991;desc=\"Total CPU time\", TimerPanel_total_time;dur=319.621582981199;desc=\"Elapsed time\", SQLPanel_sql_time;dur=9.739414090290666;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1515", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5a4182a2-d6c6-4c70-942d-65b396b4e878", "level": "INFO", "time": "2024-05-13T23:23:23.058913", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "22e303d8-ef3a-40cb-9186-0cc65f100773", "level": "INFO", "time": "2024-05-13T23:23:23.114157", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "46f4b4cd71b148cfb7aaa1dd66c38d6d", "Server-Timing": "TimerPanel_utime;dur=30.37299999999732;desc=\"User CPU time\", TimerPanel_stime;dur=1.9399999999993867;desc=\"System CPU time\", TimerPanel_total;dur=32.312999999996705;desc=\"Total CPU time\", TimerPanel_total_time;dur=49.08845806494355;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.5384593065828085;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "8672", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "437ff9d5-80f7-4fc2-9a72-135e0f05198e", "level": "INFO", "time": "2024-05-13T23:23:23.119821", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e3b4fda6-6279-443f-b43d-d1f5b6b92def", "level": "INFO", "time": "2024-05-13T23:23:23.178803", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "4c1fb101205849fda8fd998f0899d0c5", "Server-Timing": "TimerPanel_utime;dur=26.55499999999833;desc=\"User CPU time\", TimerPanel_stime;dur=1.7399999999998528;desc=\"System CPU time\", TimerPanel_total;dur=28.294999999998183;desc=\"Total CPU time\", TimerPanel_total_time;dur=48.32733306102455;desc=\"Elapsed time\", SQLPanel_sql_time;dur=2.8790407814085484;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1627", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c578aa28-8ed9-4a34-bbc8-c81579f0d26a", "level": "INFO", "time": "2024-05-13T23:23:23.184824", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "fc17f7ec-f94e-4b86-b886-a54c613b3018", "level": "INFO", "time": "2024-05-13T23:23:23.186274", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "183686c1-9c47-427b-a125-f44f3dbc3737", "level": "INFO", "time": "2024-05-13T23:23:23.253655", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "8d74bbed66484e1f8b7e6effae67589e", "Server-Timing": "TimerPanel_utime;dur=46.791999999999945;desc=\"User CPU time\", TimerPanel_stime;dur=6.3069999999996185;desc=\"System CPU time\", TimerPanel_total;dur=53.09899999999956;desc=\"Total CPU time\", TimerPanel_total_time;dur=50.69937510415912;desc=\"Elapsed time\", SQLPanel_sql_time;dur=6.246999138966203;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "0b453500-66e3-47bb-896b-1c3e60f0c7ff", "level": "INFO", "time": "2024-05-13T23:23:23.343915", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "3598f70a76a242cba82a151108a80b9a", "Server-Timing": "TimerPanel_utime;dur=61.59800000000004;desc=\"User CPU time\", TimerPanel_stime;dur=7.856000000000307;desc=\"System CPU time\", TimerPanel_total;dur=69.45400000000035;desc=\"Total CPU time\", TimerPanel_total_time;dur=64.893749775365;desc=\"Elapsed time\", SQLPanel_sql_time;dur=8.727249689400196;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "d4df16fc-5de1-4a48-aa51-e332ebf07034", "level": "INFO", "time": "2024-05-13T23:23:23.429246", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c3c59255-fefb-4913-a143-1b8fa6467fbc", "level": "INFO", "time": "2024-05-13T23:23:23.518936", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "43ac4e2dbb134adcb495ec0a4db5bae7", "Server-Timing": "TimerPanel_utime;dur=54.660999999999405;desc=\"User CPU time\", TimerPanel_stime;dur=2.5959999999987105;desc=\"System CPU time\", TimerPanel_total;dur=57.256999999998115;desc=\"Total CPU time\", TimerPanel_total_time;dur=80.80541691742837;desc=\"Elapsed time\", SQLPanel_sql_time;dur=10.554876178503036;desc=\"SQL 6 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "3926", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "9dce669f-5796-447f-8462-3f694c75d6a8", "level": "INFO", "time": "2024-05-13T23:23:38.231211", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6ed9f28f-e959-4084-8968-d5caa8c3adc2", "level": "INFO", "time": "2024-05-13T23:23:38.491983", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "3d62f6189c3f4e0eb34d63bc1fdde0e5", "Server-Timing": "TimerPanel_utime;dur=72.09699999999941;desc=\"User CPU time\", TimerPanel_stime;dur=4.016999999999271;desc=\"System CPU time\", TimerPanel_total;dur=76.11399999999868;desc=\"Total CPU time\", TimerPanel_total_time;dur=92.76237501762807;desc=\"Elapsed time\", SQLPanel_sql_time;dur=8.944457629695535;desc=\"SQL 7 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "7461", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5ce50b66-3b29-4c71-a261-f9f9dfcbb381", "level": "INFO", "time": "2024-05-13T23:23:38.580599", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "9ed6926b3e4e413aa176ae0bcbbfcb9f", "Server-Timing": "TimerPanel_utime;dur=32.21399999999974;desc=\"User CPU time\", TimerPanel_stime;dur=2.1380000000004173;desc=\"System CPU time\", TimerPanel_total;dur=34.35200000000016;desc=\"Total CPU time\", TimerPanel_total_time;dur=51.551332930102944;desc=\"Elapsed time\", SQLPanel_sql_time;dur=6.1179581098258495;desc=\"SQL 6 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "3926", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "d0e59ec6-0c54-4083-b1a3-ce912bdf2bd2", "level": "INFO", "time": "2024-05-13T23:23:57.961515", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/9/read/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/9/read/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "48017608-0075-444d-a584-7a3de0898248", "level": "INFO", "time": "2024-05-13T23:23:58.124717", "request": {"method": "POST", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "0", "path_info": "/api/notifications/9/read/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/9/read/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "POST, OPTIONS", "djdt-store-id": "56c7868ebcb74719aba1cf147563b36c", "Server-Timing": "TimerPanel_utime;dur=68.53100000000012;desc=\"User CPU time\", TimerPanel_stime;dur=4.348000000000241;desc=\"System CPU time\", TimerPanel_total;dur=72.87900000000036;desc=\"Total CPU time\", TimerPanel_total_time;dur=92.83962496556342;desc=\"Elapsed time\", SQLPanel_sql_time;dur=11.151874205097556;desc=\"SQL 8 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1939530c-ba61-484f-a79d-b7c252782759", "level": "INFO", "time": "2024-05-13T23:23:58.131634", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e9b6f40c-487e-4ad9-8777-febcd6336c9f", "level": "INFO", "time": "2024-05-13T23:23:58.420152", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/1/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/1/", "data": {"from_view": "all"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, PUT, PATCH, DELETE, HEAD, OPTIONS", "djdt-store-id": "9666997e8de6461aa4d697b0b2ab0e58", "Server-Timing": "TimerPanel_utime;dur=182.20300000000123;desc=\"User CPU time\", TimerPanel_stime;dur=20.459999999999923;desc=\"System CPU time\", TimerPanel_total;dur=202.66300000000115;desc=\"Total CPU time\", TimerPanel_total_time;dur=282.83074987120926;desc=\"Elapsed time\", SQLPanel_sql_time;dur=29.849957209080458;desc=\"SQL 19 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "8375", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c742573b-95e3-4bb5-922b-15fefcd89887", "level": "INFO", "time": "2024-05-13T23:23:58.480502", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "25635a8f-a125-4fb6-a451-039271d02aee", "level": "INFO", "time": "2024-05-13T23:23:58.559560", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "c6a9ffb82b4149ccb572d215dd77aa55", "Server-Timing": "TimerPanel_utime;dur=70.69100000000006;desc=\"User CPU time\", TimerPanel_stime;dur=4.260000000000375;desc=\"System CPU time\", TimerPanel_total;dur=74.95100000000043;desc=\"Total CPU time\", TimerPanel_total_time;dur=74.51154082082212;desc=\"Elapsed time\", SQLPanel_sql_time;dur=11.220209067687392;desc=\"SQL 6 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "3035", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "57ca1cd9-943f-4e8a-986f-249e5909ae23", "level": "INFO", "time": "2024-05-13T23:23:58.831659", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/recent/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/recent/", "data": {"page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "1bcc5abf00c74bffa2a3b075a88ac4b3", "Server-Timing": "TimerPanel_utime;dur=239.2959999999995;desc=\"User CPU time\", TimerPanel_stime;dur=25.481000000000975;desc=\"System CPU time\", TimerPanel_total;dur=264.7770000000005;desc=\"Total CPU time\", TimerPanel_total_time;dur=267.4700408242643;desc=\"Elapsed time\", SQLPanel_sql_time;dur=28.14545831643045;desc=\"SQL 13 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1497", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b0b2d63d-a613-4ba9-82f1-8e2272c5c5b2", "level": "INFO", "time": "2024-05-13T23:23:58.839327", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "5d31148b-dbc1-43f6-a84c-ceb588bdd156", "level": "INFO", "time": "2024-05-13T23:23:58.885183", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/scraps/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/scraps/", "data": {"page_size": "5"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "8381dcb8340d4d2b9c7a825085320d12", "Server-Timing": "TimerPanel_utime;dur=24.207000000000534;desc=\"User CPU time\", TimerPanel_stime;dur=1.5380000000000393;desc=\"System CPU time\", TimerPanel_total;dur=25.745000000000573;desc=\"Total CPU time\", TimerPanel_total_time;dur=37.764874985441566;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.3012491185218096;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "699cc26c-e5f6-430b-a72c-d544a2508857", "level": "INFO", "time": "2024-05-13T23:24:00.974150", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "f4f2851652224d888169539dbf349f2a", "Server-Timing": "TimerPanel_utime;dur=51.69199999999918;desc=\"User CPU time\", TimerPanel_stime;dur=10.84900000000033;desc=\"System CPU time\", TimerPanel_total;dur=62.540999999999514;desc=\"Total CPU time\", TimerPanel_total_time;dur=68.2922089472413;desc=\"Elapsed time\", SQLPanel_sql_time;dur=9.130459977313876;desc=\"SQL 7 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "7460", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6da7c630-ceaa-499f-b425-4ad05f7933d0", "level": "INFO", "time": "2024-05-13T23:24:01.050606", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 1}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "2d39eb3beb254f0b87867c762f496cbe", "Server-Timing": "TimerPanel_utime;dur=33.08200000000028;desc=\"User CPU time\", TimerPanel_stime;dur=2.093999999999596;desc=\"System CPU time\", TimerPanel_total;dur=35.175999999999874;desc=\"Total CPU time\", TimerPanel_total_time;dur=53.09187504462898;desc=\"Elapsed time\", SQLPanel_sql_time;dur=7.091460283845663;desc=\"SQL 6 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "3035", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "27f547d2-da6f-4c54-a683-1d127f964fba", "level": "INFO", "time": "2024-05-13T23:43:28.666677", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=08727c2a4bfb6dff69dc", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "a9d8609239de402d95e76569b54ef3a5", "Server-Timing": "TimerPanel_utime;dur=26.839999999999975;desc=\"User CPU time\", TimerPanel_stime;dur=9.887999999996566;desc=\"System CPU time\", TimerPanel_total;dur=36.72799999999654;desc=\"Total CPU time\", TimerPanel_total_time;dur=64.28016605786979;desc=\"Elapsed time\", SQLPanel_sql_time;dur=6.321124732494354;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "101d21bd-0d05-41db-84da-6a36700cd888", "level": "INFO", "time": "2024-05-13T23:43:29.319819", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "c380fe33577fd7b8c1c2", "state": "08727c2a4bfb6dff69dc", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://192.168.11.183:8080/login-handler?link=http://192.168.11.183:8080/", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "34536cde2c95483d8ebdcda444da3654", "Server-Timing": "TimerPanel_utime;dur=100.01899999999608;desc=\"User CPU time\", TimerPanel_stime;dur=14.257999999998106;desc=\"System CPU time\", TimerPanel_total;dur=114.27699999999419;desc=\"Total CPU time\", TimerPanel_total_time;dur=515.8068330492824;desc=\"Elapsed time\", SQLPanel_sql_time;dur=26.51549899019301;desc=\"SQL 9 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "c56550b1-2c25-4af0-afd1-48036331e97e", "level": "WARNING", "time": "2024-05-13T23:43:30.570357", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "d59c00eb949648959431c6612530c575", "Server-Timing": "TimerPanel_utime;dur=9.602000000000999;desc=\"User CPU time\", TimerPanel_stime;dur=5.416000000003862;desc=\"System CPU time\", TimerPanel_total;dur=15.01800000000486;desc=\"Total CPU time\", TimerPanel_total_time;dur=22.879290860146284;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "379021e1-a2fe-4ead-ade8-1099c9e6e7d6", "level": "WARNING", "time": "2024-05-13T23:43:30.628594", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "385a24e78d444cd382ff220064b04d91", "Server-Timing": "TimerPanel_utime;dur=6.224999999993486;desc=\"User CPU time\", TimerPanel_stime;dur=1.5070000000036998;desc=\"System CPU time\", TimerPanel_total;dur=7.731999999997186;desc=\"Total CPU time\", TimerPanel_total_time;dur=11.161499889567494;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://192.168.11.183:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "887bb8fc-0166-4c10-918e-c295a1f23313", "level": "INFO", "time": "2024-05-13T23:46:34.036677", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "21aa506b-077c-41de-b490-402e623e69a6", "level": "WARNING", "time": "2024-05-13T23:46:34.313315", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": null}, "response": {"status": 401, "headers": {"Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "9d978f6d203c4aeebdb3f480b4436217", "Server-Timing": "TimerPanel_utime;dur=7.274000000002445;desc=\"User CPU time\", TimerPanel_stime;dur=6.636000000000308;desc=\"System CPU time\", TimerPanel_total;dur=13.910000000002753;desc=\"Total CPU time\", TimerPanel_total_time;dur=29.55775009468198;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6655d7d1-0d00-42a8-9304-9c4fae1cf6e7", "level": "INFO", "time": "2024-05-13T23:46:39.855322", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login/", "data": {"next": "http://127.0.0.1:8080/login-handler?link=http://127.0.0.1:8080/"}, "user": null}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "https://sparcssso.kaist.ac.kr/api/v2/token/require/?client_id=test90a16ded3512fe2f7dc8&state=06465b88387dc7d3b4a5", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e80103d51a0e403299baa01266490bf1", "Server-Timing": "TimerPanel_utime;dur=7.753999999998484;desc=\"User CPU time\", TimerPanel_stime;dur=1.7010000000041714;desc=\"System CPU time\", TimerPanel_total;dur=9.455000000002656;desc=\"Total CPU time\", TimerPanel_total_time;dur=10.223374934867024;desc=\"Elapsed time\", SQLPanel_sql_time;dur=0;desc=\"SQL 0 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "f58de943-816e-4d15-ad84-02a10cebd849", "level": "INFO", "time": "2024-05-13T23:46:40.534949", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/users/sso_login_callback/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/users/sso_login_callback/", "data": {"code": "ee6d1658ee59cb68ff24", "state": "06465b88387dc7d3b4a5", "preferred_url": "None"}, "user": 4}, "response": {"status": 302, "headers": {"Content-Type": "text/html; charset=utf-8", "Location": "http://127.0.0.1:8080/login-handler?link=http://127.0.0.1:8080/", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "1f93a5bc189d4feab995b987244b8e2e", "Server-Timing": "TimerPanel_utime;dur=190.03099999999762;desc=\"User CPU time\", TimerPanel_stime;dur=41.27099999999473;desc=\"System CPU time\", TimerPanel_total;dur=231.30199999999235;desc=\"Total CPU time\", TimerPanel_total_time;dur=542.1267501078546;desc=\"Elapsed time\", SQLPanel_sql_time;dur=33.337416127324104;desc=\"SQL 14 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "0", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "bdd011aa-d6fb-40e0-b84c-688c726946d5", "level": "INFO", "time": "2024-05-13T23:46:41.543498", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "836dca62-e504-45a4-adc1-d288b31f92d6", "level": "INFO", "time": "2024-05-13T23:46:41.760539", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/me", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/me", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, Cookie, origin, Accept-Language", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "f0f705612cf1482bb2802f307bc43974", "Server-Timing": "TimerPanel_utime;dur=103.07899999999393;desc=\"User CPU time\", TimerPanel_stime;dur=31.269000000001768;desc=\"System CPU time\", TimerPanel_total;dur=134.3479999999957;desc=\"Total CPU time\", TimerPanel_total_time;dur=205.9179579373449;desc=\"Elapsed time\", SQLPanel_sql_time;dur=9.147249860689044;desc=\"SQL 8 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1000", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "b1098086-f2ff-4a98-a32a-5c9f2e701cba", "level": "INFO", "time": "2024-05-13T23:46:41.790458", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "2d104b11-2e24-481d-bd1e-a0628710dd62", "level": "INFO", "time": "2024-05-13T23:46:41.863333", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/boards/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/boards/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "e1073939ae244dda9aad459a64c3b1cf", "Server-Timing": "TimerPanel_utime;dur=39.49199999999564;desc=\"User CPU time\", TimerPanel_stime;dur=3.616000000000952;desc=\"System CPU time\", TimerPanel_total;dur=43.10799999999659;desc=\"Total CPU time\", TimerPanel_total_time;dur=65.08891587145627;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.036292200908065;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "8672", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "1b2ecd4e-a17e-42f9-8f17-3264be67489c", "level": "INFO", "time": "2024-05-13T23:46:41.868691", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "cf6fb461-8477-4fd4-9f05-81f34eacd676", "level": "INFO", "time": "2024-05-13T23:46:41.920973", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/board_groups/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/board_groups/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "fd594e9093c84dd396106f15d141b792", "Server-Timing": "TimerPanel_utime;dur=27.003000000000554;desc=\"User CPU time\", TimerPanel_stime;dur=1.9789999999986208;desc=\"System CPU time\", TimerPanel_total;dur=28.981999999999175;desc=\"Total CPU time\", TimerPanel_total_time;dur=43.87458320707083;desc=\"Elapsed time\", SQLPanel_sql_time;dur=3.139165695756674;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "1627", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "979d9816-f382-42d5-88f1-b071e1af2d0b", "level": "INFO", "time": "2024-05-13T23:46:41.927551", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "e42acad7-c38d-4530-85b0-94ae870a19b9", "level": "INFO", "time": "2024-05-13T23:46:41.928947", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "6ace479f-9bfc-47c8-9781-1b39f2f4d5c7", "level": "INFO", "time": "2024-05-13T23:46:42.027654", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/home/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/home/", "data": {}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "42e61893ebfc4229bc7dc5ca84137439", "Server-Timing": "TimerPanel_utime;dur=63.83199999999789;desc=\"User CPU time\", TimerPanel_stime;dur=6.2469999999947845;desc=\"System CPU time\", TimerPanel_total;dur=70.07899999999267;desc=\"Total CPU time\", TimerPanel_total_time;dur=79.65687499381602;desc=\"Elapsed time\", SQLPanel_sql_time;dur=6.428458029404283;desc=\"SQL 4 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "36", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "7ddc7c49-370a-4b9e-bbb1-6cfed8840a9f", "level": "INFO", "time": "2024-05-13T23:46:42.114035", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/articles/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/articles/", "data": {"parent_board": "8", "page_size": "5"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, POST, HEAD, OPTIONS", "djdt-store-id": "0189630c45b14f00a410f2cc6f2e5a8a", "Server-Timing": "TimerPanel_utime;dur=79.87899999999826;desc=\"User CPU time\", TimerPanel_stime;dur=7.038999999998907;desc=\"System CPU time\", TimerPanel_total;dur=86.91799999999716;desc=\"Total CPU time\", TimerPanel_total_time;dur=94.71358405426145;desc=\"Elapsed time\", SQLPanel_sql_time;dur=14.21083277091384;desc=\"SQL 5 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "0e5cb15f-0858-430c-91b9-dbf3298b3588", "level": "INFO", "time": "2024-05-13T23:46:42.186975", "request": {"method": "OPTIONS", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "user": null}, "response": {"status": 200, "headers": {"content-length": "0", "Content-Type": "text/html; charset=utf-8", "Vary": "origin, Accept-Language, Cookie", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "access-control-allow-headers": "accept, authorization, content-type, user-agent, x-csrftoken, x-requested-with", "access-control-allow-methods": "DELETE, GET, OPTIONS, PATCH, POST, PUT", "access-control-max-age": "86400", "X-Frame-Options": "DENY", "Content-Language": "ko", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}} +{"id": "7146c688-f73c-497d-84ae-4db7da51c503", "level": "INFO", "time": "2024-05-13T23:46:42.264399", "request": {"method": "GET", "meta": {"tz": "Asia/Seoul", "remote_host": "", "content_length": "", "path_info": "/api/notifications/", "remote_addr": "127.0.0.1", "content_type": "text/plain", "http_host": "127.0.0.1:9000", "http_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36"}, "path": "/api/notifications/", "data": {"page": "1", "is_read": "0"}, "user": 4}, "response": {"status": 200, "headers": {"Content-Type": "application/json", "Vary": "Accept, origin, Accept-Language, Cookie", "Allow": "GET, HEAD, OPTIONS", "djdt-store-id": "f043ce49df3b40878cab72f0af1ddf70", "Server-Timing": "TimerPanel_utime;dur=32.17300000000023;desc=\"User CPU time\", TimerPanel_stime;dur=2.7150000000020214;desc=\"System CPU time\", TimerPanel_total;dur=34.88800000000225;desc=\"Total CPU time\", TimerPanel_total_time;dur=62.31491710059345;desc=\"Elapsed time\", SQLPanel_sql_time;dur=4.70920791849494;desc=\"SQL 3 queries\", CachePanel_total_time;dur=0;desc=\"Cache 0 Calls\"", "access-control-allow-origin": "http://127.0.0.1:8080", "access-control-allow-credentials": "true", "X-Frame-Options": "DENY", "Content-Language": "ko", "Content-Length": "82", "X-Content-Type-Options": "nosniff", "Referrer-Policy": "same-origin", "Cross-Origin-Opener-Policy": "same-origin"}, "charset": "utf-8"}}