##// END OF EJS Templates
normalize bool.filter format for elasticsearch 5.x
ergo -
Show More
@@ -1,708 +1,708 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
4 #
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
7 # You may obtain a copy of the License at
8 #
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
10 #
11 # Unless required by applicable law or agreed to in writing, software
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
15 # limitations under the License.
16
16
17 import bisect
17 import bisect
18 import collections
18 import collections
19 import math
19 import math
20 from datetime import datetime, timedelta
20 from datetime import datetime, timedelta
21
21
22 import sqlalchemy as sa
22 import sqlalchemy as sa
23 import elasticsearch.exceptions
23 import elasticsearch.exceptions
24 import elasticsearch.helpers
24 import elasticsearch.helpers
25
25
26 from celery.utils.log import get_task_logger
26 from celery.utils.log import get_task_logger
27 from zope.sqlalchemy import mark_changed
27 from zope.sqlalchemy import mark_changed
28 from pyramid.threadlocal import get_current_request, get_current_registry
28 from pyramid.threadlocal import get_current_request, get_current_registry
29 from ziggurat_foundations.models.services.resource import ResourceService
29 from ziggurat_foundations.models.services.resource import ResourceService
30
30
31 from appenlight.celery import celery
31 from appenlight.celery import celery
32 from appenlight.models.report_group import ReportGroup
32 from appenlight.models.report_group import ReportGroup
33 from appenlight.models import DBSession, Datastores
33 from appenlight.models import DBSession, Datastores
34 from appenlight.models.report import Report
34 from appenlight.models.report import Report
35 from appenlight.models.log import Log
35 from appenlight.models.log import Log
36 from appenlight.models.metric import Metric
36 from appenlight.models.metric import Metric
37 from appenlight.models.event import Event
37 from appenlight.models.event import Event
38
38
39 from appenlight.models.services.application import ApplicationService
39 from appenlight.models.services.application import ApplicationService
40 from appenlight.models.services.event import EventService
40 from appenlight.models.services.event import EventService
41 from appenlight.models.services.log import LogService
41 from appenlight.models.services.log import LogService
42 from appenlight.models.services.report import ReportService
42 from appenlight.models.services.report import ReportService
43 from appenlight.models.services.report_group import ReportGroupService
43 from appenlight.models.services.report_group import ReportGroupService
44 from appenlight.models.services.user import UserService
44 from appenlight.models.services.user import UserService
45 from appenlight.models.tag import Tag
45 from appenlight.models.tag import Tag
46 from appenlight.lib import print_traceback
46 from appenlight.lib import print_traceback
47 from appenlight.lib.utils import parse_proto, in_batches
47 from appenlight.lib.utils import parse_proto, in_batches
48 from appenlight.lib.ext_json import json
48 from appenlight.lib.ext_json import json
49 from appenlight.lib.redis_keys import REDIS_KEYS
49 from appenlight.lib.redis_keys import REDIS_KEYS
50 from appenlight.lib.enums import ReportType
50 from appenlight.lib.enums import ReportType
51
51
52 log = get_task_logger(__name__)
52 log = get_task_logger(__name__)
53
53
54 sample_boundries = (
54 sample_boundries = (
55 list(range(100, 1000, 100))
55 list(range(100, 1000, 100))
56 + list(range(1000, 10000, 1000))
56 + list(range(1000, 10000, 1000))
57 + list(range(10000, 100000, 5000))
57 + list(range(10000, 100000, 5000))
58 )
58 )
59
59
60
60
61 def pick_sample(total_occurences, report_type=None):
61 def pick_sample(total_occurences, report_type=None):
62 every = 1.0
62 every = 1.0
63 position = bisect.bisect_left(sample_boundries, total_occurences)
63 position = bisect.bisect_left(sample_boundries, total_occurences)
64 if position > 0:
64 if position > 0:
65 if report_type == ReportType.not_found:
65 if report_type == ReportType.not_found:
66 divide = 10.0
66 divide = 10.0
67 else:
67 else:
68 divide = 100.0
68 divide = 100.0
69 every = sample_boundries[position - 1] / divide
69 every = sample_boundries[position - 1] / divide
70 return total_occurences % every == 0
70 return total_occurences % every == 0
71
71
72
72
73 @celery.task(queue="default", default_retry_delay=1, max_retries=2)
73 @celery.task(queue="default", default_retry_delay=1, max_retries=2)
74 def test_exception_task():
74 def test_exception_task():
75 log.error("test celery log", extra={"location": "celery"})
75 log.error("test celery log", extra={"location": "celery"})
76 log.warning("test celery log", extra={"location": "celery"})
76 log.warning("test celery log", extra={"location": "celery"})
77 raise Exception("Celery exception test")
77 raise Exception("Celery exception test")
78
78
79
79
80 @celery.task(queue="default", default_retry_delay=1, max_retries=2)
80 @celery.task(queue="default", default_retry_delay=1, max_retries=2)
81 def test_retry_exception_task():
81 def test_retry_exception_task():
82 try:
82 try:
83 import time
83 import time
84
84
85 time.sleep(1.3)
85 time.sleep(1.3)
86 log.error("test retry celery log", extra={"location": "celery"})
86 log.error("test retry celery log", extra={"location": "celery"})
87 log.warning("test retry celery log", extra={"location": "celery"})
87 log.warning("test retry celery log", extra={"location": "celery"})
88 raise Exception("Celery exception test")
88 raise Exception("Celery exception test")
89 except Exception as exc:
89 except Exception as exc:
90 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
90 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
91 raise
91 raise
92 test_retry_exception_task.retry(exc=exc)
92 test_retry_exception_task.retry(exc=exc)
93
93
94
94
95 @celery.task(queue="reports", default_retry_delay=600, max_retries=144)
95 @celery.task(queue="reports", default_retry_delay=600, max_retries=144)
96 def add_reports(resource_id, request_params, dataset, **kwargs):
96 def add_reports(resource_id, request_params, dataset, **kwargs):
97 proto_version = parse_proto(request_params.get("protocol_version", ""))
97 proto_version = parse_proto(request_params.get("protocol_version", ""))
98 current_time = datetime.utcnow().replace(second=0, microsecond=0)
98 current_time = datetime.utcnow().replace(second=0, microsecond=0)
99 try:
99 try:
100 # we will store solr docs here for single insert
100 # we will store solr docs here for single insert
101 es_report_docs = {}
101 es_report_docs = {}
102 es_report_group_docs = {}
102 es_report_group_docs = {}
103 resource = ApplicationService.by_id(resource_id)
103 resource = ApplicationService.by_id(resource_id)
104
104
105 tags = []
105 tags = []
106 es_slow_calls_docs = {}
106 es_slow_calls_docs = {}
107 es_reports_stats_rows = {}
107 es_reports_stats_rows = {}
108 for report_data in dataset:
108 for report_data in dataset:
109 # build report details for later
109 # build report details for later
110 added_details = 0
110 added_details = 0
111 report = Report()
111 report = Report()
112 report.set_data(report_data, resource, proto_version)
112 report.set_data(report_data, resource, proto_version)
113 report._skip_ft_index = True
113 report._skip_ft_index = True
114
114
115 # find latest group in this months partition
115 # find latest group in this months partition
116 report_group = ReportGroupService.by_hash_and_resource(
116 report_group = ReportGroupService.by_hash_and_resource(
117 report.resource_id,
117 report.resource_id,
118 report.grouping_hash,
118 report.grouping_hash,
119 since_when=datetime.utcnow().date().replace(day=1),
119 since_when=datetime.utcnow().date().replace(day=1),
120 )
120 )
121 occurences = report_data.get("occurences", 1)
121 occurences = report_data.get("occurences", 1)
122 if not report_group:
122 if not report_group:
123 # total reports will be +1 moment later
123 # total reports will be +1 moment later
124 report_group = ReportGroup(
124 report_group = ReportGroup(
125 grouping_hash=report.grouping_hash,
125 grouping_hash=report.grouping_hash,
126 occurences=0,
126 occurences=0,
127 total_reports=0,
127 total_reports=0,
128 last_report=0,
128 last_report=0,
129 priority=report.priority,
129 priority=report.priority,
130 error=report.error,
130 error=report.error,
131 first_timestamp=report.start_time,
131 first_timestamp=report.start_time,
132 )
132 )
133 report_group._skip_ft_index = True
133 report_group._skip_ft_index = True
134 report_group.report_type = report.report_type
134 report_group.report_type = report.report_type
135 report.report_group_time = report_group.first_timestamp
135 report.report_group_time = report_group.first_timestamp
136 add_sample = pick_sample(
136 add_sample = pick_sample(
137 report_group.occurences, report_type=report_group.report_type
137 report_group.occurences, report_type=report_group.report_type
138 )
138 )
139 if add_sample:
139 if add_sample:
140 resource.report_groups.append(report_group)
140 resource.report_groups.append(report_group)
141 report_group.reports.append(report)
141 report_group.reports.append(report)
142 added_details += 1
142 added_details += 1
143 DBSession.flush()
143 DBSession.flush()
144 if report.partition_id not in es_report_docs:
144 if report.partition_id not in es_report_docs:
145 es_report_docs[report.partition_id] = []
145 es_report_docs[report.partition_id] = []
146 es_report_docs[report.partition_id].append(report.es_doc())
146 es_report_docs[report.partition_id].append(report.es_doc())
147 tags.extend(list(report.tags.items()))
147 tags.extend(list(report.tags.items()))
148 slow_calls = report.add_slow_calls(report_data, report_group)
148 slow_calls = report.add_slow_calls(report_data, report_group)
149 DBSession.flush()
149 DBSession.flush()
150 for s_call in slow_calls:
150 for s_call in slow_calls:
151 if s_call.partition_id not in es_slow_calls_docs:
151 if s_call.partition_id not in es_slow_calls_docs:
152 es_slow_calls_docs[s_call.partition_id] = []
152 es_slow_calls_docs[s_call.partition_id] = []
153 es_slow_calls_docs[s_call.partition_id].append(s_call.es_doc())
153 es_slow_calls_docs[s_call.partition_id].append(s_call.es_doc())
154 # try generating new stat rows if needed
154 # try generating new stat rows if needed
155 else:
155 else:
156 # required for postprocessing to not fail later
156 # required for postprocessing to not fail later
157 report.report_group = report_group
157 report.report_group = report_group
158
158
159 stat_row = ReportService.generate_stat_rows(report, resource, report_group)
159 stat_row = ReportService.generate_stat_rows(report, resource, report_group)
160 if stat_row.partition_id not in es_reports_stats_rows:
160 if stat_row.partition_id not in es_reports_stats_rows:
161 es_reports_stats_rows[stat_row.partition_id] = []
161 es_reports_stats_rows[stat_row.partition_id] = []
162 es_reports_stats_rows[stat_row.partition_id].append(stat_row.es_doc())
162 es_reports_stats_rows[stat_row.partition_id].append(stat_row.es_doc())
163
163
164 # see if we should mark 10th occurence of report
164 # see if we should mark 10th occurence of report
165 last_occurences_10 = int(math.floor(report_group.occurences / 10))
165 last_occurences_10 = int(math.floor(report_group.occurences / 10))
166 curr_occurences_10 = int(
166 curr_occurences_10 = int(
167 math.floor((report_group.occurences + report.occurences) / 10)
167 math.floor((report_group.occurences + report.occurences) / 10)
168 )
168 )
169 last_occurences_100 = int(math.floor(report_group.occurences / 100))
169 last_occurences_100 = int(math.floor(report_group.occurences / 100))
170 curr_occurences_100 = int(
170 curr_occurences_100 = int(
171 math.floor((report_group.occurences + report.occurences) / 100)
171 math.floor((report_group.occurences + report.occurences) / 100)
172 )
172 )
173 notify_occurences_10 = last_occurences_10 != curr_occurences_10
173 notify_occurences_10 = last_occurences_10 != curr_occurences_10
174 notify_occurences_100 = last_occurences_100 != curr_occurences_100
174 notify_occurences_100 = last_occurences_100 != curr_occurences_100
175 report_group.occurences = ReportGroup.occurences + occurences
175 report_group.occurences = ReportGroup.occurences + occurences
176 report_group.last_timestamp = report.start_time
176 report_group.last_timestamp = report.start_time
177 report_group.summed_duration = ReportGroup.summed_duration + report.duration
177 report_group.summed_duration = ReportGroup.summed_duration + report.duration
178 summed_duration = ReportGroup.summed_duration + report.duration
178 summed_duration = ReportGroup.summed_duration + report.duration
179 summed_occurences = ReportGroup.occurences + occurences
179 summed_occurences = ReportGroup.occurences + occurences
180 report_group.average_duration = summed_duration / summed_occurences
180 report_group.average_duration = summed_duration / summed_occurences
181 report_group.run_postprocessing(report)
181 report_group.run_postprocessing(report)
182 if added_details:
182 if added_details:
183 report_group.total_reports = ReportGroup.total_reports + 1
183 report_group.total_reports = ReportGroup.total_reports + 1
184 report_group.last_report = report.id
184 report_group.last_report = report.id
185 report_group.set_notification_info(
185 report_group.set_notification_info(
186 notify_10=notify_occurences_10, notify_100=notify_occurences_100
186 notify_10=notify_occurences_10, notify_100=notify_occurences_100
187 )
187 )
188 DBSession.flush()
188 DBSession.flush()
189 report_group.get_report().notify_channel(report_group)
189 report_group.get_report().notify_channel(report_group)
190 if report_group.partition_id not in es_report_group_docs:
190 if report_group.partition_id not in es_report_group_docs:
191 es_report_group_docs[report_group.partition_id] = []
191 es_report_group_docs[report_group.partition_id] = []
192 es_report_group_docs[report_group.partition_id].append(
192 es_report_group_docs[report_group.partition_id].append(
193 report_group.es_doc()
193 report_group.es_doc()
194 )
194 )
195
195
196 action = "REPORT"
196 action = "REPORT"
197 log_msg = "%s: %s %s, client: %s, proto: %s" % (
197 log_msg = "%s: %s %s, client: %s, proto: %s" % (
198 action,
198 action,
199 report_data.get("http_status", "unknown"),
199 report_data.get("http_status", "unknown"),
200 str(resource),
200 str(resource),
201 report_data.get("client"),
201 report_data.get("client"),
202 proto_version,
202 proto_version,
203 )
203 )
204 log.info(log_msg)
204 log.info(log_msg)
205 total_reports = len(dataset)
205 total_reports = len(dataset)
206 redis_pipeline = Datastores.redis.pipeline(transaction=False)
206 redis_pipeline = Datastores.redis.pipeline(transaction=False)
207 key = REDIS_KEYS["counters"]["reports_per_minute"].format(current_time)
207 key = REDIS_KEYS["counters"]["reports_per_minute"].format(current_time)
208 redis_pipeline.incr(key, total_reports)
208 redis_pipeline.incr(key, total_reports)
209 redis_pipeline.expire(key, 3600 * 24)
209 redis_pipeline.expire(key, 3600 * 24)
210 key = REDIS_KEYS["counters"]["events_per_minute_per_user"].format(
210 key = REDIS_KEYS["counters"]["events_per_minute_per_user"].format(
211 resource.owner_user_id, current_time
211 resource.owner_user_id, current_time
212 )
212 )
213 redis_pipeline.incr(key, total_reports)
213 redis_pipeline.incr(key, total_reports)
214 redis_pipeline.expire(key, 3600)
214 redis_pipeline.expire(key, 3600)
215 key = REDIS_KEYS["counters"]["reports_per_hour_per_app"].format(
215 key = REDIS_KEYS["counters"]["reports_per_hour_per_app"].format(
216 resource_id, current_time.replace(minute=0)
216 resource_id, current_time.replace(minute=0)
217 )
217 )
218 redis_pipeline.incr(key, total_reports)
218 redis_pipeline.incr(key, total_reports)
219 redis_pipeline.expire(key, 3600 * 24 * 7)
219 redis_pipeline.expire(key, 3600 * 24 * 7)
220 redis_pipeline.sadd(
220 redis_pipeline.sadd(
221 REDIS_KEYS["apps_that_got_new_data_per_hour"].format(
221 REDIS_KEYS["apps_that_got_new_data_per_hour"].format(
222 current_time.replace(minute=0)
222 current_time.replace(minute=0)
223 ),
223 ),
224 resource_id,
224 resource_id,
225 )
225 )
226 redis_pipeline.execute()
226 redis_pipeline.execute()
227
227
228 add_reports_es(es_report_group_docs, es_report_docs)
228 add_reports_es(es_report_group_docs, es_report_docs)
229 add_reports_slow_calls_es(es_slow_calls_docs)
229 add_reports_slow_calls_es(es_slow_calls_docs)
230 add_reports_stats_rows_es(es_reports_stats_rows)
230 add_reports_stats_rows_es(es_reports_stats_rows)
231 return True
231 return True
232 except Exception as exc:
232 except Exception as exc:
233 print_traceback(log)
233 print_traceback(log)
234 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
234 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
235 raise
235 raise
236 add_reports.retry(exc=exc)
236 add_reports.retry(exc=exc)
237
237
238
238
239 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
239 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
240 def add_reports_es(report_group_docs, report_docs):
240 def add_reports_es(report_group_docs, report_docs):
241 for k, v in report_group_docs.items():
241 for k, v in report_group_docs.items():
242 to_update = {"_index": k, "_type": "report_group"}
242 to_update = {"_index": k, "_type": "report_group"}
243 [i.update(to_update) for i in v]
243 [i.update(to_update) for i in v]
244 elasticsearch.helpers.bulk(Datastores.es, v)
244 elasticsearch.helpers.bulk(Datastores.es, v)
245 for k, v in report_docs.items():
245 for k, v in report_docs.items():
246 to_update = {"_index": k, "_type": "report"}
246 to_update = {"_index": k, "_type": "report"}
247 [i.update(to_update) for i in v]
247 [i.update(to_update) for i in v]
248 elasticsearch.helpers.bulk(Datastores.es, v)
248 elasticsearch.helpers.bulk(Datastores.es, v)
249
249
250
250
251 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
251 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
252 def add_reports_slow_calls_es(es_docs):
252 def add_reports_slow_calls_es(es_docs):
253 for k, v in es_docs.items():
253 for k, v in es_docs.items():
254 to_update = {"_index": k, "_type": "log"}
254 to_update = {"_index": k, "_type": "log"}
255 [i.update(to_update) for i in v]
255 [i.update(to_update) for i in v]
256 elasticsearch.helpers.bulk(Datastores.es, v)
256 elasticsearch.helpers.bulk(Datastores.es, v)
257
257
258
258
259 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
259 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
260 def add_reports_stats_rows_es(es_docs):
260 def add_reports_stats_rows_es(es_docs):
261 for k, v in es_docs.items():
261 for k, v in es_docs.items():
262 to_update = {"_index": k, "_type": "log"}
262 to_update = {"_index": k, "_type": "log"}
263 [i.update(to_update) for i in v]
263 [i.update(to_update) for i in v]
264 elasticsearch.helpers.bulk(Datastores.es, v)
264 elasticsearch.helpers.bulk(Datastores.es, v)
265
265
266
266
267 @celery.task(queue="logs", default_retry_delay=600, max_retries=144)
267 @celery.task(queue="logs", default_retry_delay=600, max_retries=144)
268 def add_logs(resource_id, request_params, dataset, **kwargs):
268 def add_logs(resource_id, request_params, dataset, **kwargs):
269 proto_version = request_params.get("protocol_version")
269 proto_version = request_params.get("protocol_version")
270 current_time = datetime.utcnow().replace(second=0, microsecond=0)
270 current_time = datetime.utcnow().replace(second=0, microsecond=0)
271
271
272 try:
272 try:
273 es_docs = collections.defaultdict(list)
273 es_docs = collections.defaultdict(list)
274 resource = ApplicationService.by_id_cached()(resource_id)
274 resource = ApplicationService.by_id_cached()(resource_id)
275 resource = DBSession.merge(resource, load=False)
275 resource = DBSession.merge(resource, load=False)
276 ns_pairs = []
276 ns_pairs = []
277 for entry in dataset:
277 for entry in dataset:
278 # gather pk and ns so we can remove older versions of row later
278 # gather pk and ns so we can remove older versions of row later
279 if entry["primary_key"] is not None:
279 if entry["primary_key"] is not None:
280 ns_pairs.append({"pk": entry["primary_key"], "ns": entry["namespace"]})
280 ns_pairs.append({"pk": entry["primary_key"], "ns": entry["namespace"]})
281 log_entry = Log()
281 log_entry = Log()
282 log_entry.set_data(entry, resource=resource)
282 log_entry.set_data(entry, resource=resource)
283 log_entry._skip_ft_index = True
283 log_entry._skip_ft_index = True
284 resource.logs.append(log_entry)
284 resource.logs.append(log_entry)
285 DBSession.flush()
285 DBSession.flush()
286 # insert non pk rows first
286 # insert non pk rows first
287 if entry["primary_key"] is None:
287 if entry["primary_key"] is None:
288 es_docs[log_entry.partition_id].append(log_entry.es_doc())
288 es_docs[log_entry.partition_id].append(log_entry.es_doc())
289
289
290 # 2nd pass to delete all log entries from db foe same pk/ns pair
290 # 2nd pass to delete all log entries from db foe same pk/ns pair
291 if ns_pairs:
291 if ns_pairs:
292 ids_to_delete = []
292 ids_to_delete = []
293 es_docs = collections.defaultdict(list)
293 es_docs = collections.defaultdict(list)
294 es_docs_to_delete = collections.defaultdict(list)
294 es_docs_to_delete = collections.defaultdict(list)
295 found_pkey_logs = LogService.query_by_primary_key_and_namespace(
295 found_pkey_logs = LogService.query_by_primary_key_and_namespace(
296 list_of_pairs=ns_pairs
296 list_of_pairs=ns_pairs
297 )
297 )
298 log_dict = {}
298 log_dict = {}
299 for log_entry in found_pkey_logs:
299 for log_entry in found_pkey_logs:
300 log_key = (log_entry.primary_key, log_entry.namespace)
300 log_key = (log_entry.primary_key, log_entry.namespace)
301 if log_key not in log_dict:
301 if log_key not in log_dict:
302 log_dict[log_key] = []
302 log_dict[log_key] = []
303 log_dict[log_key].append(log_entry)
303 log_dict[log_key].append(log_entry)
304
304
305 for ns, entry_list in log_dict.items():
305 for ns, entry_list in log_dict.items():
306 entry_list = sorted(entry_list, key=lambda x: x.timestamp)
306 entry_list = sorted(entry_list, key=lambda x: x.timestamp)
307 # newest row needs to be indexed in es
307 # newest row needs to be indexed in es
308 log_entry = entry_list[-1]
308 log_entry = entry_list[-1]
309 # delete everything from pg and ES, leave the last row in pg
309 # delete everything from pg and ES, leave the last row in pg
310 for e in entry_list[:-1]:
310 for e in entry_list[:-1]:
311 ids_to_delete.append(e.log_id)
311 ids_to_delete.append(e.log_id)
312 es_docs_to_delete[e.partition_id].append(e.delete_hash)
312 es_docs_to_delete[e.partition_id].append(e.delete_hash)
313
313
314 es_docs_to_delete[log_entry.partition_id].append(log_entry.delete_hash)
314 es_docs_to_delete[log_entry.partition_id].append(log_entry.delete_hash)
315
315
316 es_docs[log_entry.partition_id].append(log_entry.es_doc())
316 es_docs[log_entry.partition_id].append(log_entry.es_doc())
317
317
318 if ids_to_delete:
318 if ids_to_delete:
319 query = DBSession.query(Log).filter(Log.log_id.in_(ids_to_delete))
319 query = DBSession.query(Log).filter(Log.log_id.in_(ids_to_delete))
320 query.delete(synchronize_session=False)
320 query.delete(synchronize_session=False)
321 if es_docs_to_delete:
321 if es_docs_to_delete:
322 # batch this to avoid problems with default ES bulk limits
322 # batch this to avoid problems with default ES bulk limits
323 for es_index in es_docs_to_delete.keys():
323 for es_index in es_docs_to_delete.keys():
324 for batch in in_batches(es_docs_to_delete[es_index], 20):
324 for batch in in_batches(es_docs_to_delete[es_index], 20):
325 query = {"query": {"terms": {"delete_hash": batch}}}
325 query = {"query": {"terms": {"delete_hash": batch}}}
326
326
327 try:
327 try:
328 Datastores.es.transport.perform_request(
328 Datastores.es.transport.perform_request(
329 "DELETE",
329 "DELETE",
330 "/{}/{}/_query".format(es_index, "log"),
330 "/{}/{}/_query".format(es_index, "log"),
331 body=query,
331 body=query,
332 )
332 )
333 except elasticsearch.exceptions.NotFoundError as exc:
333 except elasticsearch.exceptions.NotFoundError as exc:
334 msg = "skipping index {}".format(es_index)
334 msg = "skipping index {}".format(es_index)
335 log.info(msg)
335 log.info(msg)
336
336
337 total_logs = len(dataset)
337 total_logs = len(dataset)
338
338
339 log_msg = "LOG_NEW: %s, entries: %s, proto:%s" % (
339 log_msg = "LOG_NEW: %s, entries: %s, proto:%s" % (
340 str(resource),
340 str(resource),
341 total_logs,
341 total_logs,
342 proto_version,
342 proto_version,
343 )
343 )
344 log.info(log_msg)
344 log.info(log_msg)
345 # mark_changed(session)
345 # mark_changed(session)
346 redis_pipeline = Datastores.redis.pipeline(transaction=False)
346 redis_pipeline = Datastores.redis.pipeline(transaction=False)
347 key = REDIS_KEYS["counters"]["logs_per_minute"].format(current_time)
347 key = REDIS_KEYS["counters"]["logs_per_minute"].format(current_time)
348 redis_pipeline.incr(key, total_logs)
348 redis_pipeline.incr(key, total_logs)
349 redis_pipeline.expire(key, 3600 * 24)
349 redis_pipeline.expire(key, 3600 * 24)
350 key = REDIS_KEYS["counters"]["events_per_minute_per_user"].format(
350 key = REDIS_KEYS["counters"]["events_per_minute_per_user"].format(
351 resource.owner_user_id, current_time
351 resource.owner_user_id, current_time
352 )
352 )
353 redis_pipeline.incr(key, total_logs)
353 redis_pipeline.incr(key, total_logs)
354 redis_pipeline.expire(key, 3600)
354 redis_pipeline.expire(key, 3600)
355 key = REDIS_KEYS["counters"]["logs_per_hour_per_app"].format(
355 key = REDIS_KEYS["counters"]["logs_per_hour_per_app"].format(
356 resource_id, current_time.replace(minute=0)
356 resource_id, current_time.replace(minute=0)
357 )
357 )
358 redis_pipeline.incr(key, total_logs)
358 redis_pipeline.incr(key, total_logs)
359 redis_pipeline.expire(key, 3600 * 24 * 7)
359 redis_pipeline.expire(key, 3600 * 24 * 7)
360 redis_pipeline.sadd(
360 redis_pipeline.sadd(
361 REDIS_KEYS["apps_that_got_new_data_per_hour"].format(
361 REDIS_KEYS["apps_that_got_new_data_per_hour"].format(
362 current_time.replace(minute=0)
362 current_time.replace(minute=0)
363 ),
363 ),
364 resource_id,
364 resource_id,
365 )
365 )
366 redis_pipeline.execute()
366 redis_pipeline.execute()
367 add_logs_es(es_docs)
367 add_logs_es(es_docs)
368 return True
368 return True
369 except Exception as exc:
369 except Exception as exc:
370 print_traceback(log)
370 print_traceback(log)
371 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
371 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
372 raise
372 raise
373 add_logs.retry(exc=exc)
373 add_logs.retry(exc=exc)
374
374
375
375
376 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
376 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
377 def add_logs_es(es_docs):
377 def add_logs_es(es_docs):
378 for k, v in es_docs.items():
378 for k, v in es_docs.items():
379 to_update = {"_index": k, "_type": "log"}
379 to_update = {"_index": k, "_type": "log"}
380 [i.update(to_update) for i in v]
380 [i.update(to_update) for i in v]
381 elasticsearch.helpers.bulk(Datastores.es, v)
381 elasticsearch.helpers.bulk(Datastores.es, v)
382
382
383
383
384 @celery.task(queue="metrics", default_retry_delay=600, max_retries=144)
384 @celery.task(queue="metrics", default_retry_delay=600, max_retries=144)
385 def add_metrics(resource_id, request_params, dataset, proto_version):
385 def add_metrics(resource_id, request_params, dataset, proto_version):
386 current_time = datetime.utcnow().replace(second=0, microsecond=0)
386 current_time = datetime.utcnow().replace(second=0, microsecond=0)
387 try:
387 try:
388 resource = ApplicationService.by_id_cached()(resource_id)
388 resource = ApplicationService.by_id_cached()(resource_id)
389 resource = DBSession.merge(resource, load=False)
389 resource = DBSession.merge(resource, load=False)
390 es_docs = []
390 es_docs = []
391 rows = []
391 rows = []
392 for metric in dataset:
392 for metric in dataset:
393 tags = dict(metric["tags"])
393 tags = dict(metric["tags"])
394 server_n = tags.get("server_name", metric["server_name"]).lower()
394 server_n = tags.get("server_name", metric["server_name"]).lower()
395 tags["server_name"] = server_n or "unknown"
395 tags["server_name"] = server_n or "unknown"
396 new_metric = Metric(
396 new_metric = Metric(
397 timestamp=metric["timestamp"],
397 timestamp=metric["timestamp"],
398 resource_id=resource.resource_id,
398 resource_id=resource.resource_id,
399 namespace=metric["namespace"],
399 namespace=metric["namespace"],
400 tags=tags,
400 tags=tags,
401 )
401 )
402 rows.append(new_metric)
402 rows.append(new_metric)
403 es_docs.append(new_metric.es_doc())
403 es_docs.append(new_metric.es_doc())
404 session = DBSession()
404 session = DBSession()
405 session.bulk_save_objects(rows)
405 session.bulk_save_objects(rows)
406 session.flush()
406 session.flush()
407
407
408 action = "METRICS"
408 action = "METRICS"
409 metrics_msg = "%s: %s, metrics: %s, proto:%s" % (
409 metrics_msg = "%s: %s, metrics: %s, proto:%s" % (
410 action,
410 action,
411 str(resource),
411 str(resource),
412 len(dataset),
412 len(dataset),
413 proto_version,
413 proto_version,
414 )
414 )
415 log.info(metrics_msg)
415 log.info(metrics_msg)
416
416
417 mark_changed(session)
417 mark_changed(session)
418 redis_pipeline = Datastores.redis.pipeline(transaction=False)
418 redis_pipeline = Datastores.redis.pipeline(transaction=False)
419 key = REDIS_KEYS["counters"]["metrics_per_minute"].format(current_time)
419 key = REDIS_KEYS["counters"]["metrics_per_minute"].format(current_time)
420 redis_pipeline.incr(key, len(rows))
420 redis_pipeline.incr(key, len(rows))
421 redis_pipeline.expire(key, 3600 * 24)
421 redis_pipeline.expire(key, 3600 * 24)
422 key = REDIS_KEYS["counters"]["events_per_minute_per_user"].format(
422 key = REDIS_KEYS["counters"]["events_per_minute_per_user"].format(
423 resource.owner_user_id, current_time
423 resource.owner_user_id, current_time
424 )
424 )
425 redis_pipeline.incr(key, len(rows))
425 redis_pipeline.incr(key, len(rows))
426 redis_pipeline.expire(key, 3600)
426 redis_pipeline.expire(key, 3600)
427 key = REDIS_KEYS["counters"]["metrics_per_hour_per_app"].format(
427 key = REDIS_KEYS["counters"]["metrics_per_hour_per_app"].format(
428 resource_id, current_time.replace(minute=0)
428 resource_id, current_time.replace(minute=0)
429 )
429 )
430 redis_pipeline.incr(key, len(rows))
430 redis_pipeline.incr(key, len(rows))
431 redis_pipeline.expire(key, 3600 * 24 * 7)
431 redis_pipeline.expire(key, 3600 * 24 * 7)
432 redis_pipeline.sadd(
432 redis_pipeline.sadd(
433 REDIS_KEYS["apps_that_got_new_data_per_hour"].format(
433 REDIS_KEYS["apps_that_got_new_data_per_hour"].format(
434 current_time.replace(minute=0)
434 current_time.replace(minute=0)
435 ),
435 ),
436 resource_id,
436 resource_id,
437 )
437 )
438 redis_pipeline.execute()
438 redis_pipeline.execute()
439 add_metrics_es(es_docs)
439 add_metrics_es(es_docs)
440 return True
440 return True
441 except Exception as exc:
441 except Exception as exc:
442 print_traceback(log)
442 print_traceback(log)
443 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
443 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
444 raise
444 raise
445 add_metrics.retry(exc=exc)
445 add_metrics.retry(exc=exc)
446
446
447
447
448 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
448 @celery.task(queue="es", default_retry_delay=600, max_retries=144)
449 def add_metrics_es(es_docs):
449 def add_metrics_es(es_docs):
450 for doc in es_docs:
450 for doc in es_docs:
451 partition = "rcae_m_%s" % doc["timestamp"].strftime("%Y_%m_%d")
451 partition = "rcae_m_%s" % doc["timestamp"].strftime("%Y_%m_%d")
452 Datastores.es.index(partition, "log", doc)
452 Datastores.es.index(partition, "log", doc)
453
453
454
454
455 @celery.task(queue="default", default_retry_delay=5, max_retries=2)
455 @celery.task(queue="default", default_retry_delay=5, max_retries=2)
456 def check_user_report_notifications(resource_id):
456 def check_user_report_notifications(resource_id):
457 since_when = datetime.utcnow()
457 since_when = datetime.utcnow()
458 try:
458 try:
459 request = get_current_request()
459 request = get_current_request()
460 application = ApplicationService.by_id(resource_id)
460 application = ApplicationService.by_id(resource_id)
461 if not application:
461 if not application:
462 return
462 return
463 error_key = REDIS_KEYS["reports_to_notify_per_type_per_app"].format(
463 error_key = REDIS_KEYS["reports_to_notify_per_type_per_app"].format(
464 ReportType.error, resource_id
464 ReportType.error, resource_id
465 )
465 )
466 slow_key = REDIS_KEYS["reports_to_notify_per_type_per_app"].format(
466 slow_key = REDIS_KEYS["reports_to_notify_per_type_per_app"].format(
467 ReportType.slow, resource_id
467 ReportType.slow, resource_id
468 )
468 )
469 error_group_ids = Datastores.redis.smembers(error_key)
469 error_group_ids = Datastores.redis.smembers(error_key)
470 slow_group_ids = Datastores.redis.smembers(slow_key)
470 slow_group_ids = Datastores.redis.smembers(slow_key)
471 Datastores.redis.delete(error_key)
471 Datastores.redis.delete(error_key)
472 Datastores.redis.delete(slow_key)
472 Datastores.redis.delete(slow_key)
473 err_gids = [int(g_id) for g_id in error_group_ids]
473 err_gids = [int(g_id) for g_id in error_group_ids]
474 slow_gids = [int(g_id) for g_id in list(slow_group_ids)]
474 slow_gids = [int(g_id) for g_id in list(slow_group_ids)]
475 group_ids = err_gids + slow_gids
475 group_ids = err_gids + slow_gids
476 occurence_dict = {}
476 occurence_dict = {}
477 for g_id in group_ids:
477 for g_id in group_ids:
478 key = REDIS_KEYS["counters"]["report_group_occurences"].format(g_id)
478 key = REDIS_KEYS["counters"]["report_group_occurences"].format(g_id)
479 val = Datastores.redis.get(key)
479 val = Datastores.redis.get(key)
480 Datastores.redis.delete(key)
480 Datastores.redis.delete(key)
481 if val:
481 if val:
482 occurence_dict[g_id] = int(val)
482 occurence_dict[g_id] = int(val)
483 else:
483 else:
484 occurence_dict[g_id] = 1
484 occurence_dict[g_id] = 1
485 report_groups = ReportGroupService.by_ids(group_ids)
485 report_groups = ReportGroupService.by_ids(group_ids)
486 report_groups.options(sa.orm.joinedload(ReportGroup.last_report_ref))
486 report_groups.options(sa.orm.joinedload(ReportGroup.last_report_ref))
487
487
488 ApplicationService.check_for_groups_alert(
488 ApplicationService.check_for_groups_alert(
489 application,
489 application,
490 "alert",
490 "alert",
491 report_groups=report_groups,
491 report_groups=report_groups,
492 occurence_dict=occurence_dict,
492 occurence_dict=occurence_dict,
493 )
493 )
494 users = set(
494 users = set(
495 [p.user for p in ResourceService.users_for_perm(application, "view")]
495 [p.user for p in ResourceService.users_for_perm(application, "view")]
496 )
496 )
497 report_groups = report_groups.all()
497 report_groups = report_groups.all()
498 for user in users:
498 for user in users:
499 UserService.report_notify(
499 UserService.report_notify(
500 user,
500 user,
501 request,
501 request,
502 application,
502 application,
503 report_groups=report_groups,
503 report_groups=report_groups,
504 occurence_dict=occurence_dict,
504 occurence_dict=occurence_dict,
505 )
505 )
506 for group in report_groups:
506 for group in report_groups:
507 # marks report_groups as notified
507 # marks report_groups as notified
508 if not group.notified:
508 if not group.notified:
509 group.notified = True
509 group.notified = True
510 except Exception as exc:
510 except Exception as exc:
511 print_traceback(log)
511 print_traceback(log)
512 raise
512 raise
513
513
514
514
515 @celery.task(queue="default", default_retry_delay=5, max_retries=2)
515 @celery.task(queue="default", default_retry_delay=5, max_retries=2)
516 def check_alerts(resource_id):
516 def check_alerts(resource_id):
517 since_when = datetime.utcnow()
517 since_when = datetime.utcnow()
518 try:
518 try:
519 request = get_current_request()
519 request = get_current_request()
520 application = ApplicationService.by_id(resource_id)
520 application = ApplicationService.by_id(resource_id)
521 if not application:
521 if not application:
522 return
522 return
523 error_key = REDIS_KEYS["reports_to_notify_per_type_per_app_alerting"].format(
523 error_key = REDIS_KEYS["reports_to_notify_per_type_per_app_alerting"].format(
524 ReportType.error, resource_id
524 ReportType.error, resource_id
525 )
525 )
526 slow_key = REDIS_KEYS["reports_to_notify_per_type_per_app_alerting"].format(
526 slow_key = REDIS_KEYS["reports_to_notify_per_type_per_app_alerting"].format(
527 ReportType.slow, resource_id
527 ReportType.slow, resource_id
528 )
528 )
529 error_group_ids = Datastores.redis.smembers(error_key)
529 error_group_ids = Datastores.redis.smembers(error_key)
530 slow_group_ids = Datastores.redis.smembers(slow_key)
530 slow_group_ids = Datastores.redis.smembers(slow_key)
531 Datastores.redis.delete(error_key)
531 Datastores.redis.delete(error_key)
532 Datastores.redis.delete(slow_key)
532 Datastores.redis.delete(slow_key)
533 err_gids = [int(g_id) for g_id in error_group_ids]
533 err_gids = [int(g_id) for g_id in error_group_ids]
534 slow_gids = [int(g_id) for g_id in list(slow_group_ids)]
534 slow_gids = [int(g_id) for g_id in list(slow_group_ids)]
535 group_ids = err_gids + slow_gids
535 group_ids = err_gids + slow_gids
536 occurence_dict = {}
536 occurence_dict = {}
537 for g_id in group_ids:
537 for g_id in group_ids:
538 key = REDIS_KEYS["counters"]["report_group_occurences_alerting"].format(
538 key = REDIS_KEYS["counters"]["report_group_occurences_alerting"].format(
539 g_id
539 g_id
540 )
540 )
541 val = Datastores.redis.get(key)
541 val = Datastores.redis.get(key)
542 Datastores.redis.delete(key)
542 Datastores.redis.delete(key)
543 if val:
543 if val:
544 occurence_dict[g_id] = int(val)
544 occurence_dict[g_id] = int(val)
545 else:
545 else:
546 occurence_dict[g_id] = 1
546 occurence_dict[g_id] = 1
547 report_groups = ReportGroupService.by_ids(group_ids)
547 report_groups = ReportGroupService.by_ids(group_ids)
548 report_groups.options(sa.orm.joinedload(ReportGroup.last_report_ref))
548 report_groups.options(sa.orm.joinedload(ReportGroup.last_report_ref))
549
549
550 ApplicationService.check_for_groups_alert(
550 ApplicationService.check_for_groups_alert(
551 application,
551 application,
552 "alert",
552 "alert",
553 report_groups=report_groups,
553 report_groups=report_groups,
554 occurence_dict=occurence_dict,
554 occurence_dict=occurence_dict,
555 since_when=since_when,
555 since_when=since_when,
556 )
556 )
557 except Exception as exc:
557 except Exception as exc:
558 print_traceback(log)
558 print_traceback(log)
559 raise
559 raise
560
560
561
561
562 @celery.task(queue="default", default_retry_delay=1, max_retries=2)
562 @celery.task(queue="default", default_retry_delay=1, max_retries=2)
563 def close_alerts():
563 def close_alerts():
564 log.warning("Checking alerts")
564 log.warning("Checking alerts")
565 since_when = datetime.utcnow()
565 since_when = datetime.utcnow()
566 try:
566 try:
567 event_types = [
567 event_types = [
568 Event.types["error_report_alert"],
568 Event.types["error_report_alert"],
569 Event.types["slow_report_alert"],
569 Event.types["slow_report_alert"],
570 ]
570 ]
571 statuses = [Event.statuses["active"]]
571 statuses = [Event.statuses["active"]]
572 # get events older than 5 min
572 # get events older than 5 min
573 events = EventService.by_type_and_status(
573 events = EventService.by_type_and_status(
574 event_types, statuses, older_than=(since_when - timedelta(minutes=5))
574 event_types, statuses, older_than=(since_when - timedelta(minutes=5))
575 )
575 )
576 for event in events:
576 for event in events:
577 # see if we can close them
577 # see if we can close them
578 event.validate_or_close(since_when=(since_when - timedelta(minutes=1)))
578 event.validate_or_close(since_when=(since_when - timedelta(minutes=1)))
579 except Exception as exc:
579 except Exception as exc:
580 print_traceback(log)
580 print_traceback(log)
581 raise
581 raise
582
582
583
583
584 @celery.task(queue="default", default_retry_delay=600, max_retries=144)
584 @celery.task(queue="default", default_retry_delay=600, max_retries=144)
585 def update_tag_counter(tag_name, tag_value, count):
585 def update_tag_counter(tag_name, tag_value, count):
586 try:
586 try:
587 query = (
587 query = (
588 DBSession.query(Tag)
588 DBSession.query(Tag)
589 .filter(Tag.name == tag_name)
589 .filter(Tag.name == tag_name)
590 .filter(
590 .filter(
591 sa.cast(Tag.value, sa.types.TEXT)
591 sa.cast(Tag.value, sa.types.TEXT)
592 == sa.cast(json.dumps(tag_value), sa.types.TEXT)
592 == sa.cast(json.dumps(tag_value), sa.types.TEXT)
593 )
593 )
594 )
594 )
595 query.update(
595 query.update(
596 {"times_seen": Tag.times_seen + count, "last_timestamp": datetime.utcnow()},
596 {"times_seen": Tag.times_seen + count, "last_timestamp": datetime.utcnow()},
597 synchronize_session=False,
597 synchronize_session=False,
598 )
598 )
599 session = DBSession()
599 session = DBSession()
600 mark_changed(session)
600 mark_changed(session)
601 return True
601 return True
602 except Exception as exc:
602 except Exception as exc:
603 print_traceback(log)
603 print_traceback(log)
604 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
604 if celery.conf["CELERY_EAGER_PROPAGATES_EXCEPTIONS"]:
605 raise
605 raise
606 update_tag_counter.retry(exc=exc)
606 update_tag_counter.retry(exc=exc)
607
607
608
608
609 @celery.task(queue="default")
609 @celery.task(queue="default")
610 def update_tag_counters():
610 def update_tag_counters():
611 """
611 """
612 Sets task to update counters for application tags
612 Sets task to update counters for application tags
613 """
613 """
614 tags = Datastores.redis.lrange(REDIS_KEYS["seen_tag_list"], 0, -1)
614 tags = Datastores.redis.lrange(REDIS_KEYS["seen_tag_list"], 0, -1)
615 Datastores.redis.delete(REDIS_KEYS["seen_tag_list"])
615 Datastores.redis.delete(REDIS_KEYS["seen_tag_list"])
616 c = collections.Counter(tags)
616 c = collections.Counter(tags)
617 for t_json, count in c.items():
617 for t_json, count in c.items():
618 tag_info = json.loads(t_json)
618 tag_info = json.loads(t_json)
619 update_tag_counter.delay(tag_info[0], tag_info[1], count)
619 update_tag_counter.delay(tag_info[0], tag_info[1], count)
620
620
621
621
622 @celery.task(queue="default")
622 @celery.task(queue="default")
623 def daily_digest():
623 def daily_digest():
624 """
624 """
625 Sends daily digest with top 50 error reports
625 Sends daily digest with top 50 error reports
626 """
626 """
627 request = get_current_request()
627 request = get_current_request()
628 apps = Datastores.redis.smembers(REDIS_KEYS["apps_that_had_reports"])
628 apps = Datastores.redis.smembers(REDIS_KEYS["apps_that_had_reports"])
629 Datastores.redis.delete(REDIS_KEYS["apps_that_had_reports"])
629 Datastores.redis.delete(REDIS_KEYS["apps_that_had_reports"])
630 since_when = datetime.utcnow() - timedelta(hours=8)
630 since_when = datetime.utcnow() - timedelta(hours=8)
631 log.warning("Generating daily digests")
631 log.warning("Generating daily digests")
632 for resource_id in apps:
632 for resource_id in apps:
633 resource_id = resource_id.decode("utf8")
633 resource_id = resource_id.decode("utf8")
634 end_date = datetime.utcnow().replace(microsecond=0, second=0)
634 end_date = datetime.utcnow().replace(microsecond=0, second=0)
635 filter_settings = {
635 filter_settings = {
636 "resource": [resource_id],
636 "resource": [resource_id],
637 "tags": [{"name": "type", "value": ["error"], "op": None}],
637 "tags": [{"name": "type", "value": ["error"], "op": None}],
638 "type": "error",
638 "type": "error",
639 "start_date": since_when,
639 "start_date": since_when,
640 "end_date": end_date,
640 "end_date": end_date,
641 }
641 }
642
642
643 reports = ReportGroupService.get_trending(
643 reports = ReportGroupService.get_trending(
644 request, filter_settings=filter_settings, limit=50
644 request, filter_settings=filter_settings, limit=50
645 )
645 )
646
646
647 application = ApplicationService.by_id(resource_id)
647 application = ApplicationService.by_id(resource_id)
648 if application:
648 if application:
649 users = set(
649 users = set(
650 [p.user for p in ResourceService.users_for_perm(application, "view")]
650 [p.user for p in ResourceService.users_for_perm(application, "view")]
651 )
651 )
652 for user in users:
652 for user in users:
653 user.send_digest(
653 user.send_digest(
654 request, application, reports=reports, since_when=since_when
654 request, application, reports=reports, since_when=since_when
655 )
655 )
656
656
657
657
658 @celery.task(queue="default")
658 @celery.task(queue="default")
659 def notifications_reports():
659 def notifications_reports():
660 """
660 """
661 Loop that checks redis for info and then issues new tasks to celery to
661 Loop that checks redis for info and then issues new tasks to celery to
662 issue notifications
662 issue notifications
663 """
663 """
664 apps = Datastores.redis.smembers(REDIS_KEYS["apps_that_had_reports"])
664 apps = Datastores.redis.smembers(REDIS_KEYS["apps_that_had_reports"])
665 Datastores.redis.delete(REDIS_KEYS["apps_that_had_reports"])
665 Datastores.redis.delete(REDIS_KEYS["apps_that_had_reports"])
666 for app in apps:
666 for app in apps:
667 log.warning("Notify for app: %s" % app)
667 log.warning("Notify for app: %s" % app)
668 check_user_report_notifications.delay(app.decode("utf8"))
668 check_user_report_notifications.delay(app.decode("utf8"))
669
669
670
670
671 @celery.task(queue="default")
671 @celery.task(queue="default")
672 def alerting_reports():
672 def alerting_reports():
673 """
673 """
674 Loop that checks redis for info and then issues new tasks to celery to
674 Loop that checks redis for info and then issues new tasks to celery to
675 perform the following:
675 perform the following:
676 - which applications should have new alerts opened
676 - which applications should have new alerts opened
677 """
677 """
678
678
679 apps = Datastores.redis.smembers(REDIS_KEYS["apps_that_had_reports_alerting"])
679 apps = Datastores.redis.smembers(REDIS_KEYS["apps_that_had_reports_alerting"])
680 Datastores.redis.delete(REDIS_KEYS["apps_that_had_reports_alerting"])
680 Datastores.redis.delete(REDIS_KEYS["apps_that_had_reports_alerting"])
681 for app in apps:
681 for app in apps:
682 log.warning("Notify for app: %s" % app)
682 log.warning("Notify for app: %s" % app)
683 check_alerts.delay(app.decode("utf8"))
683 check_alerts.delay(app.decode("utf8"))
684
684
685
685
686 @celery.task(
686 @celery.task(
687 queue="default", soft_time_limit=3600 * 4, hard_time_limit=3600 * 4, max_retries=144
687 queue="default", soft_time_limit=3600 * 4, hard_time_limit=3600 * 4, max_retries=144
688 )
688 )
689 def logs_cleanup(resource_id, filter_settings):
689 def logs_cleanup(resource_id, filter_settings):
690 request = get_current_request()
690 request = get_current_request()
691 request.tm.begin()
691 request.tm.begin()
692 es_query = {
692 es_query = {
693 "query": {
693 "query": {
694 "bool": {"filter": {"and": [{"term": {"resource_id": resource_id}}]}}
694 "bool": {"filter": [{"term": {"resource_id": resource_id}}]}
695 }
695 }
696 }
696 }
697
697
698 query = DBSession.query(Log).filter(Log.resource_id == resource_id)
698 query = DBSession.query(Log).filter(Log.resource_id == resource_id)
699 if filter_settings["namespace"]:
699 if filter_settings["namespace"]:
700 query = query.filter(Log.namespace == filter_settings["namespace"][0])
700 query = query.filter(Log.namespace == filter_settings["namespace"][0])
701 es_query["query"]["bool"]["filter"]["and"].append(
701 es_query["query"]["bool"]["filter"].append(
702 {"term": {"namespace": filter_settings["namespace"][0]}}
702 {"term": {"namespace": filter_settings["namespace"][0]}}
703 )
703 )
704 query.delete(synchronize_session=False)
704 query.delete(synchronize_session=False)
705 request.tm.commit()
705 request.tm.commit()
706 Datastores.es.transport.perform_request(
706 Datastores.es.transport.perform_request(
707 "DELETE", "/{}/{}/_query".format("rcae_l_*", "log"), body=es_query
707 "DELETE", "/{}/{}/_query".format("rcae_l_*", "log"), body=es_query
708 )
708 )
@@ -1,533 +1,529 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
4 #
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
7 # You may obtain a copy of the License at
8 #
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
10 #
11 # Unless required by applicable law or agreed to in writing, software
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
15 # limitations under the License.
16
16
17 from datetime import datetime, timedelta
17 from datetime import datetime, timedelta
18 import math
18 import math
19 import uuid
19 import uuid
20 import hashlib
20 import hashlib
21 import copy
21 import copy
22 import urllib.parse
22 import urllib.parse
23 import logging
23 import logging
24 import sqlalchemy as sa
24 import sqlalchemy as sa
25
25
26 from appenlight.models import Base, Datastores
26 from appenlight.models import Base, Datastores
27 from appenlight.lib.utils.date_utils import convert_date
27 from appenlight.lib.utils.date_utils import convert_date
28 from appenlight.lib.utils import convert_es_type
28 from appenlight.lib.utils import convert_es_type
29 from appenlight.models.slow_call import SlowCall
29 from appenlight.models.slow_call import SlowCall
30 from appenlight.lib.utils import channelstream_request
30 from appenlight.lib.utils import channelstream_request
31 from appenlight.lib.enums import ReportType, Language
31 from appenlight.lib.enums import ReportType, Language
32 from pyramid.threadlocal import get_current_registry, get_current_request
32 from pyramid.threadlocal import get_current_registry, get_current_request
33 from sqlalchemy.dialects.postgresql import JSON
33 from sqlalchemy.dialects.postgresql import JSON
34 from ziggurat_foundations.models.base import BaseModel
34 from ziggurat_foundations.models.base import BaseModel
35
35
36 log = logging.getLogger(__name__)
36 log = logging.getLogger(__name__)
37
37
38 REPORT_TYPE_MATRIX = {
38 REPORT_TYPE_MATRIX = {
39 "http_status": {"type": "int", "ops": ("eq", "ne", "ge", "le")},
39 "http_status": {"type": "int", "ops": ("eq", "ne", "ge", "le")},
40 "group:priority": {"type": "int", "ops": ("eq", "ne", "ge", "le")},
40 "group:priority": {"type": "int", "ops": ("eq", "ne", "ge", "le")},
41 "duration": {"type": "float", "ops": ("ge", "le")},
41 "duration": {"type": "float", "ops": ("ge", "le")},
42 "url_domain": {
42 "url_domain": {
43 "type": "unicode",
43 "type": "unicode",
44 "ops": ("eq", "ne", "startswith", "endswith", "contains"),
44 "ops": ("eq", "ne", "startswith", "endswith", "contains"),
45 },
45 },
46 "url_path": {
46 "url_path": {
47 "type": "unicode",
47 "type": "unicode",
48 "ops": ("eq", "ne", "startswith", "endswith", "contains"),
48 "ops": ("eq", "ne", "startswith", "endswith", "contains"),
49 },
49 },
50 "error": {
50 "error": {
51 "type": "unicode",
51 "type": "unicode",
52 "ops": ("eq", "ne", "startswith", "endswith", "contains"),
52 "ops": ("eq", "ne", "startswith", "endswith", "contains"),
53 },
53 },
54 "tags:server_name": {
54 "tags:server_name": {
55 "type": "unicode",
55 "type": "unicode",
56 "ops": ("eq", "ne", "startswith", "endswith", "contains"),
56 "ops": ("eq", "ne", "startswith", "endswith", "contains"),
57 },
57 },
58 "traceback": {"type": "unicode", "ops": ("contains",)},
58 "traceback": {"type": "unicode", "ops": ("contains",)},
59 "group:occurences": {"type": "int", "ops": ("eq", "ne", "ge", "le")},
59 "group:occurences": {"type": "int", "ops": ("eq", "ne", "ge", "le")},
60 }
60 }
61
61
62
62
63 class Report(Base, BaseModel):
63 class Report(Base, BaseModel):
64 __tablename__ = "reports"
64 __tablename__ = "reports"
65 __table_args__ = {"implicit_returning": False}
65 __table_args__ = {"implicit_returning": False}
66
66
67 id = sa.Column(sa.Integer, nullable=False, primary_key=True)
67 id = sa.Column(sa.Integer, nullable=False, primary_key=True)
68 group_id = sa.Column(
68 group_id = sa.Column(
69 sa.BigInteger,
69 sa.BigInteger,
70 sa.ForeignKey("reports_groups.id", ondelete="cascade", onupdate="cascade"),
70 sa.ForeignKey("reports_groups.id", ondelete="cascade", onupdate="cascade"),
71 )
71 )
72 resource_id = sa.Column(sa.Integer(), nullable=False, index=True)
72 resource_id = sa.Column(sa.Integer(), nullable=False, index=True)
73 report_type = sa.Column(sa.Integer(), nullable=False, index=True)
73 report_type = sa.Column(sa.Integer(), nullable=False, index=True)
74 error = sa.Column(sa.UnicodeText(), index=True)
74 error = sa.Column(sa.UnicodeText(), index=True)
75 extra = sa.Column(JSON(), default={})
75 extra = sa.Column(JSON(), default={})
76 request = sa.Column(JSON(), nullable=False, default={})
76 request = sa.Column(JSON(), nullable=False, default={})
77 ip = sa.Column(sa.String(39), index=True, default="")
77 ip = sa.Column(sa.String(39), index=True, default="")
78 username = sa.Column(sa.Unicode(255), default="")
78 username = sa.Column(sa.Unicode(255), default="")
79 user_agent = sa.Column(sa.Unicode(255), default="")
79 user_agent = sa.Column(sa.Unicode(255), default="")
80 url = sa.Column(sa.UnicodeText(), index=True)
80 url = sa.Column(sa.UnicodeText(), index=True)
81 request_id = sa.Column(sa.Text())
81 request_id = sa.Column(sa.Text())
82 request_stats = sa.Column(JSON(), nullable=False, default={})
82 request_stats = sa.Column(JSON(), nullable=False, default={})
83 traceback = sa.Column(JSON(), nullable=False, default=None)
83 traceback = sa.Column(JSON(), nullable=False, default=None)
84 traceback_hash = sa.Column(sa.Text())
84 traceback_hash = sa.Column(sa.Text())
85 start_time = sa.Column(
85 start_time = sa.Column(
86 sa.DateTime(), default=datetime.utcnow, server_default=sa.func.now()
86 sa.DateTime(), default=datetime.utcnow, server_default=sa.func.now()
87 )
87 )
88 end_time = sa.Column(sa.DateTime())
88 end_time = sa.Column(sa.DateTime())
89 duration = sa.Column(sa.Float, default=0)
89 duration = sa.Column(sa.Float, default=0)
90 http_status = sa.Column(sa.Integer, index=True)
90 http_status = sa.Column(sa.Integer, index=True)
91 url_domain = sa.Column(sa.Unicode(100), index=True)
91 url_domain = sa.Column(sa.Unicode(100), index=True)
92 url_path = sa.Column(sa.Unicode(255), index=True)
92 url_path = sa.Column(sa.Unicode(255), index=True)
93 tags = sa.Column(JSON(), nullable=False, default={})
93 tags = sa.Column(JSON(), nullable=False, default={})
94 language = sa.Column(sa.Integer(), default=0)
94 language = sa.Column(sa.Integer(), default=0)
95 # this is used to determine partition for the report
95 # this is used to determine partition for the report
96 report_group_time = sa.Column(
96 report_group_time = sa.Column(
97 sa.DateTime(), default=datetime.utcnow, server_default=sa.func.now()
97 sa.DateTime(), default=datetime.utcnow, server_default=sa.func.now()
98 )
98 )
99
99
100 logs = sa.orm.relationship(
100 logs = sa.orm.relationship(
101 "Log",
101 "Log",
102 lazy="dynamic",
102 lazy="dynamic",
103 passive_deletes=True,
103 passive_deletes=True,
104 passive_updates=True,
104 passive_updates=True,
105 primaryjoin="and_(Report.request_id==Log.request_id, "
105 primaryjoin="and_(Report.request_id==Log.request_id, "
106 "Log.request_id != None, Log.request_id != '')",
106 "Log.request_id != None, Log.request_id != '')",
107 foreign_keys="[Log.request_id]",
107 foreign_keys="[Log.request_id]",
108 )
108 )
109
109
110 slow_calls = sa.orm.relationship(
110 slow_calls = sa.orm.relationship(
111 "SlowCall",
111 "SlowCall",
112 backref="detail",
112 backref="detail",
113 cascade="all, delete-orphan",
113 cascade="all, delete-orphan",
114 passive_deletes=True,
114 passive_deletes=True,
115 passive_updates=True,
115 passive_updates=True,
116 order_by="SlowCall.timestamp",
116 order_by="SlowCall.timestamp",
117 )
117 )
118
118
119 def set_data(self, data, resource, protocol_version=None):
119 def set_data(self, data, resource, protocol_version=None):
120 self.http_status = data["http_status"]
120 self.http_status = data["http_status"]
121 self.priority = data["priority"]
121 self.priority = data["priority"]
122 self.error = data["error"]
122 self.error = data["error"]
123 report_language = data.get("language", "").lower()
123 report_language = data.get("language", "").lower()
124 self.language = getattr(Language, report_language, Language.unknown)
124 self.language = getattr(Language, report_language, Language.unknown)
125 # we need temp holder here to decide later
125 # we need temp holder here to decide later
126 # if we want to to commit the tags if report is marked for creation
126 # if we want to to commit the tags if report is marked for creation
127 self.tags = {"server_name": data["server"], "view_name": data["view_name"]}
127 self.tags = {"server_name": data["server"], "view_name": data["view_name"]}
128 if data.get("tags"):
128 if data.get("tags"):
129 for tag_tuple in data["tags"]:
129 for tag_tuple in data["tags"]:
130 self.tags[tag_tuple[0]] = tag_tuple[1]
130 self.tags[tag_tuple[0]] = tag_tuple[1]
131 self.traceback = data["traceback"]
131 self.traceback = data["traceback"]
132 stripped_traceback = self.stripped_traceback()
132 stripped_traceback = self.stripped_traceback()
133 tb_repr = repr(stripped_traceback).encode("utf8")
133 tb_repr = repr(stripped_traceback).encode("utf8")
134 self.traceback_hash = hashlib.sha1(tb_repr).hexdigest()
134 self.traceback_hash = hashlib.sha1(tb_repr).hexdigest()
135 url_info = urllib.parse.urlsplit(data.get("url", ""), allow_fragments=False)
135 url_info = urllib.parse.urlsplit(data.get("url", ""), allow_fragments=False)
136 self.url_domain = url_info.netloc[:128]
136 self.url_domain = url_info.netloc[:128]
137 self.url_path = url_info.path[:2048]
137 self.url_path = url_info.path[:2048]
138 self.occurences = data["occurences"]
138 self.occurences = data["occurences"]
139 if self.error:
139 if self.error:
140 self.report_type = ReportType.error
140 self.report_type = ReportType.error
141 else:
141 else:
142 self.report_type = ReportType.slow
142 self.report_type = ReportType.slow
143
143
144 # but if its status 404 its 404 type
144 # but if its status 404 its 404 type
145 if self.http_status in [404, "404"] or self.error == "404 Not Found":
145 if self.http_status in [404, "404"] or self.error == "404 Not Found":
146 self.report_type = ReportType.not_found
146 self.report_type = ReportType.not_found
147 self.error = ""
147 self.error = ""
148
148
149 self.generate_grouping_hash(
149 self.generate_grouping_hash(
150 data.get("appenlight.group_string", data.get("group_string")),
150 data.get("appenlight.group_string", data.get("group_string")),
151 resource.default_grouping,
151 resource.default_grouping,
152 protocol_version,
152 protocol_version,
153 )
153 )
154
154
155 # details
155 # details
156 if data["http_status"] in [404, "404"]:
156 if data["http_status"] in [404, "404"]:
157 data = {
157 data = {
158 "username": data["username"],
158 "username": data["username"],
159 "ip": data["ip"],
159 "ip": data["ip"],
160 "url": data["url"],
160 "url": data["url"],
161 "user_agent": data["user_agent"],
161 "user_agent": data["user_agent"],
162 }
162 }
163 if data.get("HTTP_REFERER") or data.get("http_referer"):
163 if data.get("HTTP_REFERER") or data.get("http_referer"):
164 data["HTTP_REFERER"] = data.get("HTTP_REFERER", "") or data.get(
164 data["HTTP_REFERER"] = data.get("HTTP_REFERER", "") or data.get(
165 "http_referer", ""
165 "http_referer", ""
166 )
166 )
167
167
168 self.resource_id = resource.resource_id
168 self.resource_id = resource.resource_id
169 self.username = data["username"]
169 self.username = data["username"]
170 self.user_agent = data["user_agent"]
170 self.user_agent = data["user_agent"]
171 self.ip = data["ip"]
171 self.ip = data["ip"]
172 self.extra = {}
172 self.extra = {}
173 if data.get("extra"):
173 if data.get("extra"):
174 for extra_tuple in data["extra"]:
174 for extra_tuple in data["extra"]:
175 self.extra[extra_tuple[0]] = extra_tuple[1]
175 self.extra[extra_tuple[0]] = extra_tuple[1]
176
176
177 self.url = data["url"]
177 self.url = data["url"]
178 self.request_id = data.get("request_id", "").replace("-", "") or str(
178 self.request_id = data.get("request_id", "").replace("-", "") or str(
179 uuid.uuid4()
179 uuid.uuid4()
180 )
180 )
181 request_data = data.get("request", {})
181 request_data = data.get("request", {})
182
182
183 self.request = request_data
183 self.request = request_data
184 self.request_stats = data.get("request_stats", {})
184 self.request_stats = data.get("request_stats", {})
185 traceback = data.get("traceback")
185 traceback = data.get("traceback")
186 if not traceback:
186 if not traceback:
187 traceback = data.get("frameinfo")
187 traceback = data.get("frameinfo")
188 self.traceback = traceback
188 self.traceback = traceback
189 start_date = convert_date(data.get("start_time"))
189 start_date = convert_date(data.get("start_time"))
190 if not self.start_time or self.start_time < start_date:
190 if not self.start_time or self.start_time < start_date:
191 self.start_time = start_date
191 self.start_time = start_date
192
192
193 self.end_time = convert_date(data.get("end_time"), False)
193 self.end_time = convert_date(data.get("end_time"), False)
194 self.duration = 0
194 self.duration = 0
195
195
196 if self.start_time and self.end_time:
196 if self.start_time and self.end_time:
197 d = self.end_time - self.start_time
197 d = self.end_time - self.start_time
198 self.duration = d.total_seconds()
198 self.duration = d.total_seconds()
199
199
200 # update tags with other vars
200 # update tags with other vars
201 if self.username:
201 if self.username:
202 self.tags["user_name"] = self.username
202 self.tags["user_name"] = self.username
203 self.tags["report_language"] = Language.key_from_value(self.language)
203 self.tags["report_language"] = Language.key_from_value(self.language)
204
204
205 def add_slow_calls(self, data, report_group):
205 def add_slow_calls(self, data, report_group):
206 slow_calls = []
206 slow_calls = []
207 for call in data.get("slow_calls", []):
207 for call in data.get("slow_calls", []):
208 sc_inst = SlowCall()
208 sc_inst = SlowCall()
209 sc_inst.set_data(
209 sc_inst.set_data(
210 call, resource_id=self.resource_id, report_group=report_group
210 call, resource_id=self.resource_id, report_group=report_group
211 )
211 )
212 slow_calls.append(sc_inst)
212 slow_calls.append(sc_inst)
213 self.slow_calls.extend(slow_calls)
213 self.slow_calls.extend(slow_calls)
214 return slow_calls
214 return slow_calls
215
215
216 def get_dict(self, request, details=False, exclude_keys=None, include_keys=None):
216 def get_dict(self, request, details=False, exclude_keys=None, include_keys=None):
217 from appenlight.models.services.report_group import ReportGroupService
217 from appenlight.models.services.report_group import ReportGroupService
218
218
219 instance_dict = super(Report, self).get_dict()
219 instance_dict = super(Report, self).get_dict()
220 instance_dict["req_stats"] = self.req_stats()
220 instance_dict["req_stats"] = self.req_stats()
221 instance_dict["group"] = {}
221 instance_dict["group"] = {}
222 instance_dict["group"]["id"] = self.report_group.id
222 instance_dict["group"]["id"] = self.report_group.id
223 instance_dict["group"]["total_reports"] = self.report_group.total_reports
223 instance_dict["group"]["total_reports"] = self.report_group.total_reports
224 instance_dict["group"]["last_report"] = self.report_group.last_report
224 instance_dict["group"]["last_report"] = self.report_group.last_report
225 instance_dict["group"]["priority"] = self.report_group.priority
225 instance_dict["group"]["priority"] = self.report_group.priority
226 instance_dict["group"]["occurences"] = self.report_group.occurences
226 instance_dict["group"]["occurences"] = self.report_group.occurences
227 instance_dict["group"]["last_timestamp"] = self.report_group.last_timestamp
227 instance_dict["group"]["last_timestamp"] = self.report_group.last_timestamp
228 instance_dict["group"]["first_timestamp"] = self.report_group.first_timestamp
228 instance_dict["group"]["first_timestamp"] = self.report_group.first_timestamp
229 instance_dict["group"]["public"] = self.report_group.public
229 instance_dict["group"]["public"] = self.report_group.public
230 instance_dict["group"]["fixed"] = self.report_group.fixed
230 instance_dict["group"]["fixed"] = self.report_group.fixed
231 instance_dict["group"]["read"] = self.report_group.read
231 instance_dict["group"]["read"] = self.report_group.read
232 instance_dict["group"]["average_duration"] = self.report_group.average_duration
232 instance_dict["group"]["average_duration"] = self.report_group.average_duration
233
233
234 instance_dict["resource_name"] = self.report_group.application.resource_name
234 instance_dict["resource_name"] = self.report_group.application.resource_name
235 instance_dict["report_type"] = self.report_type
235 instance_dict["report_type"] = self.report_type
236
236
237 if instance_dict["http_status"] == 404 and not instance_dict["error"]:
237 if instance_dict["http_status"] == 404 and not instance_dict["error"]:
238 instance_dict["error"] = "404 Not Found"
238 instance_dict["error"] = "404 Not Found"
239
239
240 if details:
240 if details:
241 instance_dict[
241 instance_dict[
242 "affected_users_count"
242 "affected_users_count"
243 ] = ReportGroupService.affected_users_count(self.report_group)
243 ] = ReportGroupService.affected_users_count(self.report_group)
244 instance_dict["top_affected_users"] = [
244 instance_dict["top_affected_users"] = [
245 {"username": u.username, "count": u.count}
245 {"username": u.username, "count": u.count}
246 for u in ReportGroupService.top_affected_users(self.report_group)
246 for u in ReportGroupService.top_affected_users(self.report_group)
247 ]
247 ]
248 instance_dict["application"] = {"integrations": []}
248 instance_dict["application"] = {"integrations": []}
249 for integration in self.report_group.application.integrations:
249 for integration in self.report_group.application.integrations:
250 if integration.front_visible:
250 if integration.front_visible:
251 instance_dict["application"]["integrations"].append(
251 instance_dict["application"]["integrations"].append(
252 {
252 {
253 "name": integration.integration_name,
253 "name": integration.integration_name,
254 "action": integration.integration_action,
254 "action": integration.integration_action,
255 }
255 }
256 )
256 )
257 instance_dict["comments"] = [
257 instance_dict["comments"] = [
258 c.get_dict() for c in self.report_group.comments
258 c.get_dict() for c in self.report_group.comments
259 ]
259 ]
260
260
261 instance_dict["group"]["next_report"] = None
261 instance_dict["group"]["next_report"] = None
262 instance_dict["group"]["previous_report"] = None
262 instance_dict["group"]["previous_report"] = None
263 next_in_group = self.get_next_in_group(request)
263 next_in_group = self.get_next_in_group(request)
264 previous_in_group = self.get_previous_in_group(request)
264 previous_in_group = self.get_previous_in_group(request)
265 if next_in_group:
265 if next_in_group:
266 instance_dict["group"]["next_report"] = next_in_group
266 instance_dict["group"]["next_report"] = next_in_group
267 if previous_in_group:
267 if previous_in_group:
268 instance_dict["group"]["previous_report"] = previous_in_group
268 instance_dict["group"]["previous_report"] = previous_in_group
269
269
270 # slow call ordering
270 # slow call ordering
271 def find_parent(row, data):
271 def find_parent(row, data):
272 for r in reversed(data):
272 for r in reversed(data):
273 try:
273 try:
274 if (
274 if (
275 row["timestamp"] > r["timestamp"]
275 row["timestamp"] > r["timestamp"]
276 and row["end_time"] < r["end_time"]
276 and row["end_time"] < r["end_time"]
277 ):
277 ):
278 return r
278 return r
279 except TypeError as e:
279 except TypeError as e:
280 log.warning("reports_view.find_parent: %s" % e)
280 log.warning("reports_view.find_parent: %s" % e)
281 return None
281 return None
282
282
283 new_calls = []
283 new_calls = []
284 calls = [c.get_dict() for c in self.slow_calls]
284 calls = [c.get_dict() for c in self.slow_calls]
285 while calls:
285 while calls:
286 # start from end
286 # start from end
287 for x in range(len(calls) - 1, -1, -1):
287 for x in range(len(calls) - 1, -1, -1):
288 parent = find_parent(calls[x], calls)
288 parent = find_parent(calls[x], calls)
289 if parent:
289 if parent:
290 parent["children"].append(calls[x])
290 parent["children"].append(calls[x])
291 else:
291 else:
292 # no parent at all? append to new calls anyways
292 # no parent at all? append to new calls anyways
293 new_calls.append(calls[x])
293 new_calls.append(calls[x])
294 # print 'append', calls[x]
294 # print 'append', calls[x]
295 del calls[x]
295 del calls[x]
296 break
296 break
297 instance_dict["slow_calls"] = new_calls
297 instance_dict["slow_calls"] = new_calls
298
298
299 instance_dict["front_url"] = self.get_public_url(request)
299 instance_dict["front_url"] = self.get_public_url(request)
300
300
301 exclude_keys_list = exclude_keys or []
301 exclude_keys_list = exclude_keys or []
302 include_keys_list = include_keys or []
302 include_keys_list = include_keys or []
303 for k in list(instance_dict.keys()):
303 for k in list(instance_dict.keys()):
304 if k == "group":
304 if k == "group":
305 continue
305 continue
306 if k in exclude_keys_list or (k not in include_keys_list and include_keys):
306 if k in exclude_keys_list or (k not in include_keys_list and include_keys):
307 del instance_dict[k]
307 del instance_dict[k]
308 return instance_dict
308 return instance_dict
309
309
310 def get_previous_in_group(self, request):
310 def get_previous_in_group(self, request):
311 query = {
311 query = {
312 "size": 1,
312 "size": 1,
313 "query": {
313 "query": {
314 "bool": {
314 "bool": {
315 "filter": {
315 "filter": [
316 "and": [
316 {"term": {"group_id": self.group_id}},
317 {"term": {"group_id": self.group_id}},
317 {"range": {"pg_id": {"lt": self.id}}},
318 {"range": {"pg_id": {"lt": self.id}}},
318 ]
319 ]
320 }
321 }
319 }
322 },
320 },
323 "sort": [{"_doc": {"order": "desc"}}],
321 "sort": [{"_doc": {"order": "desc"}}],
324 }
322 }
325 result = request.es_conn.search(
323 result = request.es_conn.search(
326 body=query, index=self.partition_id, doc_type="report"
324 body=query, index=self.partition_id, doc_type="report"
327 )
325 )
328 if result["hits"]["total"]:
326 if result["hits"]["total"]:
329 return result["hits"]["hits"][0]["_source"]["pg_id"]
327 return result["hits"]["hits"][0]["_source"]["pg_id"]
330
328
331 def get_next_in_group(self, request):
329 def get_next_in_group(self, request):
332 query = {
330 query = {
333 "size": 1,
331 "size": 1,
334 "query": {
332 "query": {
335 "bool": {
333 "bool": {
336 "filter": {
334 "filter": [
337 "and": [
335 {"term": {"group_id": self.group_id}},
338 {"term": {"group_id": self.group_id}},
336 {"range": {"pg_id": {"gt": self.id}}},
339 {"range": {"pg_id": {"gt": self.id}}},
337 ]
340 ]
341 }
342 }
338 }
343 },
339 },
344 "sort": [{"_doc": {"order": "asc"}}],
340 "sort": [{"_doc": {"order": "asc"}}],
345 }
341 }
346 result = request.es_conn.search(
342 result = request.es_conn.search(
347 body=query, index=self.partition_id, doc_type="report"
343 body=query, index=self.partition_id, doc_type="report"
348 )
344 )
349 if result["hits"]["total"]:
345 if result["hits"]["total"]:
350 return result["hits"]["hits"][0]["_source"]["pg_id"]
346 return result["hits"]["hits"][0]["_source"]["pg_id"]
351
347
352 def get_public_url(self, request=None, report_group=None, _app_url=None):
348 def get_public_url(self, request=None, report_group=None, _app_url=None):
353 """
349 """
354 Returns url that user can use to visit specific report
350 Returns url that user can use to visit specific report
355 """
351 """
356 if not request:
352 if not request:
357 request = get_current_request()
353 request = get_current_request()
358 url = request.route_url("/", _app_url=_app_url)
354 url = request.route_url("/", _app_url=_app_url)
359 if report_group:
355 if report_group:
360 return (url + "ui/report/%s/%s") % (report_group.id, self.id)
356 return (url + "ui/report/%s/%s") % (report_group.id, self.id)
361 return (url + "ui/report/%s/%s") % (self.group_id, self.id)
357 return (url + "ui/report/%s/%s") % (self.group_id, self.id)
362
358
363 def req_stats(self):
359 def req_stats(self):
364 stats = self.request_stats.copy()
360 stats = self.request_stats.copy()
365 stats["percentages"] = {}
361 stats["percentages"] = {}
366 stats["percentages"]["main"] = 100.0
362 stats["percentages"]["main"] = 100.0
367 main = stats.get("main", 0.0)
363 main = stats.get("main", 0.0)
368 if not main:
364 if not main:
369 return None
365 return None
370 for name, call_time in stats.items():
366 for name, call_time in stats.items():
371 if "calls" not in name and "main" not in name and "percentages" not in name:
367 if "calls" not in name and "main" not in name and "percentages" not in name:
372 stats["main"] -= call_time
368 stats["main"] -= call_time
373 stats["percentages"][name] = math.floor((call_time / main * 100.0))
369 stats["percentages"][name] = math.floor((call_time / main * 100.0))
374 stats["percentages"]["main"] -= stats["percentages"][name]
370 stats["percentages"]["main"] -= stats["percentages"][name]
375 if stats["percentages"]["main"] < 0.0:
371 if stats["percentages"]["main"] < 0.0:
376 stats["percentages"]["main"] = 0.0
372 stats["percentages"]["main"] = 0.0
377 stats["main"] = 0.0
373 stats["main"] = 0.0
378 return stats
374 return stats
379
375
380 def generate_grouping_hash(
376 def generate_grouping_hash(
381 self, hash_string=None, default_grouping=None, protocol_version=None
377 self, hash_string=None, default_grouping=None, protocol_version=None
382 ):
378 ):
383 """
379 """
384 Generates SHA1 hash that will be used to group reports together
380 Generates SHA1 hash that will be used to group reports together
385 """
381 """
386 if not hash_string:
382 if not hash_string:
387 location = self.tags.get("view_name") or self.url_path
383 location = self.tags.get("view_name") or self.url_path
388 server_name = self.tags.get("server_name") or ""
384 server_name = self.tags.get("server_name") or ""
389 if default_grouping == "url_traceback":
385 if default_grouping == "url_traceback":
390 hash_string = "%s_%s_%s" % (self.traceback_hash, location, self.error)
386 hash_string = "%s_%s_%s" % (self.traceback_hash, location, self.error)
391 if self.language == Language.javascript:
387 if self.language == Language.javascript:
392 hash_string = "%s_%s" % (self.traceback_hash, self.error)
388 hash_string = "%s_%s" % (self.traceback_hash, self.error)
393
389
394 elif default_grouping == "traceback_server":
390 elif default_grouping == "traceback_server":
395 hash_string = "%s_%s" % (self.traceback_hash, server_name)
391 hash_string = "%s_%s" % (self.traceback_hash, server_name)
396 if self.language == Language.javascript:
392 if self.language == Language.javascript:
397 hash_string = "%s_%s" % (self.traceback_hash, server_name)
393 hash_string = "%s_%s" % (self.traceback_hash, server_name)
398 else:
394 else:
399 hash_string = "%s_%s" % (self.error, location)
395 hash_string = "%s_%s" % (self.error, location)
400 month = datetime.utcnow().date().replace(day=1)
396 month = datetime.utcnow().date().replace(day=1)
401 hash_string = "{}_{}".format(month, hash_string)
397 hash_string = "{}_{}".format(month, hash_string)
402 binary_string = hash_string.encode("utf8")
398 binary_string = hash_string.encode("utf8")
403 self.grouping_hash = hashlib.sha1(binary_string).hexdigest()
399 self.grouping_hash = hashlib.sha1(binary_string).hexdigest()
404 return self.grouping_hash
400 return self.grouping_hash
405
401
406 def stripped_traceback(self):
402 def stripped_traceback(self):
407 """
403 """
408 Traceback without local vars
404 Traceback without local vars
409 """
405 """
410 stripped_traceback = copy.deepcopy(self.traceback)
406 stripped_traceback = copy.deepcopy(self.traceback)
411
407
412 if isinstance(stripped_traceback, list):
408 if isinstance(stripped_traceback, list):
413 for row in stripped_traceback:
409 for row in stripped_traceback:
414 row.pop("vars", None)
410 row.pop("vars", None)
415 return stripped_traceback
411 return stripped_traceback
416
412
417 def notify_channel(self, report_group):
413 def notify_channel(self, report_group):
418 """
414 """
419 Sends notification to websocket channel
415 Sends notification to websocket channel
420 """
416 """
421 settings = get_current_registry().settings
417 settings = get_current_registry().settings
422 log.info("notify channelstream")
418 log.info("notify channelstream")
423 if self.report_type != ReportType.error:
419 if self.report_type != ReportType.error:
424 return
420 return
425 payload = {
421 payload = {
426 "type": "message",
422 "type": "message",
427 "user": "__system__",
423 "user": "__system__",
428 "channel": "app_%s" % self.resource_id,
424 "channel": "app_%s" % self.resource_id,
429 "message": {
425 "message": {
430 "topic": "front_dashboard.new_topic",
426 "topic": "front_dashboard.new_topic",
431 "report": {
427 "report": {
432 "group": {
428 "group": {
433 "priority": report_group.priority,
429 "priority": report_group.priority,
434 "first_timestamp": report_group.first_timestamp,
430 "first_timestamp": report_group.first_timestamp,
435 "last_timestamp": report_group.last_timestamp,
431 "last_timestamp": report_group.last_timestamp,
436 "average_duration": report_group.average_duration,
432 "average_duration": report_group.average_duration,
437 "occurences": report_group.occurences,
433 "occurences": report_group.occurences,
438 },
434 },
439 "report_id": self.id,
435 "report_id": self.id,
440 "group_id": self.group_id,
436 "group_id": self.group_id,
441 "resource_id": self.resource_id,
437 "resource_id": self.resource_id,
442 "http_status": self.http_status,
438 "http_status": self.http_status,
443 "url_domain": self.url_domain,
439 "url_domain": self.url_domain,
444 "url_path": self.url_path,
440 "url_path": self.url_path,
445 "error": self.error or "",
441 "error": self.error or "",
446 "server": self.tags.get("server_name"),
442 "server": self.tags.get("server_name"),
447 "view_name": self.tags.get("view_name"),
443 "view_name": self.tags.get("view_name"),
448 "front_url": self.get_public_url(),
444 "front_url": self.get_public_url(),
449 },
445 },
450 },
446 },
451 }
447 }
452 channelstream_request(
448 channelstream_request(
453 settings["cometd.secret"],
449 settings["cometd.secret"],
454 "/message",
450 "/message",
455 [payload],
451 [payload],
456 servers=[settings["cometd_servers"]],
452 servers=[settings["cometd_servers"]],
457 )
453 )
458
454
459 def es_doc(self):
455 def es_doc(self):
460 tags = {}
456 tags = {}
461 tag_list = []
457 tag_list = []
462 for name, value in self.tags.items():
458 for name, value in self.tags.items():
463 name = name.replace(".", "_")
459 name = name.replace(".", "_")
464 tag_list.append(name)
460 tag_list.append(name)
465 tags[name] = {
461 tags[name] = {
466 "values": convert_es_type(value),
462 "values": convert_es_type(value),
467 "numeric_values": value
463 "numeric_values": value
468 if (isinstance(value, (int, float)) and not isinstance(value, bool))
464 if (isinstance(value, (int, float)) and not isinstance(value, bool))
469 else None,
465 else None,
470 }
466 }
471
467
472 if "user_name" not in self.tags and self.username:
468 if "user_name" not in self.tags and self.username:
473 tags["user_name"] = {"value": [self.username], "numeric_value": None}
469 tags["user_name"] = {"value": [self.username], "numeric_value": None}
474 return {
470 return {
475 "_id": str(self.id),
471 "_id": str(self.id),
476 "pg_id": str(self.id),
472 "pg_id": str(self.id),
477 "resource_id": self.resource_id,
473 "resource_id": self.resource_id,
478 "http_status": self.http_status or "",
474 "http_status": self.http_status or "",
479 "start_time": self.start_time,
475 "start_time": self.start_time,
480 "end_time": self.end_time,
476 "end_time": self.end_time,
481 "url_domain": self.url_domain if self.url_domain else "",
477 "url_domain": self.url_domain if self.url_domain else "",
482 "url_path": self.url_path if self.url_path else "",
478 "url_path": self.url_path if self.url_path else "",
483 "duration": self.duration,
479 "duration": self.duration,
484 "error": self.error if self.error else "",
480 "error": self.error if self.error else "",
485 "report_type": self.report_type,
481 "report_type": self.report_type,
486 "request_id": self.request_id,
482 "request_id": self.request_id,
487 "ip": self.ip,
483 "ip": self.ip,
488 "group_id": str(self.group_id),
484 "group_id": str(self.group_id),
489 "_parent": str(self.group_id),
485 "_parent": str(self.group_id),
490 "tags": tags,
486 "tags": tags,
491 "tag_list": tag_list,
487 "tag_list": tag_list,
492 }
488 }
493
489
494 @property
490 @property
495 def partition_id(self):
491 def partition_id(self):
496 return "rcae_r_%s" % self.report_group_time.strftime("%Y_%m")
492 return "rcae_r_%s" % self.report_group_time.strftime("%Y_%m")
497
493
498 def partition_range(self):
494 def partition_range(self):
499 start_date = self.report_group_time.date().replace(day=1)
495 start_date = self.report_group_time.date().replace(day=1)
500 end_date = start_date + timedelta(days=40)
496 end_date = start_date + timedelta(days=40)
501 end_date = end_date.replace(day=1)
497 end_date = end_date.replace(day=1)
502 return start_date, end_date
498 return start_date, end_date
503
499
504
500
505 def after_insert(mapper, connection, target):
501 def after_insert(mapper, connection, target):
506 if not hasattr(target, "_skip_ft_index"):
502 if not hasattr(target, "_skip_ft_index"):
507 data = target.es_doc()
503 data = target.es_doc()
508 data.pop("_id", None)
504 data.pop("_id", None)
509 Datastores.es.index(
505 Datastores.es.index(
510 target.partition_id, "report", data, parent=target.group_id, id=target.id
506 target.partition_id, "report", data, parent=target.group_id, id=target.id
511 )
507 )
512
508
513
509
514 def after_update(mapper, connection, target):
510 def after_update(mapper, connection, target):
515 if not hasattr(target, "_skip_ft_index"):
511 if not hasattr(target, "_skip_ft_index"):
516 data = target.es_doc()
512 data = target.es_doc()
517 data.pop("_id", None)
513 data.pop("_id", None)
518 Datastores.es.index(
514 Datastores.es.index(
519 target.partition_id, "report", data, parent=target.group_id, id=target.id
515 target.partition_id, "report", data, parent=target.group_id, id=target.id
520 )
516 )
521
517
522
518
523 def after_delete(mapper, connection, target):
519 def after_delete(mapper, connection, target):
524 if not hasattr(target, "_skip_ft_index"):
520 if not hasattr(target, "_skip_ft_index"):
525 query = {"query": {"term": {"pg_id": target.id}}}
521 query = {"query": {"term": {"pg_id": target.id}}}
526 Datastores.es.transport.perform_request(
522 Datastores.es.transport.perform_request(
527 "DELETE", "/{}/{}/_query".format(target.partition_id, "report"), body=query
523 "DELETE", "/{}/{}/_query".format(target.partition_id, "report"), body=query
528 )
524 )
529
525
530
526
531 sa.event.listen(Report, "after_insert", after_insert)
527 sa.event.listen(Report, "after_insert", after_insert)
532 sa.event.listen(Report, "after_update", after_update)
528 sa.event.listen(Report, "after_update", after_update)
533 sa.event.listen(Report, "after_delete", after_delete)
529 sa.event.listen(Report, "after_delete", after_delete)
@@ -1,222 +1,222 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
4 #
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
7 # You may obtain a copy of the License at
8 #
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
10 #
11 # Unless required by applicable law or agreed to in writing, software
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
15 # limitations under the License.
16
16
17 import paginate
17 import paginate
18 import logging
18 import logging
19 import sqlalchemy as sa
19 import sqlalchemy as sa
20
20
21 from appenlight.models.log import Log
21 from appenlight.models.log import Log
22 from appenlight.models import get_db_session, Datastores
22 from appenlight.models import get_db_session, Datastores
23 from appenlight.models.services.base import BaseService
23 from appenlight.models.services.base import BaseService
24 from appenlight.lib.utils import es_index_name_limiter
24 from appenlight.lib.utils import es_index_name_limiter
25
25
26 log = logging.getLogger(__name__)
26 log = logging.getLogger(__name__)
27
27
28
28
29 class LogService(BaseService):
29 class LogService(BaseService):
30 @classmethod
30 @classmethod
31 def get_logs(cls, resource_ids=None, filter_settings=None, db_session=None):
31 def get_logs(cls, resource_ids=None, filter_settings=None, db_session=None):
32 # ensure we always have id's passed
32 # ensure we always have id's passed
33 if not resource_ids:
33 if not resource_ids:
34 # raise Exception('No App ID passed')
34 # raise Exception('No App ID passed')
35 return []
35 return []
36 db_session = get_db_session(db_session)
36 db_session = get_db_session(db_session)
37 q = db_session.query(Log)
37 q = db_session.query(Log)
38 q = q.filter(Log.resource_id.in_(resource_ids))
38 q = q.filter(Log.resource_id.in_(resource_ids))
39 if filter_settings.get("start_date"):
39 if filter_settings.get("start_date"):
40 q = q.filter(Log.timestamp >= filter_settings.get("start_date"))
40 q = q.filter(Log.timestamp >= filter_settings.get("start_date"))
41 if filter_settings.get("end_date"):
41 if filter_settings.get("end_date"):
42 q = q.filter(Log.timestamp <= filter_settings.get("end_date"))
42 q = q.filter(Log.timestamp <= filter_settings.get("end_date"))
43 if filter_settings.get("log_level"):
43 if filter_settings.get("log_level"):
44 q = q.filter(Log.log_level == filter_settings.get("log_level").upper())
44 q = q.filter(Log.log_level == filter_settings.get("log_level").upper())
45 if filter_settings.get("request_id"):
45 if filter_settings.get("request_id"):
46 request_id = filter_settings.get("request_id", "")
46 request_id = filter_settings.get("request_id", "")
47 q = q.filter(Log.request_id == request_id.replace("-", ""))
47 q = q.filter(Log.request_id == request_id.replace("-", ""))
48 if filter_settings.get("namespace"):
48 if filter_settings.get("namespace"):
49 q = q.filter(Log.namespace == filter_settings.get("namespace"))
49 q = q.filter(Log.namespace == filter_settings.get("namespace"))
50 q = q.order_by(sa.desc(Log.timestamp))
50 q = q.order_by(sa.desc(Log.timestamp))
51 return q
51 return q
52
52
53 @classmethod
53 @classmethod
54 def es_query_builder(cls, app_ids, filter_settings):
54 def es_query_builder(cls, app_ids, filter_settings):
55 if not filter_settings:
55 if not filter_settings:
56 filter_settings = {}
56 filter_settings = {}
57
57
58 query = {
58 query = {
59 "query": {
59 "query": {
60 "bool": {
60 "bool": {
61 "filter": {"and": [{"terms": {"resource_id": list(app_ids)}}]}
61 "filter": [{"terms": {"resource_id": list(app_ids)}}]
62 }
62 }
63 }
63 }
64 }
64 }
65
65
66 start_date = filter_settings.get("start_date")
66 start_date = filter_settings.get("start_date")
67 end_date = filter_settings.get("end_date")
67 end_date = filter_settings.get("end_date")
68 filter_part = query["query"]["bool"]["filter"]["and"]
68 filter_part = query["query"]["bool"]["filter"]
69
69
70 for tag in filter_settings.get("tags", []):
70 for tag in filter_settings.get("tags", []):
71 tag_values = [v.lower() for v in tag["value"]]
71 tag_values = [v.lower() for v in tag["value"]]
72 key = "tags.%s.values" % tag["name"].replace(".", "_")
72 key = "tags.%s.values" % tag["name"].replace(".", "_")
73 filter_part.append({"terms": {key: tag_values}})
73 filter_part.append({"terms": {key: tag_values}})
74
74
75 date_range = {"range": {"timestamp": {}}}
75 date_range = {"range": {"timestamp": {}}}
76 if start_date:
76 if start_date:
77 date_range["range"]["timestamp"]["gte"] = start_date
77 date_range["range"]["timestamp"]["gte"] = start_date
78 if end_date:
78 if end_date:
79 date_range["range"]["timestamp"]["lte"] = end_date
79 date_range["range"]["timestamp"]["lte"] = end_date
80 if start_date or end_date:
80 if start_date or end_date:
81 filter_part.append(date_range)
81 filter_part.append(date_range)
82
82
83 levels = filter_settings.get("level")
83 levels = filter_settings.get("level")
84 if levels:
84 if levels:
85 filter_part.append({"terms": {"log_level": levels}})
85 filter_part.append({"terms": {"log_level": levels}})
86 namespaces = filter_settings.get("namespace")
86 namespaces = filter_settings.get("namespace")
87 if namespaces:
87 if namespaces:
88 filter_part.append({"terms": {"namespace": namespaces}})
88 filter_part.append({"terms": {"namespace": namespaces}})
89
89
90 request_ids = filter_settings.get("request_id")
90 request_ids = filter_settings.get("request_id")
91 if request_ids:
91 if request_ids:
92 filter_part.append({"terms": {"request_id": request_ids}})
92 filter_part.append({"terms": {"request_id": request_ids}})
93
93
94 messages = filter_settings.get("message")
94 messages = filter_settings.get("message")
95 if messages:
95 if messages:
96 query["query"]["bool"]["must"] = {
96 query["query"]["bool"]["must"] = {
97 "match": {"message": {"query": " ".join(messages), "operator": "and"}}
97 "match": {"message": {"query": " ".join(messages), "operator": "and"}}
98 }
98 }
99 return query
99 return query
100
100
101 @classmethod
101 @classmethod
102 def get_time_series_aggregate(cls, app_ids=None, filter_settings=None):
102 def get_time_series_aggregate(cls, app_ids=None, filter_settings=None):
103 if not app_ids:
103 if not app_ids:
104 return {}
104 return {}
105 es_query = cls.es_query_builder(app_ids, filter_settings)
105 es_query = cls.es_query_builder(app_ids, filter_settings)
106 es_query["aggs"] = {
106 es_query["aggs"] = {
107 "events_over_time": {
107 "events_over_time": {
108 "date_histogram": {
108 "date_histogram": {
109 "field": "timestamp",
109 "field": "timestamp",
110 "interval": "1h",
110 "interval": "1h",
111 "min_doc_count": 0,
111 "min_doc_count": 0,
112 "extended_bounds": {
112 "extended_bounds": {
113 "max": filter_settings.get("end_date"),
113 "max": filter_settings.get("end_date"),
114 "min": filter_settings.get("start_date"),
114 "min": filter_settings.get("start_date"),
115 },
115 },
116 }
116 }
117 }
117 }
118 }
118 }
119 log.debug(es_query)
119 log.debug(es_query)
120 index_names = es_index_name_limiter(
120 index_names = es_index_name_limiter(
121 filter_settings.get("start_date"),
121 filter_settings.get("start_date"),
122 filter_settings.get("end_date"),
122 filter_settings.get("end_date"),
123 ixtypes=["logs"],
123 ixtypes=["logs"],
124 )
124 )
125 if index_names:
125 if index_names:
126 results = Datastores.es.search(
126 results = Datastores.es.search(
127 body=es_query, index=index_names, doc_type="log", size=0
127 body=es_query, index=index_names, doc_type="log", size=0
128 )
128 )
129 else:
129 else:
130 results = []
130 results = []
131 return results
131 return results
132
132
133 @classmethod
133 @classmethod
134 def get_search_iterator(
134 def get_search_iterator(
135 cls,
135 cls,
136 app_ids=None,
136 app_ids=None,
137 page=1,
137 page=1,
138 items_per_page=50,
138 items_per_page=50,
139 order_by=None,
139 order_by=None,
140 filter_settings=None,
140 filter_settings=None,
141 limit=None,
141 limit=None,
142 ):
142 ):
143 if not app_ids:
143 if not app_ids:
144 return {}, 0
144 return {}, 0
145
145
146 es_query = cls.es_query_builder(app_ids, filter_settings)
146 es_query = cls.es_query_builder(app_ids, filter_settings)
147 sort_query = {"sort": [{"timestamp": {"order": "desc"}}]}
147 sort_query = {"sort": [{"timestamp": {"order": "desc"}}]}
148 es_query.update(sort_query)
148 es_query.update(sort_query)
149 log.debug(es_query)
149 log.debug(es_query)
150 es_from = (page - 1) * items_per_page
150 es_from = (page - 1) * items_per_page
151 index_names = es_index_name_limiter(
151 index_names = es_index_name_limiter(
152 filter_settings.get("start_date"),
152 filter_settings.get("start_date"),
153 filter_settings.get("end_date"),
153 filter_settings.get("end_date"),
154 ixtypes=["logs"],
154 ixtypes=["logs"],
155 )
155 )
156 if not index_names:
156 if not index_names:
157 return {}, 0
157 return {}, 0
158
158
159 results = Datastores.es.search(
159 results = Datastores.es.search(
160 body=es_query,
160 body=es_query,
161 index=index_names,
161 index=index_names,
162 doc_type="log",
162 doc_type="log",
163 size=items_per_page,
163 size=items_per_page,
164 from_=es_from,
164 from_=es_from,
165 )
165 )
166 if results["hits"]["total"] > 5000:
166 if results["hits"]["total"] > 5000:
167 count = 5000
167 count = 5000
168 else:
168 else:
169 count = results["hits"]["total"]
169 count = results["hits"]["total"]
170 return results["hits"], count
170 return results["hits"], count
171
171
172 @classmethod
172 @classmethod
173 def get_paginator_by_app_ids(
173 def get_paginator_by_app_ids(
174 cls,
174 cls,
175 app_ids=None,
175 app_ids=None,
176 page=1,
176 page=1,
177 item_count=None,
177 item_count=None,
178 items_per_page=50,
178 items_per_page=50,
179 order_by=None,
179 order_by=None,
180 filter_settings=None,
180 filter_settings=None,
181 exclude_columns=None,
181 exclude_columns=None,
182 db_session=None,
182 db_session=None,
183 ):
183 ):
184 if not filter_settings:
184 if not filter_settings:
185 filter_settings = {}
185 filter_settings = {}
186 results, item_count = cls.get_search_iterator(
186 results, item_count = cls.get_search_iterator(
187 app_ids, page, items_per_page, order_by, filter_settings
187 app_ids, page, items_per_page, order_by, filter_settings
188 )
188 )
189 paginator = paginate.Page(
189 paginator = paginate.Page(
190 [], item_count=item_count, items_per_page=items_per_page, **filter_settings
190 [], item_count=item_count, items_per_page=items_per_page, **filter_settings
191 )
191 )
192 ordered_ids = tuple(
192 ordered_ids = tuple(
193 item["_source"]["pg_id"] for item in results.get("hits", [])
193 item["_source"]["pg_id"] for item in results.get("hits", [])
194 )
194 )
195
195
196 sorted_instance_list = []
196 sorted_instance_list = []
197 if ordered_ids:
197 if ordered_ids:
198 db_session = get_db_session(db_session)
198 db_session = get_db_session(db_session)
199 query = db_session.query(Log)
199 query = db_session.query(Log)
200 query = query.filter(Log.log_id.in_(ordered_ids))
200 query = query.filter(Log.log_id.in_(ordered_ids))
201 query = query.order_by(sa.desc("timestamp"))
201 query = query.order_by(sa.desc("timestamp"))
202 sa_items = query.all()
202 sa_items = query.all()
203 # resort by score
203 # resort by score
204 for i_id in ordered_ids:
204 for i_id in ordered_ids:
205 for item in sa_items:
205 for item in sa_items:
206 if str(item.log_id) == str(i_id):
206 if str(item.log_id) == str(i_id):
207 sorted_instance_list.append(item)
207 sorted_instance_list.append(item)
208 paginator.sa_items = sorted_instance_list
208 paginator.sa_items = sorted_instance_list
209 return paginator
209 return paginator
210
210
211 @classmethod
211 @classmethod
212 def query_by_primary_key_and_namespace(cls, list_of_pairs, db_session=None):
212 def query_by_primary_key_and_namespace(cls, list_of_pairs, db_session=None):
213 db_session = get_db_session(db_session)
213 db_session = get_db_session(db_session)
214 list_of_conditions = []
214 list_of_conditions = []
215 query = db_session.query(Log)
215 query = db_session.query(Log)
216 for pair in list_of_pairs:
216 for pair in list_of_pairs:
217 list_of_conditions.append(
217 list_of_conditions.append(
218 sa.and_(Log.primary_key == pair["pk"], Log.namespace == pair["ns"])
218 sa.and_(Log.primary_key == pair["pk"], Log.namespace == pair["ns"])
219 )
219 )
220 query = query.filter(sa.or_(*list_of_conditions))
220 query = query.filter(sa.or_(*list_of_conditions))
221 query = query.order_by(sa.asc(Log.timestamp), sa.asc(Log.log_id))
221 query = query.order_by(sa.asc(Log.timestamp), sa.asc(Log.log_id))
222 return query
222 return query
@@ -1,523 +1,519 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
4 #
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
7 # You may obtain a copy of the License at
8 #
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
10 #
11 # Unless required by applicable law or agreed to in writing, software
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
15 # limitations under the License.
16
16
17 import logging
17 import logging
18 import paginate
18 import paginate
19 import sqlalchemy as sa
19 import sqlalchemy as sa
20 import appenlight.lib.helpers as h
20 import appenlight.lib.helpers as h
21
21
22 from datetime import datetime
22 from datetime import datetime
23
23
24 from appenlight.models import get_db_session, Datastores
24 from appenlight.models import get_db_session, Datastores
25 from appenlight.models.report import Report
25 from appenlight.models.report import Report
26 from appenlight.models.report_group import ReportGroup
26 from appenlight.models.report_group import ReportGroup
27 from appenlight.models.report_comment import ReportComment
27 from appenlight.models.report_comment import ReportComment
28 from appenlight.models.user import User
28 from appenlight.models.user import User
29 from appenlight.models.services.base import BaseService
29 from appenlight.models.services.base import BaseService
30 from appenlight.lib.enums import ReportType
30 from appenlight.lib.enums import ReportType
31 from appenlight.lib.utils import es_index_name_limiter
31 from appenlight.lib.utils import es_index_name_limiter
32
32
33 log = logging.getLogger(__name__)
33 log = logging.getLogger(__name__)
34
34
35
35
36 class ReportGroupService(BaseService):
36 class ReportGroupService(BaseService):
37 @classmethod
37 @classmethod
38 def get_trending(cls, request, filter_settings, limit=15, db_session=None):
38 def get_trending(cls, request, filter_settings, limit=15, db_session=None):
39 """
39 """
40 Returns report groups trending for specific time interval
40 Returns report groups trending for specific time interval
41 """
41 """
42 db_session = get_db_session(db_session)
42 db_session = get_db_session(db_session)
43
43
44 tags = []
44 tags = []
45 if filter_settings.get("tags"):
45 if filter_settings.get("tags"):
46 for tag in filter_settings["tags"]:
46 for tag in filter_settings["tags"]:
47 tags.append(
47 tags.append(
48 {"terms": {"tags.{}.values".format(tag["name"]): tag["value"]}}
48 {"terms": {"tags.{}.values".format(tag["name"]): tag["value"]}}
49 )
49 )
50
50
51 index_names = es_index_name_limiter(
51 index_names = es_index_name_limiter(
52 start_date=filter_settings["start_date"],
52 start_date=filter_settings["start_date"],
53 end_date=filter_settings["end_date"],
53 end_date=filter_settings["end_date"],
54 ixtypes=["reports"],
54 ixtypes=["reports"],
55 )
55 )
56
56
57 if not index_names or not filter_settings["resource"]:
57 if not index_names or not filter_settings["resource"]:
58 return []
58 return []
59
59
60 es_query = {
60 es_query = {
61 "aggs": {
61 "aggs": {
62 "parent_agg": {
62 "parent_agg": {
63 "aggs": {
63 "aggs": {
64 "groups": {
64 "groups": {
65 "aggs": {
65 "aggs": {
66 "sub_agg": {
66 "sub_agg": {
67 "value_count": {"field": "tags.group_id.values"}
67 "value_count": {"field": "tags.group_id.values"}
68 }
68 }
69 },
69 },
70 "filter": {"exists": {"field": "tags.group_id.values"}},
70 "filter": {"exists": {"field": "tags.group_id.values"}},
71 }
71 }
72 },
72 },
73 "terms": {"field": "tags.group_id.values", "size": limit},
73 "terms": {"field": "tags.group_id.values", "size": limit},
74 }
74 }
75 },
75 },
76 "query": {
76 "query": {
77 "bool": {
77 "bool": {
78 "filter": {
78 "filter": [
79 "and": [
79 {
80 {
80 "terms": {
81 "terms": {
81 "resource_id": [filter_settings["resource"][0]]
82 "resource_id": [filter_settings["resource"][0]]
82 }
83 }
83 },
84 },
84 {
85 {
85 "range": {
86 "range": {
86 "timestamp": {
87 "timestamp": {
87 "gte": filter_settings["start_date"],
88 "gte": filter_settings["start_date"],
88 "lte": filter_settings["end_date"],
89 "lte": filter_settings["end_date"],
90 }
91 }
89 }
92 },
90 }
93 ]
91 },
94 }
92 ]
95 }
93 }
96 },
94 },
97 }
95 }
98 if tags:
96 if tags:
99 es_query["query"]["bool"]["filter"]["and"].extend(tags)
97 es_query["query"]["bool"]["filter"].extend(tags)
100
98
101 result = Datastores.es.search(
99 result = Datastores.es.search(
102 body=es_query, index=index_names, doc_type="log", size=0
100 body=es_query, index=index_names, doc_type="log", size=0
103 )
101 )
104 series = []
102 series = []
105 for bucket in result["aggregations"]["parent_agg"]["buckets"]:
103 for bucket in result["aggregations"]["parent_agg"]["buckets"]:
106 series.append(
104 series.append(
107 {"key": bucket["key"], "groups": bucket["groups"]["sub_agg"]["value"]}
105 {"key": bucket["key"], "groups": bucket["groups"]["sub_agg"]["value"]}
108 )
106 )
109
107
110 report_groups_d = {}
108 report_groups_d = {}
111 for g in series:
109 for g in series:
112 report_groups_d[int(g["key"])] = g["groups"] or 0
110 report_groups_d[int(g["key"])] = g["groups"] or 0
113
111
114 query = db_session.query(ReportGroup)
112 query = db_session.query(ReportGroup)
115 query = query.filter(ReportGroup.id.in_(list(report_groups_d.keys())))
113 query = query.filter(ReportGroup.id.in_(list(report_groups_d.keys())))
116 query = query.options(sa.orm.joinedload(ReportGroup.last_report_ref))
114 query = query.options(sa.orm.joinedload(ReportGroup.last_report_ref))
117 results = [(report_groups_d[group.id], group) for group in query]
115 results = [(report_groups_d[group.id], group) for group in query]
118 return sorted(results, reverse=True, key=lambda x: x[0])
116 return sorted(results, reverse=True, key=lambda x: x[0])
119
117
120 @classmethod
118 @classmethod
121 def get_search_iterator(
119 def get_search_iterator(
122 cls,
120 cls,
123 app_ids=None,
121 app_ids=None,
124 page=1,
122 page=1,
125 items_per_page=50,
123 items_per_page=50,
126 order_by=None,
124 order_by=None,
127 filter_settings=None,
125 filter_settings=None,
128 limit=None,
126 limit=None,
129 ):
127 ):
130 if not app_ids:
128 if not app_ids:
131 return {}
129 return {}
132 if not filter_settings:
130 if not filter_settings:
133 filter_settings = {}
131 filter_settings = {}
134
132
135 query = {
133 query = {
136 "size": 0,
134 "size": 0,
137 "query": {
135 "query": {
138 "bool": {
136 "bool": {
139 "must": [],
137 "must": [],
140 "should": [],
138 "should": [],
141 "filter": {"and": [{"terms": {"resource_id": list(app_ids)}}]}
139 "filter": [{"terms": {"resource_id": list(app_ids)}}]
142 }
140 }
143 },
141 },
144 "aggs": {
142 "aggs": {
145 "top_groups": {
143 "top_groups": {
146 "terms": {
144 "terms": {
147 "size": 5000,
145 "size": 5000,
148 "field": "_parent",
146 "field": "_parent",
149 "order": {"newest": "desc"},
147 "order": {"newest": "desc"},
150 },
148 },
151 "aggs": {
149 "aggs": {
152 "top_reports_hits": {
150 "top_reports_hits": {
153 "top_hits": {"size": 1, "sort": {"start_time": "desc"}}
151 "top_hits": {"size": 1, "sort": {"start_time": "desc"}}
154 },
152 },
155 "newest": {"max": {"field": "start_time"}},
153 "newest": {"max": {"field": "start_time"}},
156 },
154 },
157 }
155 }
158 },
156 },
159 }
157 }
160
158
161 start_date = filter_settings.get("start_date")
159 start_date = filter_settings.get("start_date")
162 end_date = filter_settings.get("end_date")
160 end_date = filter_settings.get("end_date")
163 filter_part = query["query"]["bool"]["filter"]["and"]
161 filter_part = query["query"]["bool"]["filter"]
164 date_range = {"range": {"start_time": {}}}
162 date_range = {"range": {"start_time": {}}}
165 if start_date:
163 if start_date:
166 date_range["range"]["start_time"]["gte"] = start_date
164 date_range["range"]["start_time"]["gte"] = start_date
167 if end_date:
165 if end_date:
168 date_range["range"]["start_time"]["lte"] = end_date
166 date_range["range"]["start_time"]["lte"] = end_date
169 if start_date or end_date:
167 if start_date or end_date:
170 filter_part.append(date_range)
168 filter_part.append(date_range)
171
169
172 priorities = filter_settings.get("priority")
170 priorities = filter_settings.get("priority")
173
171
174 for tag in filter_settings.get("tags", []):
172 for tag in filter_settings.get("tags", []):
175 tag_values = [v.lower() for v in tag["value"]]
173 tag_values = [v.lower() for v in tag["value"]]
176 key = "tags.%s.values" % tag["name"].replace(".", "_")
174 key = "tags.%s.values" % tag["name"].replace(".", "_")
177 filter_part.append({"terms": {key: tag_values}})
175 filter_part.append({"terms": {key: tag_values}})
178
176
179 if priorities:
177 if priorities:
180 filter_part.append(
178 filter_part.append(
181 {
179 {
182 "has_parent": {
180 "has_parent": {
183 "parent_type": "report_group",
181 "parent_type": "report_group",
184 "query": {"terms": {"priority": priorities}},
182 "query": {"terms": {"priority": priorities}},
185 }
183 }
186 }
184 }
187 )
185 )
188
186
189 min_occurences = filter_settings.get("min_occurences")
187 min_occurences = filter_settings.get("min_occurences")
190 if min_occurences:
188 if min_occurences:
191 filter_part.append(
189 filter_part.append(
192 {
190 {
193 "has_parent": {
191 "has_parent": {
194 "parent_type": "report_group",
192 "parent_type": "report_group",
195 "query": {"range": {"occurences": {"gte": min_occurences[0]}}},
193 "query": {"range": {"occurences": {"gte": min_occurences[0]}}},
196 }
194 }
197 }
195 }
198 )
196 )
199
197
200 min_duration = filter_settings.get("min_duration")
198 min_duration = filter_settings.get("min_duration")
201 max_duration = filter_settings.get("max_duration")
199 max_duration = filter_settings.get("max_duration")
202
200
203 request_ids = filter_settings.get("request_id")
201 request_ids = filter_settings.get("request_id")
204 if request_ids:
202 if request_ids:
205 filter_part.append({"terms": {"request_id": request_ids}})
203 filter_part.append({"terms": {"request_id": request_ids}})
206
204
207 duration_range = {"range": {"average_duration": {}}}
205 duration_range = {"range": {"average_duration": {}}}
208 if min_duration:
206 if min_duration:
209 duration_range["range"]["average_duration"]["gte"] = min_duration[0]
207 duration_range["range"]["average_duration"]["gte"] = min_duration[0]
210 if max_duration:
208 if max_duration:
211 duration_range["range"]["average_duration"]["lte"] = max_duration[0]
209 duration_range["range"]["average_duration"]["lte"] = max_duration[0]
212 if min_duration or max_duration:
210 if min_duration or max_duration:
213 filter_part.append(
211 filter_part.append(
214 {"has_parent": {"parent_type": "report_group", "query": duration_range}}
212 {"has_parent": {"parent_type": "report_group", "query": duration_range}}
215 )
213 )
216
214
217 http_status = filter_settings.get("http_status")
215 http_status = filter_settings.get("http_status")
218 report_type = filter_settings.get("report_type", [ReportType.error])
216 report_type = filter_settings.get("report_type", [ReportType.error])
219 # set error report type if http status is not found
217 # set error report type if http status is not found
220 # and we are dealing with slow reports
218 # and we are dealing with slow reports
221 if not http_status or ReportType.slow in report_type:
219 if not http_status or ReportType.slow in report_type:
222 filter_part.append({"terms": {"report_type": report_type}})
220 filter_part.append({"terms": {"report_type": report_type}})
223 if http_status:
221 if http_status:
224 filter_part.append({"terms": {"http_status": http_status}})
222 filter_part.append({"terms": {"http_status": http_status}})
225
223
226 messages = filter_settings.get("message")
224 messages = filter_settings.get("message")
227 if messages:
225 if messages:
228 condition = {"match": {"message": " ".join(messages)}}
226 condition = {"match": {"message": " ".join(messages)}}
229 query["query"]["bool"]["must"].append(condition)
227 query["query"]["bool"]["must"].append(condition)
230 errors = filter_settings.get("error")
228 errors = filter_settings.get("error")
231 if errors:
229 if errors:
232 condition = {"match": {"error": " ".join(errors)}}
230 condition = {"match": {"error": " ".join(errors)}}
233 query["query"]["bool"]["must"].append(condition)
231 query["query"]["bool"]["must"].append(condition)
234 url_domains = filter_settings.get("url_domain")
232 url_domains = filter_settings.get("url_domain")
235 if url_domains:
233 if url_domains:
236 condition = {"terms": {"url_domain": url_domains}}
234 condition = {"terms": {"url_domain": url_domains}}
237 query["query"]["bool"]["must"].append(condition)
235 query["query"]["bool"]["must"].append(condition)
238 url_paths = filter_settings.get("url_path")
236 url_paths = filter_settings.get("url_path")
239 if url_paths:
237 if url_paths:
240 condition = {"terms": {"url_path": url_paths}}
238 condition = {"terms": {"url_path": url_paths}}
241 query["query"]["bool"]["must"].append(condition)
239 query["query"]["bool"]["must"].append(condition)
242
240
243 if filter_settings.get("report_status"):
241 if filter_settings.get("report_status"):
244 for status in filter_settings.get("report_status"):
242 for status in filter_settings.get("report_status"):
245 if status == "never_reviewed":
243 if status == "never_reviewed":
246 filter_part.append(
244 filter_part.append(
247 {
245 {
248 "has_parent": {
246 "has_parent": {
249 "parent_type": "report_group",
247 "parent_type": "report_group",
250 "query": {"term": {"read": False}},
248 "query": {"term": {"read": False}},
251 }
249 }
252 }
250 }
253 )
251 )
254 elif status == "reviewed":
252 elif status == "reviewed":
255 filter_part.append(
253 filter_part.append(
256 {
254 {
257 "has_parent": {
255 "has_parent": {
258 "parent_type": "report_group",
256 "parent_type": "report_group",
259 "query": {"term": {"read": True}},
257 "query": {"term": {"read": True}},
260 }
258 }
261 }
259 }
262 )
260 )
263 elif status == "public":
261 elif status == "public":
264 filter_part.append(
262 filter_part.append(
265 {
263 {
266 "has_parent": {
264 "has_parent": {
267 "parent_type": "report_group",
265 "parent_type": "report_group",
268 "query": {"term": {"public": True}},
266 "query": {"term": {"public": True}},
269 }
267 }
270 }
268 }
271 )
269 )
272 elif status == "fixed":
270 elif status == "fixed":
273 filter_part.append(
271 filter_part.append(
274 {
272 {
275 "has_parent": {
273 "has_parent": {
276 "parent_type": "report_group",
274 "parent_type": "report_group",
277 "query": {"term": {"fixed": True}},
275 "query": {"term": {"fixed": True}},
278 }
276 }
279 }
277 }
280 )
278 )
281
279
282 # logging.getLogger('pyelasticsearch').setLevel(logging.DEBUG)
280 # logging.getLogger('pyelasticsearch').setLevel(logging.DEBUG)
283 index_names = es_index_name_limiter(
281 index_names = es_index_name_limiter(
284 filter_settings.get("start_date"),
282 filter_settings.get("start_date"),
285 filter_settings.get("end_date"),
283 filter_settings.get("end_date"),
286 ixtypes=["reports"],
284 ixtypes=["reports"],
287 )
285 )
288 if index_names:
286 if index_names:
289 results = Datastores.es.search(
287 results = Datastores.es.search(
290 body=query,
288 body=query,
291 index=index_names,
289 index=index_names,
292 doc_type=["report", "report_group"],
290 doc_type=["report", "report_group"],
293 size=0,
291 size=0,
294 )
292 )
295 else:
293 else:
296 return []
294 return []
297 return results["aggregations"]
295 return results["aggregations"]
298
296
299 @classmethod
297 @classmethod
300 def get_paginator_by_app_ids(
298 def get_paginator_by_app_ids(
301 cls,
299 cls,
302 app_ids=None,
300 app_ids=None,
303 page=1,
301 page=1,
304 item_count=None,
302 item_count=None,
305 items_per_page=50,
303 items_per_page=50,
306 order_by=None,
304 order_by=None,
307 filter_settings=None,
305 filter_settings=None,
308 exclude_columns=None,
306 exclude_columns=None,
309 db_session=None,
307 db_session=None,
310 ):
308 ):
311 if not filter_settings:
309 if not filter_settings:
312 filter_settings = {}
310 filter_settings = {}
313 results = cls.get_search_iterator(
311 results = cls.get_search_iterator(
314 app_ids, page, items_per_page, order_by, filter_settings
312 app_ids, page, items_per_page, order_by, filter_settings
315 )
313 )
316
314
317 ordered_ids = []
315 ordered_ids = []
318 if results:
316 if results:
319 for item in results["top_groups"]["buckets"]:
317 for item in results["top_groups"]["buckets"]:
320 pg_id = item["top_reports_hits"]["hits"]["hits"][0]["_source"]["pg_id"]
318 pg_id = item["top_reports_hits"]["hits"]["hits"][0]["_source"]["pg_id"]
321 ordered_ids.append(pg_id)
319 ordered_ids.append(pg_id)
322 log.info(filter_settings)
320 log.info(filter_settings)
323 paginator = paginate.Page(
321 paginator = paginate.Page(
324 ordered_ids, items_per_page=items_per_page, **filter_settings
322 ordered_ids, items_per_page=items_per_page, **filter_settings
325 )
323 )
326 sa_items = ()
324 sa_items = ()
327 if paginator.items:
325 if paginator.items:
328 db_session = get_db_session(db_session)
326 db_session = get_db_session(db_session)
329 # latest report detail
327 # latest report detail
330 query = db_session.query(Report)
328 query = db_session.query(Report)
331 query = query.options(sa.orm.joinedload(Report.report_group))
329 query = query.options(sa.orm.joinedload(Report.report_group))
332 query = query.filter(Report.id.in_(paginator.items))
330 query = query.filter(Report.id.in_(paginator.items))
333 if filter_settings.get("order_col"):
331 if filter_settings.get("order_col"):
334 order_col = filter_settings.get("order_col")
332 order_col = filter_settings.get("order_col")
335 if filter_settings.get("order_dir") == "dsc":
333 if filter_settings.get("order_dir") == "dsc":
336 sort_on = "desc"
334 sort_on = "desc"
337 else:
335 else:
338 sort_on = "asc"
336 sort_on = "asc"
339 if order_col == "when":
337 if order_col == "when":
340 order_col = "last_timestamp"
338 order_col = "last_timestamp"
341 query = query.order_by(
339 query = query.order_by(
342 getattr(sa, sort_on)(getattr(ReportGroup, order_col))
340 getattr(sa, sort_on)(getattr(ReportGroup, order_col))
343 )
341 )
344 sa_items = query.all()
342 sa_items = query.all()
345 sorted_instance_list = []
343 sorted_instance_list = []
346 for i_id in ordered_ids:
344 for i_id in ordered_ids:
347 for report in sa_items:
345 for report in sa_items:
348 if str(report.id) == i_id and report not in sorted_instance_list:
346 if str(report.id) == i_id and report not in sorted_instance_list:
349 sorted_instance_list.append(report)
347 sorted_instance_list.append(report)
350 paginator.sa_items = sorted_instance_list
348 paginator.sa_items = sorted_instance_list
351 return paginator
349 return paginator
352
350
353 @classmethod
351 @classmethod
354 def by_app_ids(cls, app_ids=None, order_by=True, db_session=None):
352 def by_app_ids(cls, app_ids=None, order_by=True, db_session=None):
355 db_session = get_db_session(db_session)
353 db_session = get_db_session(db_session)
356 q = db_session.query(ReportGroup)
354 q = db_session.query(ReportGroup)
357 if app_ids:
355 if app_ids:
358 q = q.filter(ReportGroup.resource_id.in_(app_ids))
356 q = q.filter(ReportGroup.resource_id.in_(app_ids))
359 if order_by:
357 if order_by:
360 q = q.order_by(sa.desc(ReportGroup.id))
358 q = q.order_by(sa.desc(ReportGroup.id))
361 return q
359 return q
362
360
363 @classmethod
361 @classmethod
364 def by_id(cls, group_id, app_ids=None, db_session=None):
362 def by_id(cls, group_id, app_ids=None, db_session=None):
365 db_session = get_db_session(db_session)
363 db_session = get_db_session(db_session)
366 q = db_session.query(ReportGroup).filter(ReportGroup.id == int(group_id))
364 q = db_session.query(ReportGroup).filter(ReportGroup.id == int(group_id))
367 if app_ids:
365 if app_ids:
368 q = q.filter(ReportGroup.resource_id.in_(app_ids))
366 q = q.filter(ReportGroup.resource_id.in_(app_ids))
369 return q.first()
367 return q.first()
370
368
371 @classmethod
369 @classmethod
372 def by_ids(cls, group_ids=None, db_session=None):
370 def by_ids(cls, group_ids=None, db_session=None):
373 db_session = get_db_session(db_session)
371 db_session = get_db_session(db_session)
374 query = db_session.query(ReportGroup)
372 query = db_session.query(ReportGroup)
375 query = query.filter(ReportGroup.id.in_(group_ids))
373 query = query.filter(ReportGroup.id.in_(group_ids))
376 return query
374 return query
377
375
378 @classmethod
376 @classmethod
379 def by_hash_and_resource(
377 def by_hash_and_resource(
380 cls, resource_id, grouping_hash, since_when=None, db_session=None
378 cls, resource_id, grouping_hash, since_when=None, db_session=None
381 ):
379 ):
382 db_session = get_db_session(db_session)
380 db_session = get_db_session(db_session)
383 q = db_session.query(ReportGroup)
381 q = db_session.query(ReportGroup)
384 q = q.filter(ReportGroup.resource_id == resource_id)
382 q = q.filter(ReportGroup.resource_id == resource_id)
385 q = q.filter(ReportGroup.grouping_hash == grouping_hash)
383 q = q.filter(ReportGroup.grouping_hash == grouping_hash)
386 q = q.filter(ReportGroup.fixed == False)
384 q = q.filter(ReportGroup.fixed == False)
387 if since_when:
385 if since_when:
388 q = q.filter(ReportGroup.first_timestamp >= since_when)
386 q = q.filter(ReportGroup.first_timestamp >= since_when)
389 return q.first()
387 return q.first()
390
388
391 @classmethod
389 @classmethod
392 def users_commenting(cls, report_group, exclude_user_id=None, db_session=None):
390 def users_commenting(cls, report_group, exclude_user_id=None, db_session=None):
393 db_session = get_db_session(None, report_group)
391 db_session = get_db_session(None, report_group)
394 query = db_session.query(User).distinct()
392 query = db_session.query(User).distinct()
395 query = query.filter(User.id == ReportComment.owner_id)
393 query = query.filter(User.id == ReportComment.owner_id)
396 query = query.filter(ReportComment.group_id == report_group.id)
394 query = query.filter(ReportComment.group_id == report_group.id)
397 if exclude_user_id:
395 if exclude_user_id:
398 query = query.filter(ReportComment.owner_id != exclude_user_id)
396 query = query.filter(ReportComment.owner_id != exclude_user_id)
399 return query
397 return query
400
398
401 @classmethod
399 @classmethod
402 def affected_users_count(cls, report_group, db_session=None):
400 def affected_users_count(cls, report_group, db_session=None):
403 db_session = get_db_session(db_session)
401 db_session = get_db_session(db_session)
404 query = db_session.query(sa.func.count(Report.username))
402 query = db_session.query(sa.func.count(Report.username))
405 query = query.filter(Report.group_id == report_group.id)
403 query = query.filter(Report.group_id == report_group.id)
406 query = query.filter(Report.username != "")
404 query = query.filter(Report.username != "")
407 query = query.filter(Report.username != None)
405 query = query.filter(Report.username != None)
408 query = query.group_by(Report.username)
406 query = query.group_by(Report.username)
409 return query.count()
407 return query.count()
410
408
411 @classmethod
409 @classmethod
412 def top_affected_users(cls, report_group, db_session=None):
410 def top_affected_users(cls, report_group, db_session=None):
413 db_session = get_db_session(db_session)
411 db_session = get_db_session(db_session)
414 count_label = sa.func.count(Report.username).label("count")
412 count_label = sa.func.count(Report.username).label("count")
415 query = db_session.query(Report.username, count_label)
413 query = db_session.query(Report.username, count_label)
416 query = query.filter(Report.group_id == report_group.id)
414 query = query.filter(Report.group_id == report_group.id)
417 query = query.filter(Report.username != None)
415 query = query.filter(Report.username != None)
418 query = query.filter(Report.username != "")
416 query = query.filter(Report.username != "")
419 query = query.group_by(Report.username)
417 query = query.group_by(Report.username)
420 query = query.order_by(sa.desc(count_label))
418 query = query.order_by(sa.desc(count_label))
421 query = query.limit(50)
419 query = query.limit(50)
422 return query
420 return query
423
421
424 @classmethod
422 @classmethod
425 def get_report_stats(cls, request, filter_settings):
423 def get_report_stats(cls, request, filter_settings):
426 """
424 """
427 Gets report dashboard graphs
425 Gets report dashboard graphs
428 Returns information for BAR charts with occurences/interval information
426 Returns information for BAR charts with occurences/interval information
429 detailed means version that returns time intervals - non detailed
427 detailed means version that returns time intervals - non detailed
430 returns total sum
428 returns total sum
431 """
429 """
432 delta = filter_settings["end_date"] - filter_settings["start_date"]
430 delta = filter_settings["end_date"] - filter_settings["start_date"]
433 if delta < h.time_deltas.get("12h")["delta"]:
431 if delta < h.time_deltas.get("12h")["delta"]:
434 interval = "1m"
432 interval = "1m"
435 elif delta <= h.time_deltas.get("3d")["delta"]:
433 elif delta <= h.time_deltas.get("3d")["delta"]:
436 interval = "5m"
434 interval = "5m"
437 elif delta >= h.time_deltas.get("2w")["delta"]:
435 elif delta >= h.time_deltas.get("2w")["delta"]:
438 interval = "24h"
436 interval = "24h"
439 else:
437 else:
440 interval = "1h"
438 interval = "1h"
441
439
442 group_id = filter_settings.get("group_id")
440 group_id = filter_settings.get("group_id")
443
441
444 es_query = {
442 es_query = {
445 "aggs": {
443 "aggs": {
446 "parent_agg": {
444 "parent_agg": {
447 "aggs": {
445 "aggs": {
448 "types": {
446 "types": {
449 "aggs": {
447 "aggs": {
450 "sub_agg": {"terms": {"field": "tags.type.values"}}
448 "sub_agg": {"terms": {"field": "tags.type.values"}}
451 },
449 },
452 "filter": {
450 "filter": {
453 "and": [{"exists": {"field": "tags.type.values"}}]
451 "and": [{"exists": {"field": "tags.type.values"}}]
454 },
452 },
455 }
453 }
456 },
454 },
457 "date_histogram": {
455 "date_histogram": {
458 "extended_bounds": {
456 "extended_bounds": {
459 "max": filter_settings["end_date"],
457 "max": filter_settings["end_date"],
460 "min": filter_settings["start_date"],
458 "min": filter_settings["start_date"],
461 },
459 },
462 "field": "timestamp",
460 "field": "timestamp",
463 "interval": interval,
461 "interval": interval,
464 "min_doc_count": 0,
462 "min_doc_count": 0,
465 },
463 },
466 }
464 }
467 },
465 },
468 "query": {
466 "query": {
469 "bool": {
467 "bool": {
470 "filter": {
468 "filter": [
471 "and": [
469 {
472 {
470 "terms": {
473 "terms": {
471 "resource_id": [filter_settings["resource"][0]]
474 "resource_id": [filter_settings["resource"][0]]
472 }
475 }
473 },
476 },
474 {
477 {
475 "range": {
478 "range": {
476 "timestamp": {
479 "timestamp": {
477 "gte": filter_settings["start_date"],
480 "gte": filter_settings["start_date"],
478 "lte": filter_settings["end_date"],
481 "lte": filter_settings["end_date"],
482 }
483 }
479 }
484 },
480 }
485 ]
481 },
486 }
482 ]
487 }
483 }
488 },
484 },
489 }
485 }
490 if group_id:
486 if group_id:
491 parent_agg = es_query["aggs"]["parent_agg"]
487 parent_agg = es_query["aggs"]["parent_agg"]
492 filters = parent_agg["aggs"]["types"]["filter"]["and"]
488 filters = parent_agg["aggs"]["types"]["filter"]["and"]
493 filters.append({"terms": {"tags.group_id.values": [group_id]}})
489 filters.append({"terms": {"tags.group_id.values": [group_id]}})
494
490
495 index_names = es_index_name_limiter(
491 index_names = es_index_name_limiter(
496 start_date=filter_settings["start_date"],
492 start_date=filter_settings["start_date"],
497 end_date=filter_settings["end_date"],
493 end_date=filter_settings["end_date"],
498 ixtypes=["reports"],
494 ixtypes=["reports"],
499 )
495 )
500
496
501 if not index_names:
497 if not index_names:
502 return []
498 return []
503
499
504 result = Datastores.es.search(
500 result = Datastores.es.search(
505 body=es_query, index=index_names, doc_type="log", size=0
501 body=es_query, index=index_names, doc_type="log", size=0
506 )
502 )
507 series = []
503 series = []
508 for bucket in result["aggregations"]["parent_agg"]["buckets"]:
504 for bucket in result["aggregations"]["parent_agg"]["buckets"]:
509 point = {
505 point = {
510 "x": datetime.utcfromtimestamp(int(bucket["key"]) / 1000),
506 "x": datetime.utcfromtimestamp(int(bucket["key"]) / 1000),
511 "report": 0,
507 "report": 0,
512 "not_found": 0,
508 "not_found": 0,
513 "slow_report": 0,
509 "slow_report": 0,
514 }
510 }
515 for subbucket in bucket["types"]["sub_agg"]["buckets"]:
511 for subbucket in bucket["types"]["sub_agg"]["buckets"]:
516 if subbucket["key"] == "slow":
512 if subbucket["key"] == "slow":
517 point["slow_report"] = subbucket["doc_count"]
513 point["slow_report"] = subbucket["doc_count"]
518 elif subbucket["key"] == "error":
514 elif subbucket["key"] == "error":
519 point["report"] = subbucket["doc_count"]
515 point["report"] = subbucket["doc_count"]
520 elif subbucket["key"] == "not_found":
516 elif subbucket["key"] == "not_found":
521 point["not_found"] = subbucket["doc_count"]
517 point["not_found"] = subbucket["doc_count"]
522 series.append(point)
518 series.append(point)
523 return series
519 return series
@@ -1,63 +1,59 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
4 #
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
7 # You may obtain a copy of the License at
8 #
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
10 #
11 # Unless required by applicable law or agreed to in writing, software
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
15 # limitations under the License.
16
16
17 from appenlight.models import Datastores
17 from appenlight.models import Datastores
18 from appenlight.models.services.base import BaseService
18 from appenlight.models.services.base import BaseService
19 from appenlight.lib.enums import ReportType
19 from appenlight.lib.enums import ReportType
20 from appenlight.lib.utils import es_index_name_limiter
20 from appenlight.lib.utils import es_index_name_limiter
21
21
22
22
23 class ReportStatService(BaseService):
23 class ReportStatService(BaseService):
24 @classmethod
24 @classmethod
25 def count_by_type(cls, report_type, resource_id, since_when):
25 def count_by_type(cls, report_type, resource_id, since_when):
26 report_type = ReportType.key_from_value(report_type)
26 report_type = ReportType.key_from_value(report_type)
27
27
28 index_names = es_index_name_limiter(start_date=since_when, ixtypes=["reports"])
28 index_names = es_index_name_limiter(start_date=since_when, ixtypes=["reports"])
29
29
30 es_query = {
30 es_query = {
31 "aggs": {
31 "aggs": {
32 "reports": {
32 "reports": {
33 "aggs": {
33 "aggs": {
34 "sub_agg": {"value_count": {"field": "tags.group_id.values"}}
34 "sub_agg": {"value_count": {"field": "tags.group_id.values"}}
35 },
35 },
36 "filter": {
36 "filter": [
37 "and": [
37 {"terms": {"resource_id": [resource_id]}},
38 {"terms": {"resource_id": [resource_id]}},
38 {"exists": {"field": "tags.group_id.values"}},
39 {"exists": {"field": "tags.group_id.values"}},
39 ],
40 ]
41 },
42 }
40 }
43 },
41 },
44 "query": {
42 "query": {
45 "bool": {
43 "bool": {
46 "filter": {
44 "filter": [
47 "and": [
45 {"terms": {"resource_id": [resource_id]}},
48 {"terms": {"resource_id": [resource_id]}},
46 {"terms": {"tags.type.values": [report_type]}},
49 {"terms": {"tags.type.values": [report_type]}},
47 {"range": {"timestamp": {"gte": since_when}}},
50 {"range": {"timestamp": {"gte": since_when}}},
48 ]
51 ]
52 }
53 }
49 }
54 },
50 },
55 }
51 }
56
52
57 if index_names:
53 if index_names:
58 result = Datastores.es.search(
54 result = Datastores.es.search(
59 body=es_query, index=index_names, doc_type="log", size=0
55 body=es_query, index=index_names, doc_type="log", size=0
60 )
56 )
61 return result["aggregations"]["reports"]["sub_agg"]["value"]
57 return result["aggregations"]["reports"]["sub_agg"]["value"]
62 else:
58 else:
63 return 0
59 return 0
@@ -1,617 +1,607 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
4 #
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
7 # You may obtain a copy of the License at
8 #
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
10 #
11 # Unless required by applicable law or agreed to in writing, software
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
15 # limitations under the License.
16
16
17 from datetime import datetime
17 from datetime import datetime
18
18
19 import appenlight.lib.helpers as h
19 import appenlight.lib.helpers as h
20 from appenlight.models import get_db_session, Datastores
20 from appenlight.models import get_db_session, Datastores
21 from appenlight.models.services.base import BaseService
21 from appenlight.models.services.base import BaseService
22 from appenlight.lib.enums import ReportType
22 from appenlight.lib.enums import ReportType
23 from appenlight.lib.utils import es_index_name_limiter
23 from appenlight.lib.utils import es_index_name_limiter
24
24
25 try:
25 try:
26 from ae_uptime_ce.models.services.uptime_metric import UptimeMetricService
26 from ae_uptime_ce.models.services.uptime_metric import UptimeMetricService
27 except ImportError:
27 except ImportError:
28 UptimeMetricService = None
28 UptimeMetricService = None
29
29
30
30
31 def check_key(key, stats, uptime, total_seconds):
31 def check_key(key, stats, uptime, total_seconds):
32 if key not in stats:
32 if key not in stats:
33 stats[key] = {
33 stats[key] = {
34 "name": key,
34 "name": key,
35 "requests": 0,
35 "requests": 0,
36 "errors": 0,
36 "errors": 0,
37 "tolerated_requests": 0,
37 "tolerated_requests": 0,
38 "frustrating_requests": 0,
38 "frustrating_requests": 0,
39 "satisfying_requests": 0,
39 "satisfying_requests": 0,
40 "total_minutes": total_seconds / 60.0,
40 "total_minutes": total_seconds / 60.0,
41 "uptime": uptime,
41 "uptime": uptime,
42 "apdex": 0,
42 "apdex": 0,
43 "rpm": 0,
43 "rpm": 0,
44 "response_time": 0,
44 "response_time": 0,
45 "avg_response_time": 0,
45 "avg_response_time": 0,
46 }
46 }
47
47
48
48
49 class RequestMetricService(BaseService):
49 class RequestMetricService(BaseService):
50 @classmethod
50 @classmethod
51 def get_metrics_stats(cls, request, filter_settings, db_session=None):
51 def get_metrics_stats(cls, request, filter_settings, db_session=None):
52 delta = filter_settings["end_date"] - filter_settings["start_date"]
52 delta = filter_settings["end_date"] - filter_settings["start_date"]
53 if delta < h.time_deltas.get("12h")["delta"]:
53 if delta < h.time_deltas.get("12h")["delta"]:
54 interval = "1m"
54 interval = "1m"
55 elif delta <= h.time_deltas.get("3d")["delta"]:
55 elif delta <= h.time_deltas.get("3d")["delta"]:
56 interval = "5m"
56 interval = "5m"
57 elif delta >= h.time_deltas.get("2w")["delta"]:
57 elif delta >= h.time_deltas.get("2w")["delta"]:
58 interval = "24h"
58 interval = "24h"
59 else:
59 else:
60 interval = "1h"
60 interval = "1h"
61
61
62 filter_settings["namespace"] = ["appenlight.request_metric"]
62 filter_settings["namespace"] = ["appenlight.request_metric"]
63
63
64 es_query = {
64 es_query = {
65 "aggs": {
65 "aggs": {
66 "parent_agg": {
66 "parent_agg": {
67 "aggs": {
67 "aggs": {
68 "custom": {
68 "custom": {
69 "aggs": {
69 "aggs": {
70 "sub_agg": {
70 "sub_agg": {
71 "sum": {"field": "tags.custom.numeric_values"}
71 "sum": {"field": "tags.custom.numeric_values"}
72 }
72 }
73 },
73 },
74 "filter": {
74 "filter": {
75 "exists": {"field": "tags.custom.numeric_values"}
75 "exists": {"field": "tags.custom.numeric_values"}
76 },
76 },
77 },
77 },
78 "main": {
78 "main": {
79 "aggs": {
79 "aggs": {
80 "sub_agg": {
80 "sub_agg": {
81 "sum": {"field": "tags.main.numeric_values"}
81 "sum": {"field": "tags.main.numeric_values"}
82 }
82 }
83 },
83 },
84 "filter": {"exists": {"field": "tags.main.numeric_values"}},
84 "filter": {"exists": {"field": "tags.main.numeric_values"}},
85 },
85 },
86 "nosql": {
86 "nosql": {
87 "aggs": {
87 "aggs": {
88 "sub_agg": {
88 "sub_agg": {
89 "sum": {"field": "tags.nosql.numeric_values"}
89 "sum": {"field": "tags.nosql.numeric_values"}
90 }
90 }
91 },
91 },
92 "filter": {
92 "filter": {
93 "exists": {"field": "tags.nosql.numeric_values"}
93 "exists": {"field": "tags.nosql.numeric_values"}
94 },
94 },
95 },
95 },
96 "remote": {
96 "remote": {
97 "aggs": {
97 "aggs": {
98 "sub_agg": {
98 "sub_agg": {
99 "sum": {"field": "tags.remote.numeric_values"}
99 "sum": {"field": "tags.remote.numeric_values"}
100 }
100 }
101 },
101 },
102 "filter": {
102 "filter": {
103 "exists": {"field": "tags.remote.numeric_values"}
103 "exists": {"field": "tags.remote.numeric_values"}
104 },
104 },
105 },
105 },
106 "requests": {
106 "requests": {
107 "aggs": {
107 "aggs": {
108 "sub_agg": {
108 "sub_agg": {
109 "sum": {"field": "tags.requests.numeric_values"}
109 "sum": {"field": "tags.requests.numeric_values"}
110 }
110 }
111 },
111 },
112 "filter": {
112 "filter": {
113 "exists": {"field": "tags.requests.numeric_values"}
113 "exists": {"field": "tags.requests.numeric_values"}
114 },
114 },
115 },
115 },
116 "sql": {
116 "sql": {
117 "aggs": {
117 "aggs": {
118 "sub_agg": {"sum": {"field": "tags.sql.numeric_values"}}
118 "sub_agg": {"sum": {"field": "tags.sql.numeric_values"}}
119 },
119 },
120 "filter": {"exists": {"field": "tags.sql.numeric_values"}},
120 "filter": {"exists": {"field": "tags.sql.numeric_values"}},
121 },
121 },
122 "tmpl": {
122 "tmpl": {
123 "aggs": {
123 "aggs": {
124 "sub_agg": {
124 "sub_agg": {
125 "sum": {"field": "tags.tmpl.numeric_values"}
125 "sum": {"field": "tags.tmpl.numeric_values"}
126 }
126 }
127 },
127 },
128 "filter": {"exists": {"field": "tags.tmpl.numeric_values"}},
128 "filter": {"exists": {"field": "tags.tmpl.numeric_values"}},
129 },
129 },
130 },
130 },
131 "date_histogram": {
131 "date_histogram": {
132 "extended_bounds": {
132 "extended_bounds": {
133 "max": filter_settings["end_date"],
133 "max": filter_settings["end_date"],
134 "min": filter_settings["start_date"],
134 "min": filter_settings["start_date"],
135 },
135 },
136 "field": "timestamp",
136 "field": "timestamp",
137 "interval": interval,
137 "interval": interval,
138 "min_doc_count": 0,
138 "min_doc_count": 0,
139 },
139 },
140 }
140 }
141 },
141 },
142 "query": {
142 "query": {
143 "bool": {
143 "bool": {
144 "filter": {
144 "filter": [
145 "and": [
145 {
146 {
146 "terms": {
147 "terms": {
147 "resource_id": [filter_settings["resource"][0]]
148 "resource_id": [filter_settings["resource"][0]]
148 }
149 }
149 },
150 },
150 {
151 {
151 "range": {
152 "range": {
152 "timestamp": {
153 "timestamp": {
153 "gte": filter_settings["start_date"],
154 "gte": filter_settings["start_date"],
154 "lte": filter_settings["end_date"],
155 "lte": filter_settings["end_date"],
156 }
157 }
155 }
158 },
156 }
159 {"terms": {"namespace": ["appenlight.request_metric"]}},
157 },
160 ]
158 {"terms": {"namespace": ["appenlight.request_metric"]}},
161 }
159 ]
162 }
160 }
163 },
161 },
164 }
162 }
165
163
166 index_names = es_index_name_limiter(
164 index_names = es_index_name_limiter(
167 start_date=filter_settings["start_date"],
165 start_date=filter_settings["start_date"],
168 end_date=filter_settings["end_date"],
166 end_date=filter_settings["end_date"],
169 ixtypes=["metrics"],
167 ixtypes=["metrics"],
170 )
168 )
171 if not index_names:
169 if not index_names:
172 return []
170 return []
173
171
174 result = Datastores.es.search(
172 result = Datastores.es.search(
175 body=es_query, index=index_names, doc_type="log", size=0
173 body=es_query, index=index_names, doc_type="log", size=0
176 )
174 )
177
175
178 plot_data = []
176 plot_data = []
179 for item in result["aggregations"]["parent_agg"]["buckets"]:
177 for item in result["aggregations"]["parent_agg"]["buckets"]:
180 x_time = datetime.utcfromtimestamp(int(item["key"]) / 1000)
178 x_time = datetime.utcfromtimestamp(int(item["key"]) / 1000)
181 point = {"x": x_time}
179 point = {"x": x_time}
182 for key in ["custom", "main", "nosql", "remote", "requests", "sql", "tmpl"]:
180 for key in ["custom", "main", "nosql", "remote", "requests", "sql", "tmpl"]:
183 value = item[key]["sub_agg"]["value"]
181 value = item[key]["sub_agg"]["value"]
184 point[key] = round(value, 3) if value else 0
182 point[key] = round(value, 3) if value else 0
185 plot_data.append(point)
183 plot_data.append(point)
186
184
187 return plot_data
185 return plot_data
188
186
189 @classmethod
187 @classmethod
190 def get_requests_breakdown(cls, request, filter_settings, db_session=None):
188 def get_requests_breakdown(cls, request, filter_settings, db_session=None):
191 db_session = get_db_session(db_session)
189 db_session = get_db_session(db_session)
192
190
193 # fetch total time of all requests in this time range
191 # fetch total time of all requests in this time range
194 index_names = es_index_name_limiter(
192 index_names = es_index_name_limiter(
195 start_date=filter_settings["start_date"],
193 start_date=filter_settings["start_date"],
196 end_date=filter_settings["end_date"],
194 end_date=filter_settings["end_date"],
197 ixtypes=["metrics"],
195 ixtypes=["metrics"],
198 )
196 )
199
197
200 if index_names and filter_settings["resource"]:
198 if index_names and filter_settings["resource"]:
201 es_query = {
199 es_query = {
202 "aggs": {
200 "aggs": {
203 "main": {
201 "main": {
204 "aggs": {
202 "aggs": {
205 "sub_agg": {"sum": {"field": "tags.main.numeric_values"}}
203 "sub_agg": {"sum": {"field": "tags.main.numeric_values"}}
206 },
204 },
207 "filter": {"exists": {"field": "tags.main.numeric_values"}},
205 "filter": {"exists": {"field": "tags.main.numeric_values"}},
208 }
206 }
209 },
207 },
210 "query": {
208 "query": {
211 "bool": {
209 "bool": {
212 "filter": {
210 "filter": [
213 "and": [
211 {
214 {
212 "terms": {
215 "terms": {
213 "resource_id": [filter_settings["resource"][0]]
216 "resource_id": [filter_settings["resource"][0]]
214 }
217 }
215 },
218 },
216 {
219 {
217 "range": {
220 "range": {
218 "timestamp": {
221 "timestamp": {
219 "gte": filter_settings["start_date"],
222 "gte": filter_settings["start_date"],
220 "lte": filter_settings["end_date"],
223 "lte": filter_settings["end_date"],
224 }
225 }
221 }
226 },
222 }
227 {"terms": {"namespace": ["appenlight.request_metric"]}},
223 },
228 ]
224 {"terms": {"namespace": ["appenlight.request_metric"]}},
229 }
225 ]
230 }
226 }
231 },
227 },
232 }
228 }
233 result = Datastores.es.search(
229 result = Datastores.es.search(
234 body=es_query, index=index_names, doc_type="log", size=0
230 body=es_query, index=index_names, doc_type="log", size=0
235 )
231 )
236 total_time_spent = result["aggregations"]["main"]["sub_agg"]["value"]
232 total_time_spent = result["aggregations"]["main"]["sub_agg"]["value"]
237 else:
233 else:
238 total_time_spent = 0
234 total_time_spent = 0
239 script_text = "doc['tags.main.numeric_values'].value / {}".format(
235 script_text = "doc['tags.main.numeric_values'].value / {}".format(
240 total_time_spent
236 total_time_spent
241 )
237 )
242
238
243 if index_names and filter_settings["resource"]:
239 if index_names and filter_settings["resource"]:
244 es_query = {
240 es_query = {
245 "aggs": {
241 "aggs": {
246 "parent_agg": {
242 "parent_agg": {
247 "aggs": {
243 "aggs": {
248 "main": {
244 "main": {
249 "aggs": {
245 "aggs": {
250 "sub_agg": {
246 "sub_agg": {
251 "sum": {"field": "tags.main.numeric_values"}
247 "sum": {"field": "tags.main.numeric_values"}
252 }
248 }
253 },
249 },
254 "filter": {
250 "filter": {
255 "exists": {"field": "tags.main.numeric_values"}
251 "exists": {"field": "tags.main.numeric_values"}
256 },
252 },
257 },
253 },
258 "percentage": {
254 "percentage": {
259 "aggs": {
255 "aggs": {
260 "sub_agg": {
256 "sub_agg": {
261 "sum": {
257 "sum": {
262 "lang": "expression",
258 "lang": "expression",
263 "script": script_text,
259 "script": script_text,
264 }
260 }
265 }
261 }
266 },
262 },
267 "filter": {
263 "filter": {
268 "exists": {"field": "tags.main.numeric_values"}
264 "exists": {"field": "tags.main.numeric_values"}
269 },
265 },
270 },
266 },
271 "requests": {
267 "requests": {
272 "aggs": {
268 "aggs": {
273 "sub_agg": {
269 "sub_agg": {
274 "sum": {"field": "tags.requests.numeric_values"}
270 "sum": {"field": "tags.requests.numeric_values"}
275 }
271 }
276 },
272 },
277 "filter": {
273 "filter": {
278 "exists": {"field": "tags.requests.numeric_values"}
274 "exists": {"field": "tags.requests.numeric_values"}
279 },
275 },
280 },
276 },
281 },
277 },
282 "terms": {
278 "terms": {
283 "field": "tags.view_name.values",
279 "field": "tags.view_name.values",
284 "order": {"percentage>sub_agg": "desc"},
280 "order": {"percentage>sub_agg": "desc"},
285 "size": 15,
281 "size": 15,
286 },
282 },
287 }
283 }
288 },
284 },
289 "query": {
285 "query": {
290 "bool": {
286 "bool": {
291 "filter": {
287 "filter": [
292 "and": [
288 {
293 {
289 "terms": {
294 "terms": {
290 "resource_id": [filter_settings["resource"][0]]
295 "resource_id": [filter_settings["resource"][0]]
291 }
296 }
292 },
297 },
293 {
298 {
294 "range": {
299 "range": {
295 "timestamp": {
300 "timestamp": {
296 "gte": filter_settings["start_date"],
301 "gte": filter_settings["start_date"],
297 "lte": filter_settings["end_date"],
302 "lte": filter_settings["end_date"],
303 }
304 }
298 }
305 },
299 }
306 ]
300 },
307 }
301 ]
308 }
302 }
309 },
303 },
310 }
304 }
311 result = Datastores.es.search(
305 result = Datastores.es.search(
312 body=es_query, index=index_names, doc_type="log", size=0
306 body=es_query, index=index_names, doc_type="log", size=0
313 )
307 )
314 series = result["aggregations"]["parent_agg"]["buckets"]
308 series = result["aggregations"]["parent_agg"]["buckets"]
315 else:
309 else:
316 series = []
310 series = []
317
311
318 and_part = [
312 and_part = [
319 {"term": {"resource_id": filter_settings["resource"][0]}},
313 {"term": {"resource_id": filter_settings["resource"][0]}},
320 {"terms": {"tags.view_name.values": [row["key"] for row in series]}},
314 {"terms": {"tags.view_name.values": [row["key"] for row in series]}},
321 {"term": {"report_type": str(ReportType.slow)}},
315 {"term": {"report_type": str(ReportType.slow)}},
322 ]
316 ]
323 query = {
317 query = {
324 "aggs": {
318 "aggs": {
325 "top_reports": {
319 "top_reports": {
326 "terms": {"field": "tags.view_name.values", "size": len(series)},
320 "terms": {"field": "tags.view_name.values", "size": len(series)},
327 "aggs": {
321 "aggs": {
328 "top_calls_hits": {
322 "top_calls_hits": {
329 "top_hits": {"sort": {"start_time": "desc"}, "size": 5}
323 "top_hits": {"sort": {"start_time": "desc"}, "size": 5}
330 }
324 }
331 },
325 },
332 }
326 }
333 },
327 },
334 "query": {"bool": {"filter": {"and": and_part}}},
328 "query": {"bool": {"filter": and_part}},
335 }
329 }
336 details = {}
330 details = {}
337 index_names = es_index_name_limiter(ixtypes=["reports"])
331 index_names = es_index_name_limiter(ixtypes=["reports"])
338 if index_names and series:
332 if index_names and series:
339 result = Datastores.es.search(
333 result = Datastores.es.search(
340 body=query, doc_type="report", size=0, index=index_names
334 body=query, doc_type="report", size=0, index=index_names
341 )
335 )
342 for bucket in result["aggregations"]["top_reports"]["buckets"]:
336 for bucket in result["aggregations"]["top_reports"]["buckets"]:
343 details[bucket["key"]] = []
337 details[bucket["key"]] = []
344
338
345 for hit in bucket["top_calls_hits"]["hits"]["hits"]:
339 for hit in bucket["top_calls_hits"]["hits"]["hits"]:
346 details[bucket["key"]].append(
340 details[bucket["key"]].append(
347 {
341 {
348 "report_id": hit["_source"]["pg_id"],
342 "report_id": hit["_source"]["pg_id"],
349 "group_id": hit["_source"]["group_id"],
343 "group_id": hit["_source"]["group_id"],
350 }
344 }
351 )
345 )
352
346
353 results = []
347 results = []
354 for row in series:
348 for row in series:
355 result = {
349 result = {
356 "key": row["key"],
350 "key": row["key"],
357 "main": row["main"]["sub_agg"]["value"],
351 "main": row["main"]["sub_agg"]["value"],
358 "requests": row["requests"]["sub_agg"]["value"],
352 "requests": row["requests"]["sub_agg"]["value"],
359 }
353 }
360 # es can return 'infinity'
354 # es can return 'infinity'
361 try:
355 try:
362 result["percentage"] = float(row["percentage"]["sub_agg"]["value"])
356 result["percentage"] = float(row["percentage"]["sub_agg"]["value"])
363 except ValueError:
357 except ValueError:
364 result["percentage"] = 0
358 result["percentage"] = 0
365
359
366 result["latest_details"] = details.get(row["key"]) or []
360 result["latest_details"] = details.get(row["key"]) or []
367 results.append(result)
361 results.append(result)
368
362
369 return results
363 return results
370
364
371 @classmethod
365 @classmethod
372 def get_apdex_stats(cls, request, filter_settings, threshold=1, db_session=None):
366 def get_apdex_stats(cls, request, filter_settings, threshold=1, db_session=None):
373 """
367 """
374 Returns information and calculates APDEX score per server for dashboard
368 Returns information and calculates APDEX score per server for dashboard
375 server information (upper right stats boxes)
369 server information (upper right stats boxes)
376 """
370 """
377 # Apdex t = (Satisfied Count + Tolerated Count / 2) / Total Samples
371 # Apdex t = (Satisfied Count + Tolerated Count / 2) / Total Samples
378 db_session = get_db_session(db_session)
372 db_session = get_db_session(db_session)
379 index_names = es_index_name_limiter(
373 index_names = es_index_name_limiter(
380 start_date=filter_settings["start_date"],
374 start_date=filter_settings["start_date"],
381 end_date=filter_settings["end_date"],
375 end_date=filter_settings["end_date"],
382 ixtypes=["metrics"],
376 ixtypes=["metrics"],
383 )
377 )
384
378
385 requests_series = []
379 requests_series = []
386
380
387 if index_names and filter_settings["resource"]:
381 if index_names and filter_settings["resource"]:
388 es_query = {
382 es_query = {
389 "aggs": {
383 "aggs": {
390 "parent_agg": {
384 "parent_agg": {
391 "aggs": {
385 "aggs": {
392 "frustrating": {
386 "frustrating": {
393 "aggs": {
387 "aggs": {
394 "sub_agg": {
388 "sub_agg": {
395 "sum": {"field": "tags.requests.numeric_values"}
389 "sum": {"field": "tags.requests.numeric_values"}
396 }
390 }
397 },
391 },
398 "filter": {
392 "filter": {
399 "and": [
393 "and": [
400 {
394 {
401 "range": {
395 "range": {
402 "tags.main.numeric_values": {"gte": "4"}
396 "tags.main.numeric_values": {"gte": "4"}
403 }
397 }
404 },
398 },
405 {
399 {
406 "exists": {
400 "exists": {
407 "field": "tags.requests.numeric_values"
401 "field": "tags.requests.numeric_values"
408 }
402 }
409 },
403 },
410 ]
404 ]
411 },
405 },
412 },
406 },
413 "main": {
407 "main": {
414 "aggs": {
408 "aggs": {
415 "sub_agg": {
409 "sub_agg": {
416 "sum": {"field": "tags.main.numeric_values"}
410 "sum": {"field": "tags.main.numeric_values"}
417 }
411 }
418 },
412 },
419 "filter": {
413 "filter": {
420 "exists": {"field": "tags.main.numeric_values"}
414 "exists": {"field": "tags.main.numeric_values"}
421 },
415 },
422 },
416 },
423 "requests": {
417 "requests": {
424 "aggs": {
418 "aggs": {
425 "sub_agg": {
419 "sub_agg": {
426 "sum": {"field": "tags.requests.numeric_values"}
420 "sum": {"field": "tags.requests.numeric_values"}
427 }
421 }
428 },
422 },
429 "filter": {
423 "filter": {
430 "exists": {"field": "tags.requests.numeric_values"}
424 "exists": {"field": "tags.requests.numeric_values"}
431 },
425 },
432 },
426 },
433 "tolerated": {
427 "tolerated": {
434 "aggs": {
428 "aggs": {
435 "sub_agg": {
429 "sub_agg": {
436 "sum": {"field": "tags.requests.numeric_values"}
430 "sum": {"field": "tags.requests.numeric_values"}
437 }
431 }
438 },
432 },
439 "filter": {
433 "filter": {
440 "and": [
434 "and": [
441 {
435 {
442 "range": {
436 "range": {
443 "tags.main.numeric_values": {"gte": "1"}
437 "tags.main.numeric_values": {"gte": "1"}
444 }
438 }
445 },
439 },
446 {
440 {
447 "range": {
441 "range": {
448 "tags.main.numeric_values": {"lt": "4"}
442 "tags.main.numeric_values": {"lt": "4"}
449 }
443 }
450 },
444 },
451 {
445 {
452 "exists": {
446 "exists": {
453 "field": "tags.requests.numeric_values"
447 "field": "tags.requests.numeric_values"
454 }
448 }
455 },
449 },
456 ]
450 ]
457 },
451 },
458 },
452 },
459 },
453 },
460 "terms": {"field": "tags.server_name.values", "size": 999999},
454 "terms": {"field": "tags.server_name.values", "size": 999999},
461 }
455 }
462 },
456 },
463 "query": {
457 "query": {
464 "bool": {
458 "bool": {
465 "filter": {
459 "filter": [
466 "and": [
460 {
467 {
461 "terms": {
468 "terms": {
462 "resource_id": [filter_settings["resource"][0]]
469 "resource_id": [filter_settings["resource"][0]]
463 }
470 }
464 },
471 },
465 {
472 {
466 "range": {
473 "range": {
467 "timestamp": {
474 "timestamp": {
468 "gte": filter_settings["start_date"],
475 "gte": filter_settings["start_date"],
469 "lte": filter_settings["end_date"],
476 "lte": filter_settings["end_date"],
477 }
478 }
470 }
479 },
471 }
480 {"terms": {"namespace": ["appenlight.request_metric"]}},
472 },
481 ]
473 {"terms": {"namespace": ["appenlight.request_metric"]}},
482 }
474 ]
483 }
475 }
484 },
476 },
485 }
477 }
486
478
487 result = Datastores.es.search(
479 result = Datastores.es.search(
488 body=es_query, index=index_names, doc_type="log", size=0
480 body=es_query, index=index_names, doc_type="log", size=0
489 )
481 )
490 for bucket in result["aggregations"]["parent_agg"]["buckets"]:
482 for bucket in result["aggregations"]["parent_agg"]["buckets"]:
491 requests_series.append(
483 requests_series.append(
492 {
484 {
493 "frustrating": bucket["frustrating"]["sub_agg"]["value"],
485 "frustrating": bucket["frustrating"]["sub_agg"]["value"],
494 "main": bucket["main"]["sub_agg"]["value"],
486 "main": bucket["main"]["sub_agg"]["value"],
495 "requests": bucket["requests"]["sub_agg"]["value"],
487 "requests": bucket["requests"]["sub_agg"]["value"],
496 "tolerated": bucket["tolerated"]["sub_agg"]["value"],
488 "tolerated": bucket["tolerated"]["sub_agg"]["value"],
497 "key": bucket["key"],
489 "key": bucket["key"],
498 }
490 }
499 )
491 )
500
492
501 since_when = filter_settings["start_date"]
493 since_when = filter_settings["start_date"]
502 until = filter_settings["end_date"]
494 until = filter_settings["end_date"]
503
495
504 # total errors
496 # total errors
505
497
506 index_names = es_index_name_limiter(
498 index_names = es_index_name_limiter(
507 start_date=filter_settings["start_date"],
499 start_date=filter_settings["start_date"],
508 end_date=filter_settings["end_date"],
500 end_date=filter_settings["end_date"],
509 ixtypes=["reports"],
501 ixtypes=["reports"],
510 )
502 )
511
503
512 report_series = []
504 report_series = []
513 if index_names and filter_settings["resource"]:
505 if index_names and filter_settings["resource"]:
514 report_type = ReportType.key_from_value(ReportType.error)
506 report_type = ReportType.key_from_value(ReportType.error)
515 es_query = {
507 es_query = {
516 "aggs": {
508 "aggs": {
517 "parent_agg": {
509 "parent_agg": {
518 "aggs": {
510 "aggs": {
519 "errors": {
511 "errors": {
520 "aggs": {
512 "aggs": {
521 "sub_agg": {
513 "sub_agg": {
522 "sum": {
514 "sum": {
523 "field": "tags.occurences.numeric_values"
515 "field": "tags.occurences.numeric_values"
524 }
516 }
525 }
517 }
526 },
518 },
527 "filter": {
519 "filter": {
528 "and": [
520 "and": [
529 {"terms": {"tags.type.values": [report_type]}},
521 {"terms": {"tags.type.values": [report_type]}},
530 {
522 {
531 "exists": {
523 "exists": {
532 "field": "tags.occurences.numeric_values"
524 "field": "tags.occurences.numeric_values"
533 }
525 }
534 },
526 },
535 ]
527 ]
536 },
528 },
537 }
529 }
538 },
530 },
539 "terms": {"field": "tags.server_name.values", "size": 999999},
531 "terms": {"field": "tags.server_name.values", "size": 999999},
540 }
532 }
541 },
533 },
542 "query": {
534 "query": {
543 "bool": {
535 "bool": {
544 "filter": {
536 "filter": [
545 "and": [
537 {
546 {
538 "terms": {
547 "terms": {
539 "resource_id": [filter_settings["resource"][0]]
548 "resource_id": [filter_settings["resource"][0]]
540 }
549 }
541 },
550 },
542 {
551 {
543 "range": {
552 "range": {
544 "timestamp": {
553 "timestamp": {
545 "gte": filter_settings["start_date"],
554 "gte": filter_settings["start_date"],
546 "lte": filter_settings["end_date"],
555 "lte": filter_settings["end_date"],
556 }
557 }
547 }
558 },
548 }
559 {"terms": {"namespace": ["appenlight.error"]}},
549 },
560 ]
550 {"terms": {"namespace": ["appenlight.error"]}},
561 }
551 ]
562 }
552 }
563 },
553 },
564 }
554 }
565 result = Datastores.es.search(
555 result = Datastores.es.search(
566 body=es_query, index=index_names, doc_type="log", size=0
556 body=es_query, index=index_names, doc_type="log", size=0
567 )
557 )
568 for bucket in result["aggregations"]["parent_agg"]["buckets"]:
558 for bucket in result["aggregations"]["parent_agg"]["buckets"]:
569 report_series.append(
559 report_series.append(
570 {
560 {
571 "key": bucket["key"],
561 "key": bucket["key"],
572 "errors": bucket["errors"]["sub_agg"]["value"],
562 "errors": bucket["errors"]["sub_agg"]["value"],
573 }
563 }
574 )
564 )
575
565
576 stats = {}
566 stats = {}
577 if UptimeMetricService is not None:
567 if UptimeMetricService is not None:
578 uptime = UptimeMetricService.get_uptime_by_app(
568 uptime = UptimeMetricService.get_uptime_by_app(
579 filter_settings["resource"][0], since_when=since_when, until=until
569 filter_settings["resource"][0], since_when=since_when, until=until
580 )
570 )
581 else:
571 else:
582 uptime = 0
572 uptime = 0
583
573
584 total_seconds = (until - since_when).total_seconds()
574 total_seconds = (until - since_when).total_seconds()
585
575
586 for stat in requests_series:
576 for stat in requests_series:
587 check_key(stat["key"], stats, uptime, total_seconds)
577 check_key(stat["key"], stats, uptime, total_seconds)
588 stats[stat["key"]]["requests"] = int(stat["requests"])
578 stats[stat["key"]]["requests"] = int(stat["requests"])
589 stats[stat["key"]]["response_time"] = stat["main"]
579 stats[stat["key"]]["response_time"] = stat["main"]
590 stats[stat["key"]]["tolerated_requests"] = stat["tolerated"]
580 stats[stat["key"]]["tolerated_requests"] = stat["tolerated"]
591 stats[stat["key"]]["frustrating_requests"] = stat["frustrating"]
581 stats[stat["key"]]["frustrating_requests"] = stat["frustrating"]
592 for server in report_series:
582 for server in report_series:
593 check_key(server["key"], stats, uptime, total_seconds)
583 check_key(server["key"], stats, uptime, total_seconds)
594 stats[server["key"]]["errors"] = server["errors"]
584 stats[server["key"]]["errors"] = server["errors"]
595
585
596 server_stats = list(stats.values())
586 server_stats = list(stats.values())
597 for stat in server_stats:
587 for stat in server_stats:
598 stat["satisfying_requests"] = (
588 stat["satisfying_requests"] = (
599 stat["requests"]
589 stat["requests"]
600 - stat["errors"]
590 - stat["errors"]
601 - stat["frustrating_requests"]
591 - stat["frustrating_requests"]
602 - stat["tolerated_requests"]
592 - stat["tolerated_requests"]
603 )
593 )
604 if stat["satisfying_requests"] < 0:
594 if stat["satisfying_requests"] < 0:
605 stat["satisfying_requests"] = 0
595 stat["satisfying_requests"] = 0
606
596
607 if stat["requests"]:
597 if stat["requests"]:
608 stat["avg_response_time"] = round(
598 stat["avg_response_time"] = round(
609 stat["response_time"] / stat["requests"], 3
599 stat["response_time"] / stat["requests"], 3
610 )
600 )
611 qual_requests = (
601 qual_requests = (
612 stat["satisfying_requests"] + stat["tolerated_requests"] / 2.0
602 stat["satisfying_requests"] + stat["tolerated_requests"] / 2.0
613 )
603 )
614 stat["apdex"] = round((qual_requests / stat["requests"]) * 100, 2)
604 stat["apdex"] = round((qual_requests / stat["requests"]) * 100, 2)
615 stat["rpm"] = round(stat["requests"] / stat["total_minutes"], 2)
605 stat["rpm"] = round(stat["requests"] / stat["total_minutes"], 2)
616
606
617 return sorted(server_stats, key=lambda x: x["name"])
607 return sorted(server_stats, key=lambda x: x["name"])
@@ -1,186 +1,182 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
4 #
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
7 # You may obtain a copy of the License at
8 #
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
10 #
11 # Unless required by applicable law or agreed to in writing, software
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
15 # limitations under the License.
16
16
17 from appenlight.models import get_db_session, Datastores
17 from appenlight.models import get_db_session, Datastores
18 from appenlight.models.report import Report
18 from appenlight.models.report import Report
19 from appenlight.models.services.base import BaseService
19 from appenlight.models.services.base import BaseService
20 from appenlight.lib.utils import es_index_name_limiter
20 from appenlight.lib.utils import es_index_name_limiter
21
21
22
22
23 class SlowCallService(BaseService):
23 class SlowCallService(BaseService):
24 @classmethod
24 @classmethod
25 def get_time_consuming_calls(cls, request, filter_settings, db_session=None):
25 def get_time_consuming_calls(cls, request, filter_settings, db_session=None):
26 db_session = get_db_session(db_session)
26 db_session = get_db_session(db_session)
27 # get slow calls from older partitions too
27 # get slow calls from older partitions too
28 index_names = es_index_name_limiter(
28 index_names = es_index_name_limiter(
29 start_date=filter_settings["start_date"],
29 start_date=filter_settings["start_date"],
30 end_date=filter_settings["end_date"],
30 end_date=filter_settings["end_date"],
31 ixtypes=["slow_calls"],
31 ixtypes=["slow_calls"],
32 )
32 )
33 if index_names and filter_settings["resource"]:
33 if index_names and filter_settings["resource"]:
34 # get longest time taking hashes
34 # get longest time taking hashes
35 es_query = {
35 es_query = {
36 "aggs": {
36 "aggs": {
37 "parent_agg": {
37 "parent_agg": {
38 "aggs": {
38 "aggs": {
39 "duration": {
39 "duration": {
40 "aggs": {
40 "aggs": {
41 "sub_agg": {
41 "sub_agg": {
42 "sum": {"field": "tags.duration.numeric_values"}
42 "sum": {"field": "tags.duration.numeric_values"}
43 }
43 }
44 },
44 },
45 "filter": {
45 "filter": {
46 "exists": {"field": "tags.duration.numeric_values"}
46 "exists": {"field": "tags.duration.numeric_values"}
47 },
47 },
48 },
48 },
49 "total": {
49 "total": {
50 "aggs": {
50 "aggs": {
51 "sub_agg": {
51 "sub_agg": {
52 "value_count": {
52 "value_count": {
53 "field": "tags.statement_hash.values"
53 "field": "tags.statement_hash.values"
54 }
54 }
55 }
55 }
56 },
56 },
57 "filter": {
57 "filter": {
58 "exists": {"field": "tags.statement_hash.values"}
58 "exists": {"field": "tags.statement_hash.values"}
59 },
59 },
60 },
60 },
61 },
61 },
62 "terms": {
62 "terms": {
63 "field": "tags.statement_hash.values",
63 "field": "tags.statement_hash.values",
64 "order": {"duration>sub_agg": "desc"},
64 "order": {"duration>sub_agg": "desc"},
65 "size": 15,
65 "size": 15,
66 },
66 },
67 }
67 }
68 },
68 },
69 "query": {
69 "query": {
70 "bool": {
70 "bool": {
71 "filter": {
71 "filter": [
72 "and": [
72 {
73 {
73 "terms": {
74 "terms": {
74 "resource_id": [filter_settings["resource"][0]]
75 "resource_id": [filter_settings["resource"][0]]
75 }
76 }
76 },
77 },
77 {
78 {
78 "range": {
79 "range": {
79 "timestamp": {
80 "timestamp": {
80 "gte": filter_settings["start_date"],
81 "gte": filter_settings["start_date"],
81 "lte": filter_settings["end_date"],
82 "lte": filter_settings["end_date"],
83 }
84 }
82 }
85 },
83 }
86 ]
84 },
87 }
85 ]
88 }
86 }
89 },
87 },
90 }
88 }
91 result = Datastores.es.search(
89 result = Datastores.es.search(
92 body=es_query, index=index_names, doc_type="log", size=0
90 body=es_query, index=index_names, doc_type="log", size=0
93 )
91 )
94 results = result["aggregations"]["parent_agg"]["buckets"]
92 results = result["aggregations"]["parent_agg"]["buckets"]
95 else:
93 else:
96 return []
94 return []
97 hashes = [i["key"] for i in results]
95 hashes = [i["key"] for i in results]
98
96
99 # get queries associated with hashes
97 # get queries associated with hashes
100 calls_query = {
98 calls_query = {
101 "aggs": {
99 "aggs": {
102 "top_calls": {
100 "top_calls": {
103 "terms": {"field": "tags.statement_hash.values", "size": 15},
101 "terms": {"field": "tags.statement_hash.values", "size": 15},
104 "aggs": {
102 "aggs": {
105 "top_calls_hits": {
103 "top_calls_hits": {
106 "top_hits": {"sort": {"timestamp": "desc"}, "size": 5}
104 "top_hits": {"sort": {"timestamp": "desc"}, "size": 5}
107 }
105 }
108 },
106 },
109 }
107 }
110 },
108 },
111 "query": {
109 "query": {
112 "bool": {
110 "bool": {
113 "filter": {
111 "filter": [
114 "and": [
112 {
115 {
113 "terms": {
116 "terms": {
114 "resource_id": [filter_settings["resource"][0]]
117 "resource_id": [filter_settings["resource"][0]]
115 }
118 }
116 },
119 },
117 {"terms": {"tags.statement_hash.values": hashes}},
120 {"terms": {"tags.statement_hash.values": hashes}},
118 {
121 {
119 "range": {
122 "range": {
120 "timestamp": {
123 "timestamp": {
121 "gte": filter_settings["start_date"],
124 "gte": filter_settings["start_date"],
122 "lte": filter_settings["end_date"],
125 "lte": filter_settings["end_date"],
126 }
127 }
123 }
128 },
124 }
129 ]
125 },
130 }
126 ]
131 }
127 }
132 },
128 },
133 }
129 }
134 calls = Datastores.es.search(
130 calls = Datastores.es.search(
135 body=calls_query, index=index_names, doc_type="log", size=0
131 body=calls_query, index=index_names, doc_type="log", size=0
136 )
132 )
137 call_results = {}
133 call_results = {}
138 report_ids = []
134 report_ids = []
139 for call in calls["aggregations"]["top_calls"]["buckets"]:
135 for call in calls["aggregations"]["top_calls"]["buckets"]:
140 hits = call["top_calls_hits"]["hits"]["hits"]
136 hits = call["top_calls_hits"]["hits"]["hits"]
141 call_results[call["key"]] = [i["_source"] for i in hits]
137 call_results[call["key"]] = [i["_source"] for i in hits]
142 report_ids.extend(
138 report_ids.extend(
143 [i["_source"]["tags"]["report_id"]["values"] for i in hits]
139 [i["_source"]["tags"]["report_id"]["values"] for i in hits]
144 )
140 )
145 if report_ids:
141 if report_ids:
146 r_query = db_session.query(Report.group_id, Report.id)
142 r_query = db_session.query(Report.group_id, Report.id)
147 r_query = r_query.filter(Report.id.in_(report_ids))
143 r_query = r_query.filter(Report.id.in_(report_ids))
148 r_query = r_query.filter(Report.start_time >= filter_settings["start_date"])
144 r_query = r_query.filter(Report.start_time >= filter_settings["start_date"])
149 else:
145 else:
150 r_query = []
146 r_query = []
151 reports_reversed = {}
147 reports_reversed = {}
152 for report in r_query:
148 for report in r_query:
153 reports_reversed[report.id] = report.group_id
149 reports_reversed[report.id] = report.group_id
154
150
155 final_results = []
151 final_results = []
156 for item in results:
152 for item in results:
157 if item["key"] not in call_results:
153 if item["key"] not in call_results:
158 continue
154 continue
159 call = call_results[item["key"]][0]
155 call = call_results[item["key"]][0]
160 row = {
156 row = {
161 "occurences": item["total"]["sub_agg"]["value"],
157 "occurences": item["total"]["sub_agg"]["value"],
162 "total_duration": round(item["duration"]["sub_agg"]["value"]),
158 "total_duration": round(item["duration"]["sub_agg"]["value"]),
163 "statement": call["message"],
159 "statement": call["message"],
164 "statement_type": call["tags"]["type"]["values"],
160 "statement_type": call["tags"]["type"]["values"],
165 "statement_subtype": call["tags"]["subtype"]["values"],
161 "statement_subtype": call["tags"]["subtype"]["values"],
166 "statement_hash": item["key"],
162 "statement_hash": item["key"],
167 "latest_details": [],
163 "latest_details": [],
168 }
164 }
169 if row["statement_type"] in ["tmpl", " remote"]:
165 if row["statement_type"] in ["tmpl", " remote"]:
170 params = (
166 params = (
171 call["tags"]["parameters"]["values"]
167 call["tags"]["parameters"]["values"]
172 if "parameters" in call["tags"]
168 if "parameters" in call["tags"]
173 else ""
169 else ""
174 )
170 )
175 row["statement"] = "{} ({})".format(call["message"], params)
171 row["statement"] = "{} ({})".format(call["message"], params)
176 for call in call_results[item["key"]]:
172 for call in call_results[item["key"]]:
177 report_id = call["tags"]["report_id"]["values"]
173 report_id = call["tags"]["report_id"]["values"]
178 group_id = reports_reversed.get(report_id)
174 group_id = reports_reversed.get(report_id)
179 if group_id:
175 if group_id:
180 row["latest_details"].append(
176 row["latest_details"].append(
181 {"group_id": group_id, "report_id": report_id}
177 {"group_id": group_id, "report_id": report_id}
182 )
178 )
183
179
184 final_results.append(row)
180 final_results.append(row)
185
181
186 return final_results
182 return final_results
@@ -1,222 +1,220 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
3 # Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
4 #
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
7 # You may obtain a copy of the License at
8 #
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
10 #
11 # Unless required by applicable law or agreed to in writing, software
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
15 # limitations under the License.
16
16
17 import logging
17 import logging
18 from datetime import datetime, timedelta
18 from datetime import datetime, timedelta
19
19
20 from pyramid.view import view_config
20 from pyramid.view import view_config
21 from pyramid.httpexceptions import HTTPUnprocessableEntity
21 from pyramid.httpexceptions import HTTPUnprocessableEntity
22 from appenlight.models import Datastores, Log
22 from appenlight.models import Datastores, Log
23 from appenlight.models.services.log import LogService
23 from appenlight.models.services.log import LogService
24 from appenlight.lib.utils import (
24 from appenlight.lib.utils import (
25 build_filter_settings_from_query_dict,
25 build_filter_settings_from_query_dict,
26 es_index_name_limiter,
26 es_index_name_limiter,
27 )
27 )
28 from appenlight.lib.helpers import gen_pagination_headers
28 from appenlight.lib.helpers import gen_pagination_headers
29 from appenlight.celery.tasks import logs_cleanup
29 from appenlight.celery.tasks import logs_cleanup
30
30
31 log = logging.getLogger(__name__)
31 log = logging.getLogger(__name__)
32
32
33 section_filters_key = "appenlight:logs:filter:%s"
33 section_filters_key = "appenlight:logs:filter:%s"
34
34
35
35
36 @view_config(route_name="logs_no_id", renderer="json", permission="authenticated")
36 @view_config(route_name="logs_no_id", renderer="json", permission="authenticated")
37 def fetch_logs(request):
37 def fetch_logs(request):
38 """
38 """
39 Returns list of log entries from Elasticsearch
39 Returns list of log entries from Elasticsearch
40 """
40 """
41
41
42 filter_settings = build_filter_settings_from_query_dict(
42 filter_settings = build_filter_settings_from_query_dict(
43 request, request.GET.mixed()
43 request, request.GET.mixed()
44 )
44 )
45 logs_paginator = LogService.get_paginator_by_app_ids(
45 logs_paginator = LogService.get_paginator_by_app_ids(
46 app_ids=filter_settings["resource"],
46 app_ids=filter_settings["resource"],
47 page=filter_settings["page"],
47 page=filter_settings["page"],
48 filter_settings=filter_settings,
48 filter_settings=filter_settings,
49 )
49 )
50 headers = gen_pagination_headers(request, logs_paginator)
50 headers = gen_pagination_headers(request, logs_paginator)
51 request.response.headers.update(headers)
51 request.response.headers.update(headers)
52
52
53 return [l.get_dict() for l in logs_paginator.sa_items]
53 return [l.get_dict() for l in logs_paginator.sa_items]
54
54
55
55
56 @view_config(
56 @view_config(
57 route_name="section_view",
57 route_name="section_view",
58 match_param=["section=logs_section", "view=fetch_series"],
58 match_param=["section=logs_section", "view=fetch_series"],
59 renderer="json",
59 renderer="json",
60 permission="authenticated",
60 permission="authenticated",
61 )
61 )
62 def logs_fetch_series(request):
62 def logs_fetch_series(request):
63 """
63 """
64 Handles metric dashboard graphs
64 Handles metric dashboard graphs
65 Returns information for time/tier breakdown
65 Returns information for time/tier breakdown
66 """
66 """
67 filter_settings = build_filter_settings_from_query_dict(
67 filter_settings = build_filter_settings_from_query_dict(
68 request, request.GET.mixed()
68 request, request.GET.mixed()
69 )
69 )
70 paginator = LogService.get_paginator_by_app_ids(
70 paginator = LogService.get_paginator_by_app_ids(
71 app_ids=filter_settings["resource"],
71 app_ids=filter_settings["resource"],
72 page=1,
72 page=1,
73 filter_settings=filter_settings,
73 filter_settings=filter_settings,
74 items_per_page=1,
74 items_per_page=1,
75 )
75 )
76 now = datetime.utcnow().replace(microsecond=0, second=0)
76 now = datetime.utcnow().replace(microsecond=0, second=0)
77 delta = timedelta(days=7)
77 delta = timedelta(days=7)
78 if paginator.sa_items:
78 if paginator.sa_items:
79 start_date = paginator.sa_items[-1].timestamp.replace(microsecond=0, second=0)
79 start_date = paginator.sa_items[-1].timestamp.replace(microsecond=0, second=0)
80 filter_settings["start_date"] = start_date - delta
80 filter_settings["start_date"] = start_date - delta
81 else:
81 else:
82 filter_settings["start_date"] = now - delta
82 filter_settings["start_date"] = now - delta
83 filter_settings["end_date"] = filter_settings["start_date"] + timedelta(days=7)
83 filter_settings["end_date"] = filter_settings["start_date"] + timedelta(days=7)
84
84
85 @request.registry.cache_regions.redis_sec_30.cache_on_arguments("logs_graphs")
85 @request.registry.cache_regions.redis_sec_30.cache_on_arguments("logs_graphs")
86 def cached(apps, search_params, delta, now):
86 def cached(apps, search_params, delta, now):
87 data = LogService.get_time_series_aggregate(
87 data = LogService.get_time_series_aggregate(
88 filter_settings["resource"], filter_settings
88 filter_settings["resource"], filter_settings
89 )
89 )
90 if not data:
90 if not data:
91 return []
91 return []
92 buckets = data["aggregations"]["events_over_time"]["buckets"]
92 buckets = data["aggregations"]["events_over_time"]["buckets"]
93 return [
93 return [
94 {
94 {
95 "x": datetime.utcfromtimestamp(item["key"] / 1000),
95 "x": datetime.utcfromtimestamp(item["key"] / 1000),
96 "logs": item["doc_count"],
96 "logs": item["doc_count"],
97 }
97 }
98 for item in buckets
98 for item in buckets
99 ]
99 ]
100
100
101 return cached(filter_settings, request.GET.mixed(), delta, now)
101 return cached(filter_settings, request.GET.mixed(), delta, now)
102
102
103
103
104 @view_config(
104 @view_config(
105 route_name="logs_no_id",
105 route_name="logs_no_id",
106 renderer="json",
106 renderer="json",
107 request_method="DELETE",
107 request_method="DELETE",
108 permission="authenticated",
108 permission="authenticated",
109 )
109 )
110 def logs_mass_delete(request):
110 def logs_mass_delete(request):
111 params = request.GET.mixed()
111 params = request.GET.mixed()
112 if "resource" not in params:
112 if "resource" not in params:
113 raise HTTPUnprocessableEntity()
113 raise HTTPUnprocessableEntity()
114 # this might be '' and then colander will not validate the schema
114 # this might be '' and then colander will not validate the schema
115 if not params.get("namespace"):
115 if not params.get("namespace"):
116 params.pop("namespace", None)
116 params.pop("namespace", None)
117 filter_settings = build_filter_settings_from_query_dict(
117 filter_settings = build_filter_settings_from_query_dict(
118 request, params, resource_permissions=["update_reports"]
118 request, params, resource_permissions=["update_reports"]
119 )
119 )
120
120
121 resource_id = list(filter_settings["resource"])[0]
121 resource_id = list(filter_settings["resource"])[0]
122 # filter settings returns list of all of users applications
122 # filter settings returns list of all of users applications
123 # if app is not matching - normally we would not care as its used for search
123 # if app is not matching - normally we would not care as its used for search
124 # but here user playing with params would possibly wipe out their whole data
124 # but here user playing with params would possibly wipe out their whole data
125 if int(resource_id) != int(params["resource"]):
125 if int(resource_id) != int(params["resource"]):
126 raise HTTPUnprocessableEntity()
126 raise HTTPUnprocessableEntity()
127
127
128 logs_cleanup.delay(resource_id, filter_settings)
128 logs_cleanup.delay(resource_id, filter_settings)
129 msg = (
129 msg = (
130 "Log cleanup process started - it may take a while for "
130 "Log cleanup process started - it may take a while for "
131 "everything to get removed"
131 "everything to get removed"
132 )
132 )
133 request.session.flash(msg)
133 request.session.flash(msg)
134 return {}
134 return {}
135
135
136
136
137 @view_config(
137 @view_config(
138 route_name="section_view",
138 route_name="section_view",
139 match_param=("view=common_tags", "section=logs_section"),
139 match_param=("view=common_tags", "section=logs_section"),
140 renderer="json",
140 renderer="json",
141 permission="authenticated",
141 permission="authenticated",
142 )
142 )
143 def common_tags(request):
143 def common_tags(request):
144 config = request.GET.mixed()
144 config = request.GET.mixed()
145 filter_settings = build_filter_settings_from_query_dict(request, config)
145 filter_settings = build_filter_settings_from_query_dict(request, config)
146
146
147 resources = list(filter_settings["resource"])
147 resources = list(filter_settings["resource"])
148 query = {
148 query = {
149 "query": {
149 "query": {
150 "bool": {
150 "bool": {
151 "filter": {"and": [{"terms": {"resource_id": list(resources)}}]}
151 "filter": [{"terms": {"resource_id": list(resources)}}]
152 }
152 }
153 }
153 }
154 }
154 }
155 start_date = filter_settings.get("start_date")
155 start_date = filter_settings.get("start_date")
156 end_date = filter_settings.get("end_date")
156 end_date = filter_settings.get("end_date")
157 filter_part = query["query"]["bool"]["filter"]["and"]
157 filter_part = query["query"]["bool"]["filter"]
158
158
159 date_range = {"range": {"timestamp": {}}}
159 date_range = {"range": {"timestamp": {}}}
160 if start_date:
160 if start_date:
161 date_range["range"]["timestamp"]["gte"] = start_date
161 date_range["range"]["timestamp"]["gte"] = start_date
162 if end_date:
162 if end_date:
163 date_range["range"]["timestamp"]["lte"] = end_date
163 date_range["range"]["timestamp"]["lte"] = end_date
164 if start_date or end_date:
164 if start_date or end_date:
165 filter_part.append(date_range)
165 filter_part.append(date_range)
166
166
167 levels = filter_settings.get("level")
167 levels = filter_settings.get("level")
168 if levels:
168 if levels:
169 filter_part.append({"terms": {"log_level": levels}})
169 filter_part.append({"terms": {"log_level": levels}})
170 namespaces = filter_settings.get("namespace")
170 namespaces = filter_settings.get("namespace")
171 if namespaces:
171 if namespaces:
172 filter_part.append({"terms": {"namespace": namespaces}})
172 filter_part.append({"terms": {"namespace": namespaces}})
173
173
174 query["aggs"] = {"sub_agg": {"terms": {"field": "tag_list", "size": 50}}}
174 query["aggs"] = {"sub_agg": {"terms": {"field": "tag_list", "size": 50}}}
175 # tags
175 # tags
176 index_names = es_index_name_limiter(ixtypes=[config.get("datasource", "logs")])
176 index_names = es_index_name_limiter(ixtypes=[config.get("datasource", "logs")])
177 result = Datastores.es.search(body=query, index=index_names, doc_type="log", size=0)
177 result = Datastores.es.search(body=query, index=index_names, doc_type="log", size=0)
178 tag_buckets = result["aggregations"]["sub_agg"].get("buckets", [])
178 tag_buckets = result["aggregations"]["sub_agg"].get("buckets", [])
179 # namespaces
179 # namespaces
180 query["aggs"] = {"sub_agg": {"terms": {"field": "namespace", "size": 50}}}
180 query["aggs"] = {"sub_agg": {"terms": {"field": "namespace", "size": 50}}}
181 result = Datastores.es.search(body=query, index=index_names, doc_type="log", size=0)
181 result = Datastores.es.search(body=query, index=index_names, doc_type="log", size=0)
182 namespaces_buckets = result["aggregations"]["sub_agg"].get("buckets", [])
182 namespaces_buckets = result["aggregations"]["sub_agg"].get("buckets", [])
183 return {
183 return {
184 "tags": [item["key"] for item in tag_buckets],
184 "tags": [item["key"] for item in tag_buckets],
185 "namespaces": [item["key"] for item in namespaces_buckets],
185 "namespaces": [item["key"] for item in namespaces_buckets],
186 }
186 }
187
187
188
188
189 @view_config(
189 @view_config(
190 route_name="section_view",
190 route_name="section_view",
191 match_param=("view=common_values", "section=logs_section"),
191 match_param=("view=common_values", "section=logs_section"),
192 renderer="json",
192 renderer="json",
193 permission="authenticated",
193 permission="authenticated",
194 )
194 )
195 def common_values(request):
195 def common_values(request):
196 config = request.GET.mixed()
196 config = request.GET.mixed()
197 datasource = config.pop("datasource", "logs")
197 datasource = config.pop("datasource", "logs")
198 filter_settings = build_filter_settings_from_query_dict(request, config)
198 filter_settings = build_filter_settings_from_query_dict(request, config)
199 resources = list(filter_settings["resource"])
199 resources = list(filter_settings["resource"])
200 tag_name = filter_settings["tags"][0]["value"][0]
200 tag_name = filter_settings["tags"][0]["value"][0]
201
201
202 and_part = [
202 and_part = [
203 {"terms": {"resource_id": list(resources)}},
203 {"terms": {"resource_id": list(resources)}},
204 ]
204 ]
205 if filter_settings["namespace"]:
205 if filter_settings["namespace"]:
206 and_part.append({"terms": {"namespace": filter_settings["namespace"]}})
206 and_part.append({"terms": {"namespace": filter_settings["namespace"]}})
207 query = {
207 query = {
208 "query": {
208 "query": {
209 "bool": {
209 "bool": {
210 "filter": {
210 "filter": and_part
211 "and": and_part
212 }
213 }
211 }
214 }
212 }
215 }
213 }
216 query["aggs"] = {
214 query["aggs"] = {
217 "sub_agg": {"terms": {"field": "tags.{}.values".format(tag_name), "size": 50}}
215 "sub_agg": {"terms": {"field": "tags.{}.values".format(tag_name), "size": 50}}
218 }
216 }
219 index_names = es_index_name_limiter(ixtypes=[datasource])
217 index_names = es_index_name_limiter(ixtypes=[datasource])
220 result = Datastores.es.search(body=query, index=index_names, doc_type="log", size=0)
218 result = Datastores.es.search(body=query, index=index_names, doc_type="log", size=0)
221 values_buckets = result["aggregations"]["sub_agg"].get("buckets", [])
219 values_buckets = result["aggregations"]["sub_agg"].get("buckets", [])
222 return {"values": [item["key"] for item in values_buckets]}
220 return {"values": [item["key"] for item in values_buckets]}
General Comments 0
You need to be logged in to leave comments. Login now