-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path05-logging-errors.py
More file actions
1524 lines (1237 loc) · 50.8 KB
/
05-logging-errors.py
File metadata and controls
1524 lines (1237 loc) · 50.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Question: Implement comprehensive error logging strategies for robust applications.
Create a logging system that demonstrates different logging levels, formatters,
handlers, and error tracking patterns for production applications.
Requirements:
1. Set up basic logging configuration with different levels
2. Create custom formatters for different output formats
3. Implement file and console handlers
4. Create error tracking and monitoring systems
5. Demonstrate logging in exception handling
6. Show structured logging with context
7. Implement log rotation and management
Example usage:
logger = setup_application_logger()
try:
risky_operation()
except Exception as e:
logger.error("Operation failed", exc_info=True, extra={'user_id': 123})
"""
# LEARNING CHALLENGE
#
# Before looking at any solution below, please try to solve this yourself first!
#
# Tips for success:
# - Read the question carefully
# - Think about what logging components you need
# - Start with basic logging setup
# - Test your code step by step
# - Don't worry if it's not perfect - learning is a process!
#
# Remember: The best way to learn programming is by doing, not by reading solutions!
#
# Take your time, experiment, and enjoy the learning process!
# Try to implement your solution here:
# (Write your code below this line)
# HINT SECTION (Only look if you're really stuck!)
#
# Think about:
# - What logging levels do you need? (DEBUG, INFO, WARNING, ERROR, CRITICAL)
# - How to format log messages for different purposes?
# - Where should logs be written? (console, files, remote systems)
# - How to handle log rotation and file management?
# - How to add context information to logs?
#
# Remember: Start simple and build up complexity gradually!
# ===============================================================================
# STEP-BY-STEP SOLUTION
# ===============================================================================
#
# CLASSROOM-STYLE WALKTHROUGH
#
# Let's solve this problem step by step, just like in a programming class!
# Each step builds upon the previous one, so you can follow along and understand
# the complete thought process.
#
# ===============================================================================
# Step 1: Import modules and set up basic logging
# ===============================================================================
# Explanation:
# We start with the essential imports and basic logging configuration.
# This establishes the foundation for our logging system.
import logging
import sys
from datetime import datetime
# Basic logging setup
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
# Create a basic logger
basic_logger = logging.getLogger('basic_example')
# Demonstrate basic logging levels
def demonstrate_basic_logging():
"""Show different logging levels in action."""
basic_logger.debug("This is a debug message")
basic_logger.info("Application started successfully")
basic_logger.warning("This is a warning message")
basic_logger.error("An error occurred")
basic_logger.critical("Critical system failure!")
# What we accomplished in this step:
# - Imported necessary logging modules
# - Set up basic logging configuration
# - Created a simple logger and demonstrated different levels
# Step 2: Create custom formatters for different output formats
# ===============================================================================
# Explanation:
# Custom formatters allow us to control how log messages appear.
# We'll create different formatters for console and file output.
import logging
import sys
from datetime import datetime
import json
# Basic logging setup
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
# Create a basic logger
basic_logger = logging.getLogger('basic_example')
# Demonstrate basic logging levels
def demonstrate_basic_logging():
"""Show different logging levels in action."""
basic_logger.debug("This is a debug message")
basic_logger.info("Application started successfully")
basic_logger.warning("This is a warning message")
basic_logger.error("An error occurred")
basic_logger.critical("Critical system failure!")
class DetailedFormatter(logging.Formatter):
"""Custom formatter with detailed information."""
def format(self, record):
# Add custom fields
record.module_name = record.module
record.function_name = record.funcName
record.line_number = record.lineno
# Create detailed format
detailed_format = (
"%(asctime)s | %(levelname)-8s | %(name)s | "
"%(module_name)s.%(function_name)s:%(line_number)d | %(message)s"
)
formatter = logging.Formatter(detailed_format)
return formatter.format(record)
class JSONFormatter(logging.Formatter):
"""Custom formatter that outputs JSON format."""
def format(self, record):
log_entry = {
'timestamp': datetime.fromtimestamp(record.created).isoformat(),
'level': record.levelname,
'logger': record.name,
'module': record.module,
'function': record.funcName,
'line': record.lineno,
'message': record.getMessage(),
}
# Add exception info if present
if record.exc_info:
log_entry['exception'] = self.formatException(record.exc_info)
# Add extra fields
for key, value in record.__dict__.items():
if key not in ['name', 'msg', 'args', 'levelname', 'levelno', 'pathname',
'filename', 'module', 'lineno', 'funcName', 'created',
'msecs', 'relativeCreated', 'thread', 'threadName',
'processName', 'process', 'getMessage', 'exc_info',
'exc_text', 'stack_info']:
log_entry[key] = value
return json.dumps(log_entry)
# What we accomplished in this step:
# - Created DetailedFormatter for human-readable detailed logs
# - Created JSONFormatter for structured logging
# - Added custom fields and exception handling to formatters
# Step 3: Implement file and console handlers with rotation
# ===============================================================================
# Explanation:
# Handlers determine where log messages go. We'll create console and file handlers
# with different configurations and add log rotation for file management.
import logging
import sys
from datetime import datetime
import json
import os
from logging.handlers import RotatingFileHandler, TimedRotatingFileHandler
# Basic logging setup
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
# Create a basic logger
basic_logger = logging.getLogger('basic_example')
# Demonstrate basic logging levels
def demonstrate_basic_logging():
"""Show different logging levels in action."""
basic_logger.debug("This is a debug message")
basic_logger.info("Application started successfully")
basic_logger.warning("This is a warning message")
basic_logger.error("An error occurred")
basic_logger.critical("Critical system failure!")
class DetailedFormatter(logging.Formatter):
"""Custom formatter with detailed information."""
def format(self, record):
# Add custom fields
record.module_name = record.module
record.function_name = record.funcName
record.line_number = record.lineno
# Create detailed format
detailed_format = (
"%(asctime)s | %(levelname)-8s | %(name)s | "
"%(module_name)s.%(function_name)s:%(line_number)d | %(message)s"
)
formatter = logging.Formatter(detailed_format)
return formatter.format(record)
class JSONFormatter(logging.Formatter):
"""Custom formatter that outputs JSON format."""
def format(self, record):
log_entry = {
'timestamp': datetime.fromtimestamp(record.created).isoformat(),
'level': record.levelname,
'logger': record.name,
'module': record.module,
'function': record.funcName,
'line': record.lineno,
'message': record.getMessage(),
}
# Add exception info if present
if record.exc_info:
log_entry['exception'] = self.formatException(record.exc_info)
# Add extra fields
for key, value in record.__dict__.items():
if key not in ['name', 'msg', 'args', 'levelname', 'levelno', 'pathname',
'filename', 'module', 'lineno', 'funcName', 'created',
'msecs', 'relativeCreated', 'thread', 'threadName',
'processName', 'process', 'getMessage', 'exc_info',
'exc_text', 'stack_info']:
log_entry[key] = value
return json.dumps(log_entry)
def setup_application_logger(name='app', log_dir='logs'):
"""Set up a comprehensive logger with multiple handlers."""
# Create logs directory if it doesn't exist
if not os.path.exists(log_dir):
os.makedirs(log_dir)
# Create logger
logger = logging.getLogger(name)
logger.setLevel(logging.DEBUG)
# Clear any existing handlers
logger.handlers.clear()
# Console handler with simple format
console_handler = logging.StreamHandler(sys.stdout)
console_handler.setLevel(logging.INFO)
console_formatter = logging.Formatter(
'%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
console_handler.setFormatter(console_formatter)
# File handler with detailed format and rotation
file_handler = RotatingFileHandler(
filename=os.path.join(log_dir, f'{name}.log'),
maxBytes=10*1024*1024, # 10MB
backupCount=5
)
file_handler.setLevel(logging.DEBUG)
file_handler.setFormatter(DetailedFormatter())
# Error file handler for errors and critical messages
error_handler = RotatingFileHandler(
filename=os.path.join(log_dir, f'{name}_errors.log'),
maxBytes=5*1024*1024, # 5MB
backupCount=3
)
error_handler.setLevel(logging.ERROR)
error_handler.setFormatter(DetailedFormatter())
# JSON handler for structured logging
json_handler = TimedRotatingFileHandler(
filename=os.path.join(log_dir, f'{name}_structured.log'),
when='midnight',
interval=1,
backupCount=7
)
json_handler.setLevel(logging.INFO)
json_handler.setFormatter(JSONFormatter())
# Add handlers to logger
logger.addHandler(console_handler)
logger.addHandler(file_handler)
logger.addHandler(error_handler)
logger.addHandler(json_handler)
return logger
# What we accomplished in this step:
# - Created setup_application_logger function with multiple handlers
# - Added RotatingFileHandler for size-based log rotation
# - Added TimedRotatingFileHandler for time-based rotation
# - Configured different log levels for different handlers
# - Set up separate error log file for critical issues
# Step 4: Create error tracking and monitoring systems
# ===============================================================================
# Explanation:
# Error tracking helps monitor application health and identify issues.
# We'll create classes to track errors, performance metrics, and system health.
import logging
import sys
from datetime import datetime
import json
import os
from logging.handlers import RotatingFileHandler, TimedRotatingFileHandler
import traceback
import threading
from collections import defaultdict, deque
import time
# Basic logging setup
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
# Create a basic logger
basic_logger = logging.getLogger('basic_example')
# Demonstrate basic logging levels
def demonstrate_basic_logging():
"""Show different logging levels in action."""
basic_logger.debug("This is a debug message")
basic_logger.info("Application started successfully")
basic_logger.warning("This is a warning message")
basic_logger.error("An error occurred")
basic_logger.critical("Critical system failure!")
class DetailedFormatter(logging.Formatter):
"""Custom formatter with detailed information."""
def format(self, record):
# Add custom fields
record.module_name = record.module
record.function_name = record.funcName
record.line_number = record.lineno
# Create detailed format
detailed_format = (
"%(asctime)s | %(levelname)-8s | %(name)s | "
"%(module_name)s.%(function_name)s:%(line_number)d | %(message)s"
)
formatter = logging.Formatter(detailed_format)
return formatter.format(record)
class JSONFormatter(logging.Formatter):
"""Custom formatter that outputs JSON format."""
def format(self, record):
log_entry = {
'timestamp': datetime.fromtimestamp(record.created).isoformat(),
'level': record.levelname,
'logger': record.name,
'module': record.module,
'function': record.funcName,
'line': record.lineno,
'message': record.getMessage(),
}
# Add exception info if present
if record.exc_info:
log_entry['exception'] = self.formatException(record.exc_info)
# Add extra fields
for key, value in record.__dict__.items():
if key not in ['name', 'msg', 'args', 'levelname', 'levelno', 'pathname',
'filename', 'module', 'lineno', 'funcName', 'created',
'msecs', 'relativeCreated', 'thread', 'threadName',
'processName', 'process', 'getMessage', 'exc_info',
'exc_text', 'stack_info']:
log_entry[key] = value
return json.dumps(log_entry)
def setup_application_logger(name='app', log_dir='logs'):
"""Set up a comprehensive logger with multiple handlers."""
# Create logs directory if it doesn't exist
if not os.path.exists(log_dir):
os.makedirs(log_dir)
# Create logger
logger = logging.getLogger(name)
logger.setLevel(logging.DEBUG)
# Clear any existing handlers
logger.handlers.clear()
# Console handler with simple format
console_handler = logging.StreamHandler(sys.stdout)
console_handler.setLevel(logging.INFO)
console_formatter = logging.Formatter(
'%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
console_handler.setFormatter(console_formatter)
# File handler with detailed format and rotation
file_handler = RotatingFileHandler(
filename=os.path.join(log_dir, f'{name}.log'),
maxBytes=10*1024*1024, # 10MB
backupCount=5
)
file_handler.setLevel(logging.DEBUG)
file_handler.setFormatter(DetailedFormatter())
# Error file handler for errors and critical messages
error_handler = RotatingFileHandler(
filename=os.path.join(log_dir, f'{name}_errors.log'),
maxBytes=5*1024*1024, # 5MB
backupCount=3
)
error_handler.setLevel(logging.ERROR)
error_handler.setFormatter(DetailedFormatter())
# JSON handler for structured logging
json_handler = TimedRotatingFileHandler(
filename=os.path.join(log_dir, f'{name}_structured.log'),
when='midnight',
interval=1,
backupCount=7
)
json_handler.setLevel(logging.INFO)
json_handler.setFormatter(JSONFormatter())
# Add handlers to logger
logger.addHandler(console_handler)
logger.addHandler(file_handler)
logger.addHandler(error_handler)
logger.addHandler(json_handler)
return logger
class ErrorTracker:
"""Track and monitor application errors."""
def __init__(self, logger=None):
self.logger = logger or logging.getLogger(__name__)
self.error_counts = defaultdict(int)
self.recent_errors = deque(maxlen=100)
self.lock = threading.Lock()
def track_error(self, error, context=None):
"""Track an error occurrence."""
with self.lock:
error_key = f"{type(error).__name__}: {str(error)}"
self.error_counts[error_key] += 1
error_info = {
'timestamp': datetime.now().isoformat(),
'error_type': type(error).__name__,
'error_message': str(error),
'traceback': traceback.format_exc(),
'context': context or {}
}
self.recent_errors.append(error_info)
# Log the error
self.logger.error(
f"Error tracked: {error_key}",
exc_info=True,
extra={'error_context': context}
)
def get_error_summary(self):
"""Get summary of tracked errors."""
with self.lock:
return {
'total_unique_errors': len(self.error_counts),
'total_error_occurrences': sum(self.error_counts.values()),
'most_common_errors': dict(sorted(
self.error_counts.items(),
key=lambda x: x[1],
reverse=True
)[:10]),
'recent_errors_count': len(self.recent_errors)
}
class PerformanceMonitor:
"""Monitor application performance metrics."""
def __init__(self, logger=None):
self.logger = logger or logging.getLogger(__name__)
self.metrics = defaultdict(list)
self.lock = threading.Lock()
def record_timing(self, operation, duration):
"""Record timing for an operation."""
with self.lock:
self.metrics[operation].append({
'timestamp': datetime.now().isoformat(),
'duration': duration
})
# Keep only last 1000 measurements
if len(self.metrics[operation]) > 1000:
self.metrics[operation] = self.metrics[operation][-1000:]
# Log slow operations
if duration > 1.0: # Log operations taking more than 1 second
self.logger.warning(
f"Slow operation detected: {operation} took {duration:.2f}s"
)
def get_performance_summary(self):
"""Get performance metrics summary."""
with self.lock:
summary = {}
for operation, timings in self.metrics.items():
if timings:
durations = [t['duration'] for t in timings]
summary[operation] = {
'count': len(durations),
'avg_duration': sum(durations) / len(durations),
'max_duration': max(durations),
'min_duration': min(durations)
}
return summary
# What we accomplished in this step:
# - Created ErrorTracker class to monitor and count errors
# - Added PerformanceMonitor class to track operation timings
# - Implemented thread-safe error and performance tracking
# - Added methods to get summaries and statistics
# Step 5: Demonstrate logging in exception handling with context
# ===============================================================================
# Explanation:
# Proper exception handling with logging provides valuable debugging information.
# We'll show how to log exceptions with context and structured data.
import logging
import sys
from datetime import datetime
import json
import os
from logging.handlers import RotatingFileHandler, TimedRotatingFileHandler
import traceback
import threading
from collections import defaultdict, deque
import time
from contextlib import contextmanager
from functools import wraps
# Basic logging setup
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
# Create a basic logger
basic_logger = logging.getLogger('basic_example')
# Demonstrate basic logging levels
def demonstrate_basic_logging():
"""Show different logging levels in action."""
basic_logger.debug("This is a debug message")
basic_logger.info("Application started successfully")
basic_logger.warning("This is a warning message")
basic_logger.error("An error occurred")
basic_logger.critical("Critical system failure!")
class DetailedFormatter(logging.Formatter):
"""Custom formatter with detailed information."""
def format(self, record):
# Add custom fields
record.module_name = record.module
record.function_name = record.funcName
record.line_number = record.lineno
# Create detailed format
detailed_format = (
"%(asctime)s | %(levelname)-8s | %(name)s | "
"%(module_name)s.%(function_name)s:%(line_number)d | %(message)s"
)
formatter = logging.Formatter(detailed_format)
return formatter.format(record)
class JSONFormatter(logging.Formatter):
"""Custom formatter that outputs JSON format."""
def format(self, record):
log_entry = {
'timestamp': datetime.fromtimestamp(record.created).isoformat(),
'level': record.levelname,
'logger': record.name,
'module': record.module,
'function': record.funcName,
'line': record.lineno,
'message': record.getMessage(),
}
# Add exception info if present
if record.exc_info:
log_entry['exception'] = self.formatException(record.exc_info)
# Add extra fields
for key, value in record.__dict__.items():
if key not in ['name', 'msg', 'args', 'levelname', 'levelno', 'pathname',
'filename', 'module', 'lineno', 'funcName', 'created',
'msecs', 'relativeCreated', 'thread', 'threadName',
'processName', 'process', 'getMessage', 'exc_info',
'exc_text', 'stack_info']:
log_entry[key] = value
return json.dumps(log_entry)
def setup_application_logger(name='app', log_dir='logs'):
"""Set up a comprehensive logger with multiple handlers."""
# Create logs directory if it doesn't exist
if not os.path.exists(log_dir):
os.makedirs(log_dir)
# Create logger
logger = logging.getLogger(name)
logger.setLevel(logging.DEBUG)
# Clear any existing handlers
logger.handlers.clear()
# Console handler with simple format
console_handler = logging.StreamHandler(sys.stdout)
console_handler.setLevel(logging.INFO)
console_formatter = logging.Formatter(
'%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
console_handler.setFormatter(console_formatter)
# File handler with detailed format and rotation
file_handler = RotatingFileHandler(
filename=os.path.join(log_dir, f'{name}.log'),
maxBytes=10*1024*1024, # 10MB
backupCount=5
)
file_handler.setLevel(logging.DEBUG)
file_handler.setFormatter(DetailedFormatter())
# Error file handler for errors and critical messages
error_handler = RotatingFileHandler(
filename=os.path.join(log_dir, f'{name}_errors.log'),
maxBytes=5*1024*1024, # 5MB
backupCount=3
)
error_handler.setLevel(logging.ERROR)
error_handler.setFormatter(DetailedFormatter())
# JSON handler for structured logging
json_handler = TimedRotatingFileHandler(
filename=os.path.join(log_dir, f'{name}_structured.log'),
when='midnight',
interval=1,
backupCount=7
)
json_handler.setLevel(logging.INFO)
json_handler.setFormatter(JSONFormatter())
# Add handlers to logger
logger.addHandler(console_handler)
logger.addHandler(file_handler)
logger.addHandler(error_handler)
logger.addHandler(json_handler)
return logger
class ErrorTracker:
"""Track and monitor application errors."""
def __init__(self, logger=None):
self.logger = logger or logging.getLogger(__name__)
self.error_counts = defaultdict(int)
self.recent_errors = deque(maxlen=100)
self.lock = threading.Lock()
def track_error(self, error, context=None):
"""Track an error occurrence."""
with self.lock:
error_key = f"{type(error).__name__}: {str(error)}"
self.error_counts[error_key] += 1
error_info = {
'timestamp': datetime.now().isoformat(),
'error_type': type(error).__name__,
'error_message': str(error),
'traceback': traceback.format_exc(),
'context': context or {}
}
self.recent_errors.append(error_info)
# Log the error
self.logger.error(
f"Error tracked: {error_key}",
exc_info=True,
extra={'error_context': context}
)
def get_error_summary(self):
"""Get summary of tracked errors."""
with self.lock:
return {
'total_unique_errors': len(self.error_counts),
'total_error_occurrences': sum(self.error_counts.values()),
'most_common_errors': dict(sorted(
self.error_counts.items(),
key=lambda x: x[1],
reverse=True
)[:10]),
'recent_errors_count': len(self.recent_errors)
}
class PerformanceMonitor:
"""Monitor application performance metrics."""
def __init__(self, logger=None):
self.logger = logger or logging.getLogger(__name__)
self.metrics = defaultdict(list)
self.lock = threading.Lock()
def record_timing(self, operation, duration):
"""Record timing for an operation."""
with self.lock:
self.metrics[operation].append({
'timestamp': datetime.now().isoformat(),
'duration': duration
})
# Keep only last 1000 measurements
if len(self.metrics[operation]) > 1000:
self.metrics[operation] = self.metrics[operation][-1000:]
# Log slow operations
if duration > 1.0: # Log operations taking more than 1 second
self.logger.warning(
f"Slow operation detected: {operation} took {duration:.2f}s"
)
def get_performance_summary(self):
"""Get performance metrics summary."""
with self.lock:
summary = {}
for operation, timings in self.metrics.items():
if timings:
durations = [t['duration'] for t in timings]
summary[operation] = {
'count': len(durations),
'avg_duration': sum(durations) / len(durations),
'max_duration': max(durations),
'min_duration': min(durations)
}
return summary
@contextmanager
def log_context(logger, operation, **context):
"""Context manager for logging operations with timing and error handling."""
start_time = time.time()
logger.info(f"Starting operation: {operation}", extra=context)
try:
yield
duration = time.time() - start_time
logger.info(
f"Completed operation: {operation} in {duration:.2f}s",
extra={**context, 'duration': duration}
)
except Exception as e:
duration = time.time() - start_time
logger.error(
f"Failed operation: {operation} after {duration:.2f}s - {str(e)}",
exc_info=True,
extra={**context, 'duration': duration, 'error': str(e)}
)
raise
def log_exceptions(logger=None):
"""Decorator to automatically log exceptions from functions."""
def decorator(func):
@wraps(func)
def wrapper(*args, **kwargs):
func_logger = logger or logging.getLogger(func.__module__)
try:
return func(*args, **kwargs)
except Exception as e:
func_logger.error(
f"Exception in {func.__name__}: {str(e)}",
exc_info=True,
extra={
'function': func.__name__,
'args': str(args)[:200], # Limit arg length
'kwargs': str(kwargs)[:200]
}
)
raise
return wrapper
return decorator
# Example functions demonstrating exception logging
def risky_database_operation(user_id, operation_type):
"""Simulate a database operation that might fail."""
logger = logging.getLogger(__name__)
try:
logger.info(
f"Starting database operation: {operation_type}",
extra={'user_id': user_id, 'operation': operation_type}
)
# Simulate different types of failures
if operation_type == "invalid_user":
raise ValueError(f"Invalid user ID: {user_id}")
elif operation_type == "connection_error":
raise ConnectionError("Database connection failed")
elif operation_type == "timeout":
raise TimeoutError("Operation timed out")
# Simulate success
logger.info(
f"Database operation completed successfully",
extra={'user_id': user_id, 'operation': operation_type}
)
return {"status": "success", "user_id": user_id}
except ValueError as e:
logger.error(
f"Validation error in database operation",
exc_info=True,
extra={
'user_id': user_id,
'operation': operation_type,
'error_type': 'validation'
}
)
raise
except (ConnectionError, TimeoutError) as e:
logger.error(
f"Infrastructure error in database operation",
exc_info=True,
extra={
'user_id': user_id,
'operation': operation_type,
'error_type': 'infrastructure'
}
)
raise
except Exception as e:
logger.critical(
f"Unexpected error in database operation",
exc_info=True,
extra={
'user_id': user_id,
'operation': operation_type,
'error_type': 'unexpected'
}
)
raise
@log_exceptions()
def process_user_data(user_data):
"""Process user data with automatic exception logging."""
if not isinstance(user_data, dict):
raise TypeError("User data must be a dictionary")
if 'email' not in user_data:
raise KeyError("Email is required")
# Simulate processing
return {"processed": True, "email": user_data['email']}
# What we accomplished in this step:
# - Created log_context context manager for operation logging
# - Added log_exceptions decorator for automatic exception logging
# - Implemented example functions showing different exception types
# - Demonstrated structured logging with context information
# - Added timing and error tracking to operations
# Step 6: Complete application with comprehensive logging system
# ===============================================================================
# Explanation:
# Now we'll create a complete application class that integrates all our logging
# components and demonstrates real-world usage patterns.
import logging
import sys
from datetime import datetime
import json
import os
from logging.handlers import RotatingFileHandler, TimedRotatingFileHandler
import traceback
import threading
from collections import defaultdict, deque
import time
from contextlib import contextmanager
from functools import wraps
# Basic logging setup
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
# Create a basic logger
basic_logger = logging.getLogger('basic_example')
# Demonstrate basic logging levels
def demonstrate_basic_logging():
"""Show different logging levels in action."""
basic_logger.debug("This is a debug message")
basic_logger.info("Application started successfully")