ServerInfo

class tomcatmanager.models.ServerInfo(*args, **kwargs)

Discrete data about the Tomcat server.

This object is a dictionary of keys and values as returned from the Tomcat server. It also has properties for well-known values.

Usage:

>>> tomcat = getfixture('tomcat')
>>> r = tomcat.server_info()
>>> r.server_info['OS Architecture'] 
'...'
>>> r.server_info.jvm_vendor 
'...'
tomcat_version

The tomcat version string.

os_name

The operating system name.

os_version

The operating system version.

os_architecture

The operating system architecture.

jvm_version

The java virtual machine version string.

jvm_vendor

The java virtual machine vendor.