ServerInfo

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

Bases: dict

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']
'amd64'
>>> r.server_info.jvm_vendor
'Oracle Corporation'
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.