Package pyhai :: Package plugins :: Package linux :: Module processor
[hide private]
[frames] | no frames]

Source Code for Module pyhai.plugins.linux.processor

 1  """ 
 2  @copyright: 2011 Mark LaPerriere 
 3   
 4  @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. 
 7      You may obtain a copy of the License at 
 8   
 9      U{http://www.apache.org/licenses/LICENSE-2.0} 
10   
11      Unless required by applicable law or agreed to in writing, software 
12      distributed under the License is distributed on an "AS IS" BASIS, 
13      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
14      See the License for the specific language governing permissions and 
15      limitations under the License. 
16   
17  @summary: 
18      A processor auditing plugin that should work with most Redhat-like distros 
19   
20  @author: Mark LaPerriere 
21  @contact: pyhai@mindmind.com 
22  @organization: Mind Squared Design / www.mindmind.com 
23  @version: 0.1.3 
24  @date: Jan 19, 2012 
25  """ 
26  from pyhai.plugins import AuditorPlugin 
27  import logging 
28   
29  # set some default logging behavior 
30  _logger = logging.getLogger(__name__) 
31  _logger.addHandler(logging.NullHandler()) 
32   
33 -class ProcessorPlugin(AuditorPlugin):
34 - def run(self, *args, **kwargs):
35 processor_info = {} 36 37 cpu_index = None 38 with open('/proc/cpuinfo') as fp: 39 for line in fp.read().splitlines(): 40 name_value = map(str.strip, str.split(line, ':', 1)) 41 if len(name_value) != 2: 42 continue 43 name, value = name_value 44 if name == 'processor': 45 cpu_index = value 46 if cpu_index not in processor_info: 47 processor_info[cpu_index] = {} 48 49 if cpu_index is None: 50 continue 51 52 if name == 'cpu MHz': 53 processor_info[cpu_index]['mhz'] = value 54 elif name == 'model name': 55 processor_info[cpu_index]['identifier'] = value 56 processor_info[cpu_index]['name_string'] = value 57 elif name == 'vendor_id': 58 processor_info[cpu_index]['vendor_identifier'] = value 59 60 return processor_info
61