06745caa429558063082ebf1b5339aa743b8a282
[nfvbench.git] / nfvbench / fluentd.py
1 # Copyright 2017 Cisco Systems, Inc.  All rights reserved.
2 #
3 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
4 #    not use this file except in compliance with the License. You may obtain
5 #    a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #    Unless required by applicable law or agreed to in writing, software
10 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 #    License for the specific language governing permissions and limitations
13 #    under the License.
14
15 from datetime import datetime
16 from fluent import sender
17 import logging
18 import pytz
19
20
21 class FluentLogHandler(logging.Handler):
22     '''This is a minimalist log handler for use with Fluentd
23
24     Needs to be attached to a logger using the addHandler method.
25     It only picks up from every record:
26     - the formatted message (no timestamp and no level)
27     - the level name
28     - the runlogdate (to tie multiple run-related logs together)
29     The timestamp is retrieved by the fluentd library.
30     '''
31
32     def __init__(self, tag, fluentd_ip='127.0.0.1', fluentd_port=24224):
33         logging.Handler.__init__(self)
34         self.tag = tag
35         self.formatter = logging.Formatter('%(message)s')
36         self.sender = sender.FluentSender(self.tag, host=fluentd_ip, port=fluentd_port)
37         self.runlogdate = 0
38         self.__warning_counter = 0
39         self.__error_counter = 0
40
41     def start_new_run(self):
42         '''Delimitate a new run in the stream of records with a new timestamp
43         '''
44         self.runlogdate = str(datetime.now())
45         # reset counters
46         self.__warning_counter = 0
47         self.__error_counter = 0
48         # send start record
49         self.__send_start_record()
50
51     def emit(self, record):
52         data = {
53             "runlogdate": self.runlogdate,
54             "loglevel": record.levelname,
55             "message": self.formatter.format(record),
56             "@timestamp": self.__get_timestamp()
57         }
58         self.__update_stats(record.levelno)
59         self.sender.emit(None, data)
60
61     # send START record for each run
62     def __send_start_record(self):
63         data = {
64             "runlogdate": self.runlogdate,
65             "loglevel": "START",
66             "message": "NFVBENCH run is started",
67             "numloglevel": 0,
68             "numerrors": 0,
69             "numwarnings": 0,
70             "@timestamp": self.__get_timestamp()
71         }
72         self.sender.emit(None, data)
73
74     # send stats related to the current run and reset state for a new run
75     def send_run_summary(self, run_summary_required):
76         if run_summary_required or self.__get_highest_level() == logging.ERROR:
77             data = {
78                 "runlogdate": self.runlogdate,
79                 "loglevel": "RUN_SUMMARY",
80                 "message": self.__get_highest_level_desc(),
81                 "numloglevel": self.__get_highest_level(),
82                 "numerrors": self.__error_counter,
83                 "numwarnings": self.__warning_counter,
84                 "@timestamp": self.__get_timestamp()
85             }
86             self.sender.emit(None, data)
87
88     def __get_highest_level(self):
89         if self.__error_counter > 0:
90             return logging.ERROR
91         elif self.__warning_counter > 0:
92             return logging.WARNING
93         return logging.INFO
94
95     def __get_highest_level_desc(self):
96         highest_level = self.__get_highest_level()
97         if highest_level == logging.INFO:
98             return "GOOD RUN"
99         elif highest_level == logging.WARNING:
100             return "RUN WITH WARNINGS"
101         else:
102             return "RUN WITH ERRORS"
103
104     def __update_stats(self, levelno):
105         if levelno == logging.WARNING:
106             self.__warning_counter += 1
107         elif levelno == logging.ERROR:
108             self.__error_counter += 1
109
110     def __get_timestamp(self):
111         return datetime.utcnow().replace(tzinfo=pytz.utc).strftime(
112             "%Y-%m-%dT%H:%M:%S.%f%z")