Last active
September 25, 2018 15:19
-
-
Save miticojo/0c2feb48ed0b604fbb9122693fdb2ea5 to your computer and use it in GitHub Desktop.
jboss module proto module
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| ## API ref EAP 6 https://docs.jboss.org/author/display/WFLY8/Management+API+reference | |
| ## API ref EAP 7 https://docs.jboss.org/author/display/WFLY10/Management+API+reference | |
| import sys | |
| import argparse | |
| import requests | |
| from requests.auth import HTTPDigestAuth | |
| import pprint | |
| import logging | |
| # import pprint | |
| # from tabulate import tabulate | |
| try: | |
| import http.client as http_client | |
| except ImportError: | |
| # Python 2 | |
| import httplib as http_client | |
| http_client.HTTPConnection.debuglevel = 0 | |
| # You must initialize logging, otherwise you'll not see debug output. | |
| logging.basicConfig() | |
| def my_safe_repr(object, context, maxlevels, level): | |
| typ = pprint._type(object) | |
| if typ is unicode: | |
| object = str(object) | |
| return pprint._safe_repr(object, context, maxlevels, level) | |
| class JBossInstance(object): | |
| def __init__(self, server, port, username, password, ssl=False): | |
| self.server = server | |
| self.port = port | |
| self.username = username | |
| self.password = password | |
| self._config = {} | |
| proto = 'http' | |
| if ssl: | |
| proto = 'https' | |
| self._uri = '{}://{}:{}'.format(proto, self.server, self.port) | |
| self._config = self._connect() | |
| #logging.debug(self._config) | |
| def _api_post(self, address=[], operation="read-resource", write_name=None, write_value=None, include_runtime=True, recursive=False): | |
| headers = {'Content-Type': 'application/json'} | |
| data = { | |
| "operation": operation, | |
| "include-runtime": include_runtime, | |
| "address": address, | |
| "json.pretty": 0, | |
| "recursive": recursive | |
| } | |
| if write_name is not None and write_value is not None: | |
| data["name"] = write_name | |
| data["value"] = write_value | |
| data["operation"] = "write-attribute" | |
| r = requests.post( | |
| url="{}/management".format(self._uri), | |
| headers=headers, | |
| json=data, | |
| auth=HTTPDigestAuth(self.username, self.password) | |
| ) | |
| if r.status_code != 200: | |
| if "failure-description" in r.json(): | |
| raise Exception(r.json()["failure-description"]) | |
| raise Exception("Error: JBoss error\n{}".format(r.json())) | |
| if "result" in r.json(): | |
| return r.json()["result"] | |
| if "outcome" in r.json(): | |
| return r.json() | |
| def _connect(self): | |
| return self._api_post(recursive=True) | |
| def _get_subsystem(self, subsystem, recursive=False): | |
| return self._api_post(address=[{"subsystem": subsystem}], recursive=recursive) | |
| def _get_subsystem_resource(self, subsystem, resource=None): | |
| return self._api_post(address=[{"subsystem": subsystem}, resource]) | |
| def set_subsystem_resource(self, subsystem, resource, name, value): | |
| return self._api_post( | |
| address=[{"subsystem": subsystem}, resource], | |
| operation="write-attribute", | |
| write_name=name, | |
| write_value=value | |
| ) | |
| def config(self): | |
| return self._config | |
| argp = argparse.ArgumentParser() | |
| argp.add_argument("-s", "--server", type=str, default='localhost', | |
| help='Provide JBoss EAP server hostname (default="localhost")'); | |
| argp.add_argument("-p", "--port", type=int, default=9990, | |
| help='Provide JBoss EAP server port (default=9990)'); | |
| argp.add_argument("-u", "--username", type=str, default='admin', | |
| help='Provide JBoss EAP server user (default="admin")'); | |
| argp.add_argument("-P", "--password", type=str, | |
| help='Provide JBoss EAP server password'); | |
| argp.add_argument('--debug', action='store_true', help='print debug messages to stderr') | |
| if __name__ == '__main__': | |
| if len(sys.argv) == 1: | |
| argp.print_help(sys.stderr) | |
| sys.exit(1) | |
| args = argp.parse_args() | |
| if args.debug: | |
| http_client.HTTPConnection.debuglevel = 1 | |
| logging.getLogger().setLevel(logging.DEBUG) | |
| requests_log = logging.getLogger("requests.packages.urllib3") | |
| requests_log.setLevel(logging.DEBUG) | |
| requests_log.propagate = True | |
| printer = pprint.PrettyPrinter() | |
| printer.format = my_safe_repr | |
| try: | |
| jb = JBossInstance(server=args.server, port=args.port, username=args.username, password=args.password) | |
| r = jb.set_subsystem_resource( | |
| subsystem="datasources", | |
| resource={"data-source":"ExampleDS"}, | |
| name="enabled", | |
| value=True | |
| ) | |
| print(r) | |
| except Exception as ex: | |
| sys.stderr.write(ex.message) | |
| sys.exit(2) | |
| sys.exit(0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "core-service": { | |
| "management": { | |
| "access": { | |
| "audit": { | |
| "file-handler": { | |
| "file": { | |
| "disabled-due-to-failure": False, | |
| "failure-count": 0, | |
| "formatter": "json-formatter", | |
| "max-failure-count": 10, | |
| "path": "audit-log.log", | |
| "relative-to": "jboss.server.data.dir" | |
| } | |
| }, | |
| "json-formatter": { | |
| "json-formatter": { | |
| "compact": False, | |
| "date-format": "yyyy-MM-dd HH:mm:ss", | |
| "date-separator": " - ", | |
| "escape-control-characters": False, | |
| "escape-new-line": False, | |
| "include-date": True | |
| } | |
| }, | |
| "logger": { | |
| "audit-log": { | |
| "enabled": False, | |
| "handler": { | |
| "file": {} | |
| }, | |
| "log-boot": True, | |
| "log-read-only": False | |
| } | |
| }, | |
| "syslog-handler": None | |
| }, | |
| "authorization": { | |
| "all-role-names": [ | |
| "Operator", | |
| "Maintainer", | |
| "Auditor", | |
| "Monitor", | |
| "Administrator", | |
| "SuperUser", | |
| "Deployer" | |
| ], | |
| "constraint": { | |
| "application-classification": { | |
| "type": { | |
| "core": { | |
| "classification": { | |
| "deployment": { | |
| "applies-to": { | |
| "/": { | |
| "address": "/", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "full-replace-deployment", | |
| "upload-deployment-stream", | |
| "upload-deployment-bytes", | |
| "upload-deployment-url" | |
| ] | |
| }, | |
| "/deployment-overlay=*": { | |
| "address": "/deployment-overlay=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/deployment=*": { | |
| "address": "/deployment=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": True | |
| } | |
| } | |
| }, | |
| "datasources": { | |
| "classification": { | |
| "data-source": { | |
| "applies-to": { | |
| "/deployment=*/subdeployment=*/subsystem=datasources/data-source=*": { | |
| "address": "/deployment=*/subdeployment=*/subsystem=datasources/data-source=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/deployment=*/subsystem=datasources/data-source=*": { | |
| "address": "/deployment=*/subsystem=datasources/data-source=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/subsystem=datasources/data-source=*": { | |
| "address": "/subsystem=datasources/data-source=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/subsystem=datasources/data-source=ExampleDS": { | |
| "address": "/subsystem=datasources/data-source=ExampleDS", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": False | |
| }, | |
| "jdbc-driver": { | |
| "applies-to": { | |
| "/subsystem=datasources/jdbc-driver=*": { | |
| "address": "/subsystem=datasources/jdbc-driver=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": False | |
| }, | |
| "xa-data-source": { | |
| "applies-to": { | |
| "/deployment=*/subdeployment=*/subsystem=datasources/xa-data-source=*": { | |
| "address": "/deployment=*/subdeployment=*/subsystem=datasources/xa-data-source=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/deployment=*/subsystem=datasources/xa-data-source=*": { | |
| "address": "/deployment=*/subsystem=datasources/xa-data-source=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/subsystem=datasources/xa-data-source=*": { | |
| "address": "/subsystem=datasources/xa-data-source=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": False | |
| } | |
| } | |
| }, | |
| "logging": { | |
| "classification": { | |
| "logger": { | |
| "applies-to": { | |
| "/subsystem=logging/logger=*": { | |
| "address": "/subsystem=logging/logger=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/subsystem=logging/logging-profile=*/logger=*": { | |
| "address": "/subsystem=logging/logging-profile=*/logger=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": False | |
| }, | |
| "logging-profile": { | |
| "applies-to": { | |
| "/subsystem=logging/logging-profile=*": { | |
| "address": "/subsystem=logging/logging-profile=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": False | |
| } | |
| } | |
| }, | |
| "mail": { | |
| "classification": { | |
| "mail-session": { | |
| "applies-to": { | |
| "/subsystem=mail/mail-session=*": { | |
| "address": "/subsystem=mail/mail-session=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": False | |
| } | |
| } | |
| }, | |
| "naming": { | |
| "classification": { | |
| "binding": { | |
| "applies-to": { | |
| "/subsystem=naming/binding=*": { | |
| "address": "/subsystem=naming/binding=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": False | |
| } | |
| } | |
| }, | |
| "resource-adapters": { | |
| "classification": { | |
| "resource-adapter": { | |
| "applies-to": { | |
| "/subsystem=resource-adapters/resource-adapter=*": { | |
| "address": "/subsystem=resource-adapters/resource-adapter=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": False | |
| } | |
| } | |
| }, | |
| "security": { | |
| "classification": { | |
| "security-domain": { | |
| "applies-to": { | |
| "/subsystem=security/security-domain=*": { | |
| "address": "/subsystem=security/security-domain=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-application": None, | |
| "default-application": False | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "sensitivity-classification": { | |
| "type": { | |
| "core": { | |
| "classification": { | |
| "access-control": { | |
| "applies-to": { | |
| "/core-service=management/access=authorization": { | |
| "address": "/core-service=management/access=authorization", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/subsystem=jmx": { | |
| "address": "/subsystem=jmx", | |
| "attributes": [ | |
| "non-core-mbean-sensitivity" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": True, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "credential": { | |
| "applies-to": { | |
| "/subsystem=datasources/data-source=*": { | |
| "address": "/subsystem=datasources/data-source=*", | |
| "attributes": [ | |
| "password", | |
| "user-name" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=datasources/xa-data-source=*": { | |
| "address": "/subsystem=datasources/xa-data-source=*", | |
| "attributes": [ | |
| "password", | |
| "recovery-password", | |
| "user-name", | |
| "recovery-username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/custom=*": { | |
| "address": "/subsystem=mail/mail-session=*/custom=*", | |
| "attributes": [ | |
| "password", | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/server=imap": { | |
| "address": "/subsystem=mail/mail-session=*/server=imap", | |
| "attributes": [ | |
| "password", | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/server=pop3": { | |
| "address": "/subsystem=mail/mail-session=*/server=pop3", | |
| "attributes": [ | |
| "password", | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/server=smtp": { | |
| "address": "/subsystem=mail/mail-session=*/server=smtp", | |
| "attributes": [ | |
| "password", | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=remoting/remote-outbound-connection=*": { | |
| "address": "/subsystem=remoting/remote-outbound-connection=*", | |
| "attributes": [ | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=resource-adapters/resource-adapter=*/connection-definitions=*": { | |
| "address": "/subsystem=resource-adapters/resource-adapter=*/connection-definitions=*", | |
| "attributes": [ | |
| "recovery-password", | |
| "recovery-username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=web/connector=*/configuration=ssl": { | |
| "address": "/subsystem=web/connector=*/configuration=ssl", | |
| "attributes": [ | |
| "password", | |
| "key-alias" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "domain-controller": { | |
| "applies-to": None, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| }, | |
| "domain-names": { | |
| "applies-to": None, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| }, | |
| "extensions": { | |
| "applies-to": { | |
| "/extension=*": { | |
| "address": "/extension=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| }, | |
| "jvm": { | |
| "applies-to": { | |
| "/core-service=platform-mbean/type=runtime": { | |
| "address": "/core-service=platform-mbean/type=runtime", | |
| "attributes": [ | |
| "library-path", | |
| "input-arguments", | |
| "class-path", | |
| "boot-class-path-supported", | |
| "boot-class-path" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| }, | |
| "management-interfaces": { | |
| "applies-to": { | |
| "/core-service=management/management-interface=http-interface": { | |
| "address": "/core-service=management/management-interface=http-interface", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/core-service=management/management-interface=native-interface": { | |
| "address": "/core-service=management/management-interface=native-interface", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/core-service=management/management-interface=native-remoting-interface": { | |
| "address": "/core-service=management/management-interface=native-remoting-interface", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| }, | |
| "module-loading": { | |
| "applies-to": { | |
| "/core-service=module-loading": { | |
| "address": "/core-service=module-loading", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| }, | |
| "patching": { | |
| "applies-to": { | |
| "/core-service=patching": { | |
| "address": "/core-service=patching", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/core-service=patching/addon=*": { | |
| "address": "/core-service=patching/addon=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/core-service=patching/layer=*": { | |
| "address": "/core-service=patching/layer=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| }, | |
| "read-whole-config": { | |
| "applies-to": { | |
| "/": { | |
| "address": "/", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "read-config-as-xml" | |
| ] | |
| }, | |
| "/deployment=*/subdeployment=*/subsystem=datasources": { | |
| "address": "/deployment=*/subdeployment=*/subsystem=datasources", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/deployment=*/subsystem=datasources": { | |
| "address": "/deployment=*/subsystem=datasources", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=datasources": { | |
| "address": "/subsystem=datasources", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=deployment-scanner": { | |
| "address": "/subsystem=deployment-scanner", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=ee": { | |
| "address": "/subsystem=ee", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=ejb3": { | |
| "address": "/subsystem=ejb3", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=infinispan": { | |
| "address": "/subsystem=infinispan", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=jaxrs": { | |
| "address": "/subsystem=jaxrs", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=jca": { | |
| "address": "/subsystem=jca", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=jdr": { | |
| "address": "/subsystem=jdr", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=jmx": { | |
| "address": "/subsystem=jmx", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=jpa": { | |
| "address": "/subsystem=jpa", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=jsf": { | |
| "address": "/subsystem=jsf", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=logging": { | |
| "address": "/subsystem=logging", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=mail": { | |
| "address": "/subsystem=mail", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=naming": { | |
| "address": "/subsystem=naming", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=pojo": { | |
| "address": "/subsystem=pojo", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=remoting": { | |
| "address": "/subsystem=remoting", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=resource-adapters": { | |
| "address": "/subsystem=resource-adapters", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=sar": { | |
| "address": "/subsystem=sar", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=security": { | |
| "address": "/subsystem=security", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=threads": { | |
| "address": "/subsystem=threads", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=transactions": { | |
| "address": "/subsystem=transactions", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=web": { | |
| "address": "/subsystem=web", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=webservices": { | |
| "address": "/subsystem=webservices", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| }, | |
| "/subsystem=weld": { | |
| "address": "/subsystem=weld", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "describe" | |
| ] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "security-domain": { | |
| "applies-to": { | |
| "/subsystem=security/security-domain=*": { | |
| "address": "/subsystem=security/security-domain=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": True, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "security-domain-ref": { | |
| "applies-to": { | |
| "/subsystem=datasources/data-source=*": { | |
| "address": "/subsystem=datasources/data-source=*", | |
| "attributes": [ | |
| "security-domain" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=datasources/xa-data-source=*": { | |
| "address": "/subsystem=datasources/xa-data-source=*", | |
| "attributes": [ | |
| "security-domain" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=ejb3": { | |
| "address": "/subsystem=ejb3", | |
| "attributes": [ | |
| "default-security-domain" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=resource-adapters/resource-adapter=*/connection-definitions=*": { | |
| "address": "/subsystem=resource-adapters/resource-adapter=*/connection-definitions=*", | |
| "attributes": [ | |
| "security-domain", | |
| "security-domain-and-application", | |
| "security-application", | |
| "recovery-security-domain" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": True, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "security-realm": { | |
| "applies-to": { | |
| "/core-service=management/security-realm=*": { | |
| "address": "/core-service=management/security-realm=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": True, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "security-realm-ref": { | |
| "applies-to": { | |
| "/core-service=management/management-interface=http-interface": { | |
| "address": "/core-service=management/management-interface=http-interface", | |
| "attributes": [ | |
| "security-realm" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/core-service=management/management-interface=native-interface": { | |
| "address": "/core-service=management/management-interface=native-interface", | |
| "attributes": [ | |
| "security-realm" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=remoting/connector=*": { | |
| "address": "/subsystem=remoting/connector=*", | |
| "attributes": [ | |
| "security-realm" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=remoting/remote-outbound-connection=*": { | |
| "address": "/subsystem=remoting/remote-outbound-connection=*", | |
| "attributes": [ | |
| "security-realm" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": True, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "security-vault": { | |
| "applies-to": { | |
| "/core-service=vault": { | |
| "address": "/core-service=vault", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "server-ssl": { | |
| "applies-to": None, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": True, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "service-container": { | |
| "applies-to": { | |
| "/core-service=service-container": { | |
| "address": "/core-service=service-container", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| }, | |
| "snapshots": { | |
| "applies-to": { | |
| "/": { | |
| "address": "/", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "list-snapshots", | |
| "delete-snapshot", | |
| "take-snapshot" | |
| ] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": False | |
| }, | |
| "socket-binding-ref": { | |
| "applies-to": { | |
| "/socket-binding-group=*/local-destination-outbound-socket-binding=*": { | |
| "address": "/socket-binding-group=*/local-destination-outbound-socket-binding=*", | |
| "attributes": [ | |
| "socket-binding-ref" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/server=imap": { | |
| "address": "/subsystem=mail/mail-session=*/server=imap", | |
| "attributes": [ | |
| "outbound-socket-binding-ref" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/server=pop3": { | |
| "address": "/subsystem=mail/mail-session=*/server=pop3", | |
| "attributes": [ | |
| "outbound-socket-binding-ref" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/server=smtp": { | |
| "address": "/subsystem=mail/mail-session=*/server=smtp", | |
| "attributes": [ | |
| "outbound-socket-binding-ref" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=remoting/connector=*": { | |
| "address": "/subsystem=remoting/connector=*", | |
| "attributes": [ | |
| "socket-binding" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=remoting/local-outbound-connection=*": { | |
| "address": "/subsystem=remoting/local-outbound-connection=*", | |
| "attributes": [ | |
| "outbound-socket-binding-ref" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=remoting/remote-outbound-connection=*": { | |
| "address": "/subsystem=remoting/remote-outbound-connection=*", | |
| "attributes": [ | |
| "outbound-socket-binding-ref" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=transactions": { | |
| "address": "/subsystem=transactions", | |
| "attributes": [ | |
| "socket-binding", | |
| "process-id-socket-binding", | |
| "status-socket-binding" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=web/connector=*": { | |
| "address": "/subsystem=web/connector=*", | |
| "attributes": [ | |
| "redirect-binding", | |
| "socket-binding", | |
| "proxy-binding" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": False | |
| }, | |
| "socket-config": { | |
| "applies-to": { | |
| "/": { | |
| "address": "/", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "resolve-internet-address" | |
| ] | |
| }, | |
| "/core-service=management/management-interface=http-interface": { | |
| "address": "/core-service=management/management-interface=http-interface", | |
| "attributes": [ | |
| "secure-port", | |
| "socket-binding", | |
| "port", | |
| "secure-socket-binding", | |
| "interface" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/core-service=management/management-interface=native-interface": { | |
| "address": "/core-service=management/management-interface=native-interface", | |
| "attributes": [ | |
| "socket-binding", | |
| "port", | |
| "interface" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/interface=*": { | |
| "address": "/interface=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/socket-binding-group=*": { | |
| "address": "/socket-binding-group=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/subsystem=transactions": { | |
| "address": "/subsystem=transactions", | |
| "attributes": [ | |
| "process-id-socket-max-ports" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| }, | |
| "system-property": { | |
| "applies-to": { | |
| "/": { | |
| "address": "/", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "resolve-expression" | |
| ] | |
| }, | |
| "/core-service=platform-mbean/type=runtime": { | |
| "address": "/core-service=platform-mbean/type=runtime", | |
| "attributes": [ | |
| "system-properties" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/system-property=*": { | |
| "address": "/system-property=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| } | |
| } | |
| }, | |
| "datasources": { | |
| "classification": { | |
| "data-source-security": { | |
| "applies-to": { | |
| "/subsystem=datasources/data-source=*": { | |
| "address": "/subsystem=datasources/data-source=*", | |
| "attributes": [ | |
| "security-domain", | |
| "password", | |
| "user-name" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=datasources/xa-data-source=*": { | |
| "address": "/subsystem=datasources/xa-data-source=*", | |
| "attributes": [ | |
| "security-domain", | |
| "password", | |
| "user-name" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| } | |
| } | |
| }, | |
| "jdr": { | |
| "classification": { | |
| "jdr": { | |
| "applies-to": { | |
| "/subsystem=jdr": { | |
| "address": "/subsystem=jdr", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "generate-jdr-report" | |
| ] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| } | |
| } | |
| }, | |
| "jmx": { | |
| "classification": { | |
| "jmx": { | |
| "applies-to": { | |
| "/subsystem=jmx": { | |
| "address": "/subsystem=jmx", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| } | |
| } | |
| }, | |
| "logging": { | |
| "classification": { | |
| "view-server-logs": { | |
| "applies-to": { | |
| "/subsystem=logging/log-file=*": { | |
| "address": "/subsystem=logging/log-file=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/subsystem=logging/logging-profile=*/log-file=*": { | |
| "address": "/subsystem=logging/logging-profile=*/log-file=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": False | |
| } | |
| } | |
| }, | |
| "mail": { | |
| "classification": { | |
| "mail-server-security": { | |
| "applies-to": { | |
| "/subsystem=mail/mail-session=*/custom=*": { | |
| "address": "/subsystem=mail/mail-session=*/custom=*", | |
| "attributes": [ | |
| "password", | |
| "tls", | |
| "ssl", | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/server=imap": { | |
| "address": "/subsystem=mail/mail-session=*/server=imap", | |
| "attributes": [ | |
| "password", | |
| "tls", | |
| "ssl", | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/server=pop3": { | |
| "address": "/subsystem=mail/mail-session=*/server=pop3", | |
| "attributes": [ | |
| "password", | |
| "tls", | |
| "ssl", | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=mail/mail-session=*/server=smtp": { | |
| "address": "/subsystem=mail/mail-session=*/server=smtp", | |
| "attributes": [ | |
| "password", | |
| "tls", | |
| "ssl", | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": True | |
| } | |
| } | |
| }, | |
| "naming": { | |
| "classification": { | |
| "jndi-view": { | |
| "applies-to": { | |
| "/subsystem=naming": { | |
| "address": "/subsystem=naming", | |
| "attributes": [], | |
| "entire-resource": False, | |
| "operations": [ | |
| "jndi-view" | |
| ] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "naming-binding": { | |
| "applies-to": { | |
| "/subsystem=naming/binding=*": { | |
| "address": "/subsystem=naming/binding=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": False | |
| } | |
| } | |
| }, | |
| "remoting": { | |
| "classification": { | |
| "remoting-security": { | |
| "applies-to": { | |
| "/subsystem=remoting/connector=*": { | |
| "address": "/subsystem=remoting/connector=*", | |
| "attributes": [ | |
| "server-name", | |
| "authentication-provider", | |
| "security-realm", | |
| "sasl-protocol" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| }, | |
| "/subsystem=remoting/connector=*/security=sasl": { | |
| "address": "/subsystem=remoting/connector=*/security=sasl", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| }, | |
| "/subsystem=remoting/remote-outbound-connection=*": { | |
| "address": "/subsystem=remoting/remote-outbound-connection=*", | |
| "attributes": [ | |
| "security-realm", | |
| "username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| } | |
| } | |
| }, | |
| "resource-adapters": { | |
| "classification": { | |
| "resource-adapter-security": { | |
| "applies-to": { | |
| "/subsystem=resource-adapters/resource-adapter=*/connection-definitions=*": { | |
| "address": "/subsystem=resource-adapters/resource-adapter=*/connection-definitions=*", | |
| "attributes": [ | |
| "security-domain", | |
| "security-domain-and-application", | |
| "recovery-password", | |
| "security-application", | |
| "recovery-security-domain", | |
| "recovery-username" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| } | |
| } | |
| }, | |
| "security": { | |
| "classification": { | |
| "misc-security": { | |
| "applies-to": { | |
| "/subsystem=security": { | |
| "address": "/subsystem=security", | |
| "attributes": [ | |
| "deep-copy-subject-mode" | |
| ], | |
| "entire-resource": False, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| } | |
| } | |
| }, | |
| "web": { | |
| "classification": { | |
| "web-access-log": { | |
| "applies-to": { | |
| "/subsystem=web/virtual-server=*/configuration=access-log": { | |
| "address": "/subsystem=web/virtual-server=*/configuration=access-log", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": False | |
| }, | |
| "web-connector": { | |
| "applies-to": { | |
| "/subsystem=web/connector=*": { | |
| "address": "/subsystem=web/connector=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": False | |
| }, | |
| "web-ssl": { | |
| "applies-to": { | |
| "/subsystem=web/connector=*/configuration=ssl": { | |
| "address": "/subsystem=web/connector=*/configuration=ssl", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "web-sso": { | |
| "applies-to": { | |
| "/subsystem=web/virtual-server=*/configuration=sso": { | |
| "address": "/subsystem=web/virtual-server=*/configuration=sso", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| }, | |
| "web-valve": { | |
| "applies-to": { | |
| "/subsystem=web/valve=*": { | |
| "address": "/subsystem=web/valve=*", | |
| "attributes": [], | |
| "entire-resource": True, | |
| "operations": [] | |
| } | |
| }, | |
| "configured-requires-addressable": None, | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-addressable": False, | |
| "default-requires-read": False, | |
| "default-requires-write": False | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "vault-expression": { | |
| "configured-requires-read": None, | |
| "configured-requires-write": None, | |
| "default-requires-read": True, | |
| "default-requires-write": True | |
| } | |
| }, | |
| "permission-combination-policy": "permissive", | |
| "provider": "simple", | |
| "role-mapping": { | |
| "SuperUser": { | |
| "exclude": None, | |
| "include": { | |
| "user-$local": { | |
| "name": "$local", | |
| "realm": None, | |
| "type": "USER" | |
| } | |
| }, | |
| "include-all": False | |
| } | |
| }, | |
| "standard-role-names": [ | |
| "Monitor", | |
| "Operator", | |
| "Maintainer", | |
| "Deployer", | |
| "Administrator", | |
| "Auditor", | |
| "SuperUser" | |
| ] | |
| } | |
| }, | |
| "ldap-connection": None, | |
| "management-interface": { | |
| "http-interface": { | |
| "console-enabled": True, | |
| "interface": None, | |
| "port": None, | |
| "secure-port": None, | |
| "secure-socket-binding": None, | |
| "security-realm": "ManagementRealm", | |
| "socket-binding": "management-http" | |
| }, | |
| "native-interface": { | |
| "interface": None, | |
| "port": None, | |
| "sasl-protocol": "remote", | |
| "security-realm": "ManagementRealm", | |
| "server-name": None, | |
| "socket-binding": "management-native" | |
| } | |
| }, | |
| "security-realm": { | |
| "ApplicationRealm": { | |
| "authentication": { | |
| "local": { | |
| "allowed-users": "*", | |
| "default-user": "$local", | |
| "skip-group-loading": True | |
| }, | |
| "properties": { | |
| "path": "application-users.properties", | |
| "plain-text": False, | |
| "relative-to": "jboss.server.config.dir" | |
| } | |
| }, | |
| "authorization": { | |
| "properties": { | |
| "path": "application-roles.properties", | |
| "relative-to": "jboss.server.config.dir" | |
| } | |
| }, | |
| "map-groups-to-roles": True, | |
| "plug-in": None, | |
| "server-identity": None | |
| }, | |
| "ManagementRealm": { | |
| "authentication": { | |
| "local": { | |
| "allowed-users": None, | |
| "default-user": "$local", | |
| "skip-group-loading": True | |
| }, | |
| "properties": { | |
| "path": "mgmt-users.properties", | |
| "plain-text": False, | |
| "relative-to": "jboss.server.config.dir" | |
| } | |
| }, | |
| "authorization": { | |
| "properties": { | |
| "path": "mgmt-groups.properties", | |
| "relative-to": "jboss.server.config.dir" | |
| } | |
| }, | |
| "map-groups-to-roles": False, | |
| "plug-in": None, | |
| "server-identity": None | |
| } | |
| }, | |
| "service": { | |
| "management-operations": { | |
| "active-operation": { | |
| "211885959": { | |
| "access-mechanism": "undefined", | |
| "address": [], | |
| "caller-thread": "HttpManagementService-threads - 28", | |
| "cancelled": False, | |
| "exclusive-running-time": -1, | |
| "execution-status": "executing", | |
| "operation": "read-resource", | |
| "running-time": 6464900 | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "module-loading": { | |
| "module-roots": [ | |
| "/app/MDW_JB_PROJ01/modules", | |
| "/app/MDW_JB_PROJ01/modules/system/layers/base/.overlays/layer-base-jboss-eap-6.4.13.CP", | |
| "/app/MDW_JB_PROJ01/modules/system/layers/base" | |
| ] | |
| }, | |
| "patching": { | |
| "addon": None, | |
| "cumulative-patch-id": "jboss-eap-6.4.13.CP", | |
| "layer": { | |
| "base": { | |
| "cumulative-patch-id": "layer-base-jboss-eap-6.4.13.CP", | |
| "patches": [] | |
| } | |
| }, | |
| "patches": [], | |
| "version": "6.4.13.GA" | |
| }, | |
| "platform-mbean": { | |
| "type": { | |
| "buffer-pool": { | |
| "name": { | |
| "direct": { | |
| "count": 7, | |
| "memory-used": 2113637, | |
| "name": "direct", | |
| "object-name": "java.nio:type=BufferPool,name=direct", | |
| "total-capacity": 2113637 | |
| }, | |
| "mapped": { | |
| "count": 0, | |
| "memory-used": 0, | |
| "name": "mapped", | |
| "object-name": "java.nio:type=BufferPool,name=mapped", | |
| "total-capacity": 0 | |
| } | |
| } | |
| }, | |
| "class-loading": { | |
| "loaded-class-count": 7900, | |
| "object-name": "java.lang:type=ClassLoading", | |
| "total-loaded-class-count": 7901, | |
| "unloaded-class-count": 1, | |
| "verbose": False | |
| }, | |
| "compilation": { | |
| "compilation-time-monitoring-supported": True, | |
| "name": "HotSpot 64-Bit Tiered Compilers", | |
| "object-name": "java.lang:type=Compilation", | |
| "total-compilation-time": 16603 | |
| }, | |
| "garbage-collector": { | |
| "name": { | |
| "PS_MarkSweep": { | |
| "collection-count": 2, | |
| "collection-time": 102, | |
| "memory-pool-names": [ | |
| "PS_Eden_Space", | |
| "PS_Survivor_Space", | |
| "PS_Old_Gen" | |
| ], | |
| "name": "PS_MarkSweep", | |
| "object-name": "java.lang:type=GarbageCollector,name=\"PS MarkSweep\"", | |
| "valid": True | |
| }, | |
| "PS_Scavenge": { | |
| "collection-count": 7, | |
| "collection-time": 107, | |
| "memory-pool-names": [ | |
| "PS_Eden_Space", | |
| "PS_Survivor_Space" | |
| ], | |
| "name": "PS_Scavenge", | |
| "object-name": "java.lang:type=GarbageCollector,name=\"PS Scavenge\"", | |
| "valid": True | |
| } | |
| } | |
| }, | |
| "memory": { | |
| "heap-memory-usage": { | |
| "committed": 1345847296, | |
| "init": 1367343104, | |
| "max": 1345847296, | |
| "used": 68708560 | |
| }, | |
| "non-heap-memory-usage": { | |
| "committed": 71958528, | |
| "init": 2555904, | |
| "max": -1, | |
| "used": 64534472 | |
| }, | |
| "object-name": "java.lang:type=Memory", | |
| "object-pending-finalization-count": 0, | |
| "verbose": True | |
| }, | |
| "memory-manager": { | |
| "name": { | |
| "CodeCacheManager": { | |
| "memory-pool-names": [ | |
| "Code_Cache" | |
| ], | |
| "name": "CodeCacheManager", | |
| "object-name": "java.lang:type=MemoryManager,name=CodeCacheManager", | |
| "valid": True | |
| }, | |
| "Metaspace_Manager": { | |
| "memory-pool-names": [ | |
| "Metaspace", | |
| "Compressed_Class_Space" | |
| ], | |
| "name": "Metaspace_Manager", | |
| "object-name": "java.lang:type=MemoryManager,name=\"Metaspace Manager\"", | |
| "valid": True | |
| }, | |
| "PS_MarkSweep": { | |
| "memory-pool-names": [ | |
| "PS_Eden_Space", | |
| "PS_Survivor_Space", | |
| "PS_Old_Gen" | |
| ], | |
| "name": "PS_MarkSweep", | |
| "object-name": "java.lang:type=MemoryManager,name=\"PS MarkSweep\"", | |
| "valid": True | |
| }, | |
| "PS_Scavenge": { | |
| "memory-pool-names": [ | |
| "PS_Eden_Space", | |
| "PS_Survivor_Space" | |
| ], | |
| "name": "PS_Scavenge", | |
| "object-name": "java.lang:type=MemoryManager,name=\"PS Scavenge\"", | |
| "valid": True | |
| } | |
| } | |
| }, | |
| "memory-pool": { | |
| "name": { | |
| "Code_Cache": { | |
| "collection-usage": None, | |
| "collection-usage-threshold": None, | |
| "collection-usage-threshold-count": None, | |
| "collection-usage-threshold-exceeded": None, | |
| "collection-usage-threshold-supported": False, | |
| "memory-manager-names": [ | |
| "CodeCacheManager" | |
| ], | |
| "name": "Code_Cache", | |
| "object-name": "java.lang:type=MemoryPool,name=\"Code Cache\"", | |
| "peak-usage": { | |
| "committed": 15335424, | |
| "init": 2555904, | |
| "max": 251658240, | |
| "used": 15175680 | |
| }, | |
| "type": "NON_HEAP", | |
| "usage": { | |
| "committed": 15335424, | |
| "init": 2555904, | |
| "max": 251658240, | |
| "used": 14740864 | |
| }, | |
| "usage-threshold": 0, | |
| "usage-threshold-count": 0, | |
| "usage-threshold-exceeded": False, | |
| "usage-threshold-supported": True, | |
| "valid": True | |
| }, | |
| "Compressed_Class_Space": { | |
| "collection-usage": None, | |
| "collection-usage-threshold": None, | |
| "collection-usage-threshold-count": None, | |
| "collection-usage-threshold-exceeded": None, | |
| "collection-usage-threshold-supported": False, | |
| "memory-manager-names": [ | |
| "Metaspace_Manager" | |
| ], | |
| "name": "Compressed_Class_Space", | |
| "object-name": "java.lang:type=MemoryPool,name=\"Compressed Class Space\"", | |
| "peak-usage": { | |
| "committed": 6946816, | |
| "init": 0, | |
| "max": 1073741824, | |
| "used": 5251688 | |
| }, | |
| "type": "NON_HEAP", | |
| "usage": { | |
| "committed": 6946816, | |
| "init": 0, | |
| "max": 1073741824, | |
| "used": 5251688 | |
| }, | |
| "usage-threshold": 0, | |
| "usage-threshold-count": 0, | |
| "usage-threshold-exceeded": False, | |
| "usage-threshold-supported": True, | |
| "valid": True | |
| }, | |
| "Metaspace": { | |
| "collection-usage": None, | |
| "collection-usage-threshold": None, | |
| "collection-usage-threshold-count": None, | |
| "collection-usage-threshold-exceeded": None, | |
| "collection-usage-threshold-supported": False, | |
| "memory-manager-names": [ | |
| "Metaspace_Manager" | |
| ], | |
| "name": "Metaspace", | |
| "object-name": "java.lang:type=MemoryPool,name=Metaspace", | |
| "peak-usage": { | |
| "committed": 49676288, | |
| "init": 0, | |
| "max": -1, | |
| "used": 44529192 | |
| }, | |
| "type": "NON_HEAP", | |
| "usage": { | |
| "committed": 49676288, | |
| "init": 0, | |
| "max": -1, | |
| "used": 44529192 | |
| }, | |
| "usage-threshold": 0, | |
| "usage-threshold-count": 0, | |
| "usage-threshold-exceeded": False, | |
| "usage-threshold-supported": True, | |
| "valid": True | |
| }, | |
| "PS_Eden_Space": { | |
| "collection-usage": { | |
| "committed": 412614656, | |
| "init": 342360064, | |
| "max": 413138944, | |
| "used": 0 | |
| }, | |
| "collection-usage-threshold": 0, | |
| "collection-usage-threshold-count": 0, | |
| "collection-usage-threshold-exceeded": False, | |
| "collection-usage-threshold-supported": True, | |
| "memory-manager-names": [ | |
| "PS_MarkSweep", | |
| "PS_Scavenge" | |
| ], | |
| "name": "PS_Eden_Space", | |
| "object-name": "java.lang:type=MemoryPool,name=\"PS Eden Space\"", | |
| "peak-usage": { | |
| "committed": 412614656, | |
| "init": 342360064, | |
| "max": 413138944, | |
| "used": 412614656 | |
| }, | |
| "type": "HEAP", | |
| "usage": { | |
| "committed": 412614656, | |
| "init": 342360064, | |
| "max": 413138944, | |
| "used": 25503304 | |
| }, | |
| "usage-threshold": None, | |
| "usage-threshold-count": None, | |
| "usage-threshold-exceeded": None, | |
| "usage-threshold-supported": False, | |
| "valid": True | |
| }, | |
| "PS_Old_Gen": { | |
| "collection-usage": { | |
| "committed": 911736832, | |
| "init": 911736832, | |
| "max": 911736832, | |
| "used": 25059384 | |
| }, | |
| "collection-usage-threshold": 0, | |
| "collection-usage-threshold-count": 0, | |
| "collection-usage-threshold-exceeded": False, | |
| "collection-usage-threshold-supported": True, | |
| "memory-manager-names": [ | |
| "PS_MarkSweep" | |
| ], | |
| "name": "PS_Old_Gen", | |
| "object-name": "java.lang:type=MemoryPool,name=\"PS Old Gen\"", | |
| "peak-usage": { | |
| "committed": 911736832, | |
| "init": 911736832, | |
| "max": 911736832, | |
| "used": 25083960 | |
| }, | |
| "type": "HEAP", | |
| "usage": { | |
| "committed": 911736832, | |
| "init": 911736832, | |
| "max": 911736832, | |
| "used": 25083960 | |
| }, | |
| "usage-threshold": 0, | |
| "usage-threshold-count": 0, | |
| "usage-threshold-exceeded": False, | |
| "usage-threshold-supported": True, | |
| "valid": True | |
| }, | |
| "PS_Survivor_Space": { | |
| "collection-usage": { | |
| "committed": 21495808, | |
| "init": 56623104, | |
| "max": 21495808, | |
| "used": 15570992 | |
| }, | |
| "collection-usage-threshold": 0, | |
| "collection-usage-threshold-count": 0, | |
| "collection-usage-threshold-exceeded": False, | |
| "collection-usage-threshold-supported": True, | |
| "memory-manager-names": [ | |
| "PS_MarkSweep", | |
| "PS_Scavenge" | |
| ], | |
| "name": "PS_Survivor_Space", | |
| "object-name": "java.lang:type=MemoryPool,name=\"PS Survivor Space\"", | |
| "peak-usage": { | |
| "committed": 56623104, | |
| "init": 56623104, | |
| "max": 56623104, | |
| "used": 19031032 | |
| }, | |
| "type": "HEAP", | |
| "usage": { | |
| "committed": 21495808, | |
| "init": 56623104, | |
| "max": 21495808, | |
| "used": 15570992 | |
| }, | |
| "usage-threshold": None, | |
| "usage-threshold-count": None, | |
| "usage-threshold-exceeded": None, | |
| "usage-threshold-supported": False, | |
| "valid": True | |
| } | |
| } | |
| }, | |
| "operating-system": { | |
| "arch": "amd64", | |
| "available-processors": 4, | |
| "name": "Linux", | |
| "object-name": "java.lang:type=OperatingSystem", | |
| "system-load-average": 0.07, | |
| "version": "4.9.87-linuxkit-aufs" | |
| }, | |
| "runtime": { | |
| "boot-class-path": "/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/resources.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/rt.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/jsse.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/jce.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/charsets.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/jfr.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/classes", | |
| "boot-class-path-supported": True, | |
| "class-path": "/app/MDW_JB_PROJ01/jboss-modules.jar", | |
| "input-arguments": [ | |
| "-D[Standalone]", | |
| "-XX:+UseCompressedOops", | |
| "-verbose:gc", | |
| "-Xloggc:/app/MDW_JB_PROJ01/standalone/log/gc.log", | |
| "-XX:+PrintGCDetails", | |
| "-XX:+PrintGCDateStamps", | |
| "-XX:+UseGCLogFileRotation", | |
| "-XX:NumberOfGCLogFiles=5", | |
| "-XX:GCLogFileSize=3M", | |
| "-XX:-TraceClassUnloading", | |
| "-Xms1303m", | |
| "-Xmx1303m", | |
| "-XX:MaxPermSize=256m", | |
| "-Djava.net.preferIPv4Stack=true", | |
| "-Djboss.modules.system.pkgs=org.jboss.byteman", | |
| "-Djava.awt.headless=true", | |
| "-Djboss.modules.policy-permissions=true", | |
| "-Dorg.jboss.boot.log.file=/app/MDW_JB_PROJ01/standalone/log/server.log", | |
| "-Dlogging.configuration=file:/app/MDW_JB_PROJ01/standalone/configuration/logging.properties" | |
| ], | |
| "library-path": "/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib", | |
| "management-spec-version": "1.2", | |
| "name": "89@c949722ad52f", | |
| "object-name": "java.lang:type=Runtime", | |
| "spec-name": "Java Virtual Machine Specification", | |
| "spec-vendor": "Oracle Corporation", | |
| "spec-version": "1.8", | |
| "start-time": 1522831590267, | |
| "system-properties": { | |
| "[Standalone]": "", | |
| "awt.toolkit": "sun.awt.X11.XToolkit", | |
| "catalina.home": "/app/MDW_JB_PROJ01/standalone/tmp", | |
| "file.encoding": "ANSI_X3.4-1968", | |
| "file.encoding.pkg": "sun.io", | |
| "file.separator": "/", | |
| "java.awt.graphicsenv": "sun.awt.X11GraphicsEnvironment", | |
| "java.awt.headless": "true", | |
| "java.awt.printerjob": "sun.print.PSPrinterJob", | |
| "java.class.path": "/app/MDW_JB_PROJ01/jboss-modules.jar", | |
| "java.class.version": "52.0", | |
| "java.endorsed.dirs": "/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/endorsed", | |
| "java.ext.dirs": "/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/ext:/usr/java/packages/lib/ext", | |
| "java.home": "/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre", | |
| "java.io.tmpdir": "/tmp", | |
| "java.library.path": "/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib", | |
| "java.naming.factory.url.pkgs": "org.jboss.as.naming.interfaces:org.jboss.ejb.client.naming", | |
| "java.net.preferIPv4Stack": "true", | |
| "java.runtime.name": "OpenJDK Runtime Environment", | |
| "java.runtime.version": "1.8.0_161-b14", | |
| "java.specification.name": "Java Platform API Specification", | |
| "java.specification.vendor": "Oracle Corporation", | |
| "java.specification.version": "1.8", | |
| "java.util.logging.manager": "org.jboss.logmanager.LogManager", | |
| "java.vendor": "Oracle Corporation", | |
| "java.vendor.url": "http://java.oracle.com/", | |
| "java.vendor.url.bug": "http://bugreport.sun.com/bugreport/", | |
| "java.version": "1.8.0_161", | |
| "java.vm.info": "mixed mode", | |
| "java.vm.name": "OpenJDK 64-Bit Server VM", | |
| "java.vm.specification.name": "Java Virtual Machine Specification", | |
| "java.vm.specification.vendor": "Oracle Corporation", | |
| "java.vm.specification.version": "1.8", | |
| "java.vm.vendor": "Oracle Corporation", | |
| "java.vm.version": "25.161-b14", | |
| "javax.management.builder.initial": "org.jboss.as.jmx.PluggableMBeanServerBuilder", | |
| "javax.xml.datatype.DatatypeFactory": "__redirected.__DatatypeFactory", | |
| "javax.xml.parsers.DocumentBuilderFactory": "__redirected.__DocumentBuilderFactory", | |
| "javax.xml.parsers.SAXParserFactory": "__redirected.__SAXParserFactory", | |
| "javax.xml.stream.XMLEventFactory": "__redirected.__XMLEventFactory", | |
| "javax.xml.stream.XMLInputFactory": "__redirected.__XMLInputFactory", | |
| "javax.xml.stream.XMLOutputFactory": "__redirected.__XMLOutputFactory", | |
| "javax.xml.transform.TransformerFactory": "__redirected.__TransformerFactory", | |
| "javax.xml.validation.SchemaFactory:http://www.w3.org/2001/XMLSchema": "__redirected.__SchemaFactory", | |
| "javax.xml.xpath.XPathFactory:http://java.sun.com/jaxp/xpath/dom": "__redirected.__XPathFactory", | |
| "jboss.home.dir": "/app/MDW_JB_PROJ01", | |
| "jboss.host.name": "c949722ad52f", | |
| "jboss.modules.dir": "/app/MDW_JB_PROJ01/modules", | |
| "jboss.modules.policy-permissions": "true", | |
| "jboss.modules.system.pkgs": "org.jboss.byteman", | |
| "jboss.node.name": "c949722ad52f", | |
| "jboss.qualified.host.name": "c949722ad52f", | |
| "jboss.server.base.dir": "/app/MDW_JB_PROJ01/standalone", | |
| "jboss.server.config.dir": "/app/MDW_JB_PROJ01/standalone/configuration", | |
| "jboss.server.data.dir": "/app/MDW_JB_PROJ01/standalone/data", | |
| "jboss.server.deploy.dir": "/app/MDW_JB_PROJ01/standalone/data/content", | |
| "jboss.server.log.dir": "/app/MDW_JB_PROJ01/standalone/log", | |
| "jboss.server.name": "c949722ad52f", | |
| "jboss.server.persist.config": "true", | |
| "jboss.server.temp.dir": "/app/MDW_JB_PROJ01/standalone/tmp", | |
| "line.separator": "\n", | |
| "logging.configuration": "file:/app/MDW_JB_PROJ01/standalone/configuration/logging.properties", | |
| "module.path": "/app/MDW_JB_PROJ01/modules", | |
| "org.apache.xml.security.ignoreLineBreaks": "true", | |
| "org.jboss.boot.log.file": "/app/MDW_JB_PROJ01/standalone/log/server.log", | |
| "org.jboss.resolver.warning": "true", | |
| "org.jboss.security.context.ThreadLocal": "true", | |
| "org.xml.sax.driver": "__redirected.__XMLReaderFactory", | |
| "os.arch": "amd64", | |
| "os.name": "Linux", | |
| "os.version": "4.9.87-linuxkit-aufs", | |
| "path.separator": ":", | |
| "sun.arch.data.model": "64", | |
| "sun.boot.class.path": "/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/resources.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/rt.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/jsse.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/jce.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/charsets.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/jfr.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/classes", | |
| "sun.boot.library.path": "/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/amd64", | |
| "sun.cpu.endian": "little", | |
| "sun.cpu.isalist": "", | |
| "sun.io.unicode.encoding": "UnicodeLittle", | |
| "sun.java.command": "/app/MDW_JB_PROJ01/jboss-modules.jar -mp /app/MDW_JB_PROJ01/modules -jaxpmodule javax.xml.jaxp-provider org.jboss.as.standalone -Djboss.home.dir=/app/MDW_JB_PROJ01 -Djboss.server.base.dir=/app/MDW_JB_PROJ01/standalone", | |
| "sun.java.launcher": "SUN_STANDARD", | |
| "sun.jnu.encoding": "ANSI_X3.4-1968", | |
| "sun.management.compiler": "HotSpot 64-Bit Tiered Compilers", | |
| "sun.nio.ch.bugLevel": "", | |
| "sun.os.patch.level": "unknown", | |
| "user.country": "US", | |
| "user.dir": "/", | |
| "user.home": "/root", | |
| "user.language": "en", | |
| "user.name": "root", | |
| "user.timezone": "America/New_York" | |
| }, | |
| "uptime": 19565106, | |
| "vm-name": "OpenJDK 64-Bit Server VM", | |
| "vm-vendor": "Oracle Corporation", | |
| "vm-version": "25.161-b14" | |
| }, | |
| "threading": { | |
| "all-thread-ids": [ | |
| 240, | |
| 212, | |
| 211, | |
| 210, | |
| 209, | |
| 207, | |
| 205, | |
| 204, | |
| 203, | |
| 201, | |
| 200, | |
| 199, | |
| 198, | |
| 197, | |
| 196, | |
| 195, | |
| 193, | |
| 194, | |
| 191, | |
| 189, | |
| 190, | |
| 181, | |
| 180, | |
| 162, | |
| 161, | |
| 160, | |
| 148, | |
| 134, | |
| 108, | |
| 88, | |
| 87, | |
| 22, | |
| 20, | |
| 19, | |
| 18, | |
| 17, | |
| 16, | |
| 15, | |
| 14, | |
| 13, | |
| 9, | |
| 4, | |
| 3, | |
| 2 | |
| ], | |
| "current-thread-cpu-time": 331168193, | |
| "current-thread-cpu-time-supported": True, | |
| "current-thread-user-time": 330000000, | |
| "daemon-thread-count": 14, | |
| "object-monitor-usage-supported": True, | |
| "object-name": "java.lang:type=Threading", | |
| "peak-thread-count": 97, | |
| "synchronizer-usage-supported": True, | |
| "thread-contention-monitoring-enabled": False, | |
| "thread-contention-monitoring-supported": True, | |
| "thread-count": 44, | |
| "thread-cpu-time-enabled": True, | |
| "thread-cpu-time-supported": True, | |
| "total-started-thread-count": 231 | |
| } | |
| } | |
| }, | |
| "server-environment": { | |
| "base-dir": "/app/MDW_JB_PROJ01/standalone", | |
| "config-dir": "/app/MDW_JB_PROJ01/standalone/configuration", | |
| "config-file": "/app/MDW_JB_PROJ01/standalone/configuration/standalone.xml", | |
| "content-dir": "/app/MDW_JB_PROJ01/standalone/data/content", | |
| "data-dir": "/app/MDW_JB_PROJ01/standalone/data", | |
| "deploy-dir": "/app/MDW_JB_PROJ01/standalone/data/content", | |
| "ext-dirs": [ | |
| "/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre/lib/ext", | |
| "/usr/java/packages/lib/ext" | |
| ], | |
| "home-dir": "/app/MDW_JB_PROJ01", | |
| "host-name": "c949722ad52f", | |
| "initial-running-mode": "NORMAL", | |
| "launch-type": "STANDALONE", | |
| "log-dir": "/app/MDW_JB_PROJ01/standalone/log", | |
| "modules-dir": "/app/MDW_JB_PROJ01/modules", | |
| "node-name": "c949722ad52f", | |
| "qualified-host-name": "c949722ad52f", | |
| "server-name": "c949722ad52f", | |
| "temp-dir": "/app/MDW_JB_PROJ01/standalone/tmp" | |
| }, | |
| "service-container": {} | |
| }, | |
| "deployment": None, | |
| "deployment-overlay": None, | |
| "extension": { | |
| "org.jboss.as.clustering.infinispan": { | |
| "module": "org.jboss.as.clustering.infinispan", | |
| "subsystem": { | |
| "infinispan": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 6, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:infinispan:1.0", | |
| "urn:jboss:domain:infinispan:1.1", | |
| "urn:jboss:domain:infinispan:1.2", | |
| "urn:jboss:domain:infinispan:1.3", | |
| "urn:jboss:domain:infinispan:1.4", | |
| "urn:jboss:domain:infinispan:1.5" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.connector": { | |
| "module": "org.jboss.as.connector", | |
| "subsystem": { | |
| "datasources": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 3, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:datasources:1.0", | |
| "urn:jboss:domain:datasources:1.1", | |
| "urn:jboss:domain:datasources:1.2" | |
| ] | |
| }, | |
| "jca": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 2, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:jca:1.0", | |
| "urn:jboss:domain:jca:1.1" | |
| ] | |
| }, | |
| "resource-adapters": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 3, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:resource-adapters:1.0", | |
| "urn:jboss:domain:resource-adapters:1.1" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.deployment-scanner": { | |
| "module": "org.jboss.as.deployment-scanner", | |
| "subsystem": { | |
| "deployment-scanner": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 0, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:deployment-scanner:1.0", | |
| "urn:jboss:domain:deployment-scanner:1.1" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.ee": { | |
| "module": "org.jboss.as.ee", | |
| "subsystem": { | |
| "ee": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 1, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:ee:1.0", | |
| "urn:jboss:domain:ee:1.1", | |
| "urn:jboss:domain:ee:1.2" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.ejb3": { | |
| "module": "org.jboss.as.ejb3", | |
| "subsystem": { | |
| "ejb3": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 3, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:ejb3:1.0", | |
| "urn:jboss:domain:ejb3:1.1", | |
| "urn:jboss:domain:ejb3:1.2", | |
| "urn:jboss:domain:ejb3:1.3", | |
| "urn:jboss:domain:ejb3:1.4", | |
| "urn:jboss:domain:ejb3:1.5" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.jaxrs": { | |
| "module": "org.jboss.as.jaxrs", | |
| "subsystem": { | |
| "jaxrs": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 0, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:jaxrs:1.0" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.jdr": { | |
| "module": "org.jboss.as.jdr", | |
| "subsystem": { | |
| "jdr": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 2, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:jdr:1.0" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.jmx": { | |
| "module": "org.jboss.as.jmx", | |
| "subsystem": { | |
| "jmx": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 2, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:jmx:1.0", | |
| "urn:jboss:domain:jmx:1.1", | |
| "urn:jboss:domain:jmx:1.2", | |
| "urn:jboss:domain:jmx:1.3" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.jpa": { | |
| "module": "org.jboss.as.jpa", | |
| "subsystem": { | |
| "jpa": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 2, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:jpa:1.1", | |
| "urn:jboss:domain:jpa:1.0" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.jsf": { | |
| "module": "org.jboss.as.jsf", | |
| "subsystem": { | |
| "jsf": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 0, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:jsf:1.0" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.logging": { | |
| "module": "org.jboss.as.logging", | |
| "subsystem": { | |
| "logging": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 5, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:logging:1.0", | |
| "urn:jboss:domain:logging:1.1", | |
| "urn:jboss:domain:logging:1.2", | |
| "urn:jboss:domain:logging:1.3", | |
| "urn:jboss:domain:logging:1.4", | |
| "urn:jboss:domain:logging:1.5" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.mail": { | |
| "module": "org.jboss.as.mail", | |
| "subsystem": { | |
| "mail": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 3, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:mail:1.0", | |
| "urn:jboss:domain:mail:1.1", | |
| "urn:jboss:domain:mail:1.2" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.naming": { | |
| "module": "org.jboss.as.naming", | |
| "subsystem": { | |
| "naming": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 3, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:naming:1.0", | |
| "urn:jboss:domain:naming:1.1", | |
| "urn:jboss:domain:naming:1.2", | |
| "urn:jboss:domain:naming:1.3", | |
| "urn:jboss:domain:naming:1.4" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.pojo": { | |
| "module": "org.jboss.as.pojo", | |
| "subsystem": { | |
| "pojo": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 0, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:pojo:1.0" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.remoting": { | |
| "module": "org.jboss.as.remoting", | |
| "subsystem": { | |
| "remoting": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 4, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:remoting:1.0", | |
| "urn:jboss:domain:remoting:1.1", | |
| "urn:jboss:domain:remoting:1.2" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.sar": { | |
| "module": "org.jboss.as.sar", | |
| "subsystem": { | |
| "sar": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 0, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:sar:1.0" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.security": { | |
| "module": "org.jboss.as.security", | |
| "subsystem": { | |
| "security": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 3, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:security:1.0", | |
| "urn:jboss:domain:security:1.1", | |
| "urn:jboss:domain:security:1.2" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.threads": { | |
| "module": "org.jboss.as.threads", | |
| "subsystem": { | |
| "threads": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 1, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:threads:1.1", | |
| "urn:jboss:domain:threads:1.0" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.transactions": { | |
| "module": "org.jboss.as.transactions", | |
| "subsystem": { | |
| "transactions": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 5, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:transactions:1.0", | |
| "urn:jboss:domain:transactions:1.1", | |
| "urn:jboss:domain:transactions:1.2", | |
| "urn:jboss:domain:transactions:1.3", | |
| "urn:jboss:domain:transactions:1.4", | |
| "urn:jboss:domain:transactions:1.5" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.web": { | |
| "module": "org.jboss.as.web", | |
| "subsystem": { | |
| "web": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 5, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:web:1.0", | |
| "urn:jboss:domain:web:1.1", | |
| "urn:jboss:domain:web:1.2", | |
| "urn:jboss:domain:web:1.3", | |
| "urn:jboss:domain:web:1.4", | |
| "urn:jboss:domain:web:1.5", | |
| "urn:jboss:domain:web:2.1", | |
| "urn:jboss:domain:web:2.2" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.webservices": { | |
| "module": "org.jboss.as.webservices", | |
| "subsystem": { | |
| "webservices": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 2, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:webservices:1.0", | |
| "urn:jboss:domain:webservices:1.1", | |
| "urn:jboss:domain:webservices:1.2" | |
| ] | |
| } | |
| } | |
| }, | |
| "org.jboss.as.weld": { | |
| "module": "org.jboss.as.weld", | |
| "subsystem": { | |
| "weld": { | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 0, | |
| "xml-namespaces": [ | |
| "urn:jboss:domain:weld:1.0" | |
| ] | |
| } | |
| } | |
| } | |
| }, | |
| "interface": { | |
| "localmanagement": { | |
| "any": None, | |
| "any-address": None, | |
| "any-ipv4-address": None, | |
| "any-ipv6-address": None, | |
| "inet-address": { | |
| "EXPRESSION_VALUE": "${jboss.bind.address.localmanagement:127.0.0.1}" | |
| }, | |
| "link-local-address": None, | |
| "loopback": None, | |
| "loopback-address": None, | |
| "multicast": None, | |
| "name": "localmanagement", | |
| "nic": None, | |
| "nic-match": None, | |
| "not": None, | |
| "point-to-point": None, | |
| "public-address": None, | |
| "resolved-address": "127.0.0.1", | |
| "site-local-address": None, | |
| "subnet-match": None, | |
| "up": None, | |
| "virtual": None | |
| }, | |
| "management": { | |
| "any": None, | |
| "any-address": None, | |
| "any-ipv4-address": None, | |
| "any-ipv6-address": None, | |
| "inet-address": "c949722ad52f", | |
| "link-local-address": None, | |
| "loopback": None, | |
| "loopback-address": None, | |
| "multicast": None, | |
| "name": "management", | |
| "nic": None, | |
| "nic-match": None, | |
| "not": None, | |
| "point-to-point": None, | |
| "public-address": None, | |
| "resolved-address": "172.17.0.3", | |
| "site-local-address": None, | |
| "subnet-match": None, | |
| "up": None, | |
| "virtual": None | |
| }, | |
| "public": { | |
| "any": None, | |
| "any-address": None, | |
| "any-ipv4-address": None, | |
| "any-ipv6-address": None, | |
| "inet-address": { | |
| "EXPRESSION_VALUE": "${jboss.bind.address:127.0.0.1}" | |
| }, | |
| "link-local-address": None, | |
| "loopback": None, | |
| "loopback-address": None, | |
| "multicast": None, | |
| "name": "public", | |
| "nic": None, | |
| "nic-match": None, | |
| "not": None, | |
| "point-to-point": None, | |
| "public-address": None, | |
| "resolved-address": "127.0.0.1", | |
| "site-local-address": None, | |
| "subnet-match": None, | |
| "up": None, | |
| "virtual": None | |
| }, | |
| "unsecure": { | |
| "any": None, | |
| "any-address": None, | |
| "any-ipv4-address": None, | |
| "any-ipv6-address": None, | |
| "inet-address": { | |
| "EXPRESSION_VALUE": "${jboss.bind.address.unsecure:127.0.0.1}" | |
| }, | |
| "link-local-address": None, | |
| "loopback": None, | |
| "loopback-address": None, | |
| "multicast": None, | |
| "name": "unsecure", | |
| "nic": None, | |
| "nic-match": None, | |
| "not": None, | |
| "point-to-point": None, | |
| "public-address": None, | |
| "resolved-address": None, | |
| "site-local-address": None, | |
| "subnet-match": None, | |
| "up": None, | |
| "virtual": None | |
| } | |
| }, | |
| "launch-type": "STANDALONE", | |
| "management-major-version": 1, | |
| "management-micro-version": 0, | |
| "management-minor-version": 8, | |
| "name": "c949722ad52f", | |
| "namespaces": [], | |
| "path": { | |
| "java.home": { | |
| "name": "java.home", | |
| "path": "/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre", | |
| "read-only": True, | |
| "relative-to": None | |
| }, | |
| "jboss.controller.temp.dir": { | |
| "name": "jboss.controller.temp.dir", | |
| "path": "/app/MDW_JB_PROJ01/standalone/tmp", | |
| "read-only": True, | |
| "relative-to": None | |
| }, | |
| "jboss.home.dir": { | |
| "name": "jboss.home.dir", | |
| "path": "/app/MDW_JB_PROJ01", | |
| "read-only": True, | |
| "relative-to": None | |
| }, | |
| "jboss.server.base.dir": { | |
| "name": "jboss.server.base.dir", | |
| "path": "/app/MDW_JB_PROJ01/standalone", | |
| "read-only": True, | |
| "relative-to": None | |
| }, | |
| "jboss.server.config.dir": { | |
| "name": "jboss.server.config.dir", | |
| "path": "/app/MDW_JB_PROJ01/standalone/configuration", | |
| "read-only": True, | |
| "relative-to": None | |
| }, | |
| "jboss.server.data.dir": { | |
| "name": "jboss.server.data.dir", | |
| "path": "/app/MDW_JB_PROJ01/standalone/data", | |
| "read-only": True, | |
| "relative-to": None | |
| }, | |
| "jboss.server.log.dir": { | |
| "name": "jboss.server.log.dir", | |
| "path": "/app/MDW_JB_PROJ01/standalone/log", | |
| "read-only": True, | |
| "relative-to": None | |
| }, | |
| "jboss.server.temp.dir": { | |
| "name": "jboss.server.temp.dir", | |
| "path": "/app/MDW_JB_PROJ01/standalone/tmp", | |
| "read-only": True, | |
| "relative-to": None | |
| }, | |
| "user.dir": { | |
| "name": "user.dir", | |
| "path": "/", | |
| "read-only": True, | |
| "relative-to": None | |
| }, | |
| "user.home": { | |
| "name": "user.home", | |
| "path": "/root", | |
| "read-only": True, | |
| "relative-to": None | |
| } | |
| }, | |
| "process-type": "Server", | |
| "product-name": "EAP", | |
| "product-version": "6.4.13.GA", | |
| "profile-name": None, | |
| "release-codename": "Janus", | |
| "release-version": "7.5.13.Final-redhat-2", | |
| "running-mode": "NORMAL", | |
| "schema-locations": [], | |
| "server-state": "running", | |
| "socket-binding-group": { | |
| "standard-sockets": { | |
| "default-interface": "public", | |
| "local-destination-outbound-socket-binding": None, | |
| "name": "standard-sockets", | |
| "port-offset": { | |
| "EXPRESSION_VALUE": "${jboss.socket.binding.port-offset:0}" | |
| }, | |
| "remote-destination-outbound-socket-binding": { | |
| "mail-smtp": { | |
| "fixed-source-port": False, | |
| "host": "localhost", | |
| "port": 25, | |
| "source-interface": None, | |
| "source-port": None | |
| } | |
| }, | |
| "socket-binding": { | |
| "ajp": { | |
| "bound": False, | |
| "bound-address": None, | |
| "bound-port": None, | |
| "client-mappings": None, | |
| "fixed-port": False, | |
| "interface": None, | |
| "multicast-address": None, | |
| "multicast-port": None, | |
| "name": "ajp", | |
| "port": 8009 | |
| }, | |
| "http": { | |
| "bound": True, | |
| "bound-address": "127.0.0.1", | |
| "bound-port": 8080, | |
| "client-mappings": None, | |
| "fixed-port": False, | |
| "interface": None, | |
| "multicast-address": None, | |
| "multicast-port": None, | |
| "name": "http", | |
| "port": 8080 | |
| }, | |
| "https": { | |
| "bound": False, | |
| "bound-address": None, | |
| "bound-port": None, | |
| "client-mappings": None, | |
| "fixed-port": False, | |
| "interface": None, | |
| "multicast-address": None, | |
| "multicast-port": None, | |
| "name": "https", | |
| "port": 8443 | |
| }, | |
| "management-http": { | |
| "bound": True, | |
| "bound-address": "172.17.0.3", | |
| "bound-port": 9990, | |
| "client-mappings": None, | |
| "fixed-port": False, | |
| "interface": "management", | |
| "multicast-address": None, | |
| "multicast-port": None, | |
| "name": "management-http", | |
| "port": { | |
| "EXPRESSION_VALUE": "${jboss.management.http.port:9990}" | |
| } | |
| }, | |
| "management-https": { | |
| "bound": False, | |
| "bound-address": None, | |
| "bound-port": None, | |
| "client-mappings": None, | |
| "fixed-port": False, | |
| "interface": "management", | |
| "multicast-address": None, | |
| "multicast-port": None, | |
| "name": "management-https", | |
| "port": { | |
| "EXPRESSION_VALUE": "${jboss.management.https.port:9443}" | |
| } | |
| }, | |
| "management-native": { | |
| "bound": True, | |
| "bound-address": "127.0.0.1", | |
| "bound-port": 9999, | |
| "client-mappings": None, | |
| "fixed-port": False, | |
| "interface": "localmanagement", | |
| "multicast-address": None, | |
| "multicast-port": None, | |
| "name": "management-native", | |
| "port": { | |
| "EXPRESSION_VALUE": "${jboss.management.native.port:9999}" | |
| } | |
| }, | |
| "remoting": { | |
| "bound": True, | |
| "bound-address": "127.0.0.1", | |
| "bound-port": 4447, | |
| "client-mappings": None, | |
| "fixed-port": False, | |
| "interface": None, | |
| "multicast-address": None, | |
| "multicast-port": None, | |
| "name": "remoting", | |
| "port": 4447 | |
| }, | |
| "txn-recovery-environment": { | |
| "bound": False, | |
| "bound-address": None, | |
| "bound-port": None, | |
| "client-mappings": None, | |
| "fixed-port": False, | |
| "interface": None, | |
| "multicast-address": None, | |
| "multicast-port": None, | |
| "name": "txn-recovery-environment", | |
| "port": 4712 | |
| }, | |
| "txn-status-manager": { | |
| "bound": False, | |
| "bound-address": None, | |
| "bound-port": None, | |
| "client-mappings": None, | |
| "fixed-port": False, | |
| "interface": None, | |
| "multicast-address": None, | |
| "multicast-port": None, | |
| "name": "txn-status-manager", | |
| "port": 4713 | |
| } | |
| } | |
| } | |
| }, | |
| "subsystem": { | |
| "datasources": { | |
| "data-source": { | |
| "ExampleDS": { | |
| "allocation-retry": None, | |
| "allocation-retry-wait-millis": None, | |
| "allow-multiple-users": False, | |
| "background-validation": None, | |
| "background-validation-millis": None, | |
| "blocking-timeout-wait-millis": None, | |
| "check-valid-connection-sql": None, | |
| "connectable": False, | |
| "connection-properties": None, | |
| "connection-url": "jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE", | |
| "datasource-class": None, | |
| "driver-class": None, | |
| "driver-name": "h2", | |
| "enabled": True, | |
| "exception-sorter-class-name": None, | |
| "exception-sorter-properties": None, | |
| "flush-strategy": None, | |
| "idle-timeout-minutes": None, | |
| "jndi-name": "java:jboss/datasources/ExampleDS", | |
| "jta": True, | |
| "max-pool-size": None, | |
| "min-pool-size": None, | |
| "new-connection-sql": None, | |
| "password": "sa", | |
| "pool-prefill": None, | |
| "pool-use-strict-min": None, | |
| "prepared-statements-cache-size": None, | |
| "query-timeout": None, | |
| "reauth-plugin-class-name": None, | |
| "reauth-plugin-properties": None, | |
| "security-domain": None, | |
| "set-tx-query-timeout": False, | |
| "share-prepared-statements": False, | |
| "spy": False, | |
| "stale-connection-checker-class-name": None, | |
| "stale-connection-checker-properties": None, | |
| "statistics": { | |
| "jdbc": { | |
| "PreparedStatementCacheAccessCount": "0", | |
| "PreparedStatementCacheAddCount": "0", | |
| "PreparedStatementCacheCurrentSize": "0", | |
| "PreparedStatementCacheDeleteCount": "0", | |
| "PreparedStatementCacheHitCount": "0", | |
| "PreparedStatementCacheMissCount": "0", | |
| "statistics-enabled": False | |
| }, | |
| "pool": { | |
| "ActiveCount": "0", | |
| "AvailableCount": "0", | |
| "AverageBlockingTime": "0", | |
| "AverageCreationTime": "0", | |
| "CreatedCount": "0", | |
| "DestroyedCount": "0", | |
| "InUseCount": "0", | |
| "MaxCreationTime": "0", | |
| "MaxUsedCount": "0", | |
| "MaxWaitCount": "0", | |
| "MaxWaitTime": "0", | |
| "TimedOut": "0", | |
| "TotalBlockingTime": "0", | |
| "TotalCreationTime": "0", | |
| "statistics-enabled": False | |
| } | |
| }, | |
| "statistics-enabled": False, | |
| "track-statements": "NOWARN", | |
| "transaction-isolation": None, | |
| "url-delimiter": None, | |
| "url-selector-strategy-class-name": None, | |
| "use-ccm": True, | |
| "use-fast-fail": False, | |
| "use-java-context": True, | |
| "use-try-lock": None, | |
| "user-name": "sa", | |
| "valid-connection-checker-class-name": None, | |
| "valid-connection-checker-properties": None, | |
| "validate-on-match": False | |
| } | |
| }, | |
| "installed-drivers": [ | |
| { | |
| "deployment-name": None, | |
| "driver-class-name": "org.h2.Driver", | |
| "driver-datasource-class-name": "", | |
| "driver-major-version": 1, | |
| "driver-minor-version": 3, | |
| "driver-module-name": "com.h2database.h2", | |
| "driver-name": "h2", | |
| "driver-xa-datasource-class-name": "org.h2.jdbcx.JdbcDataSource", | |
| "jdbc-compliant": True, | |
| "module-slot": "main" | |
| } | |
| ], | |
| "jdbc-driver": { | |
| "h2": { | |
| "deployment-name": None, | |
| "driver-class-name": None, | |
| "driver-datasource-class-name": None, | |
| "driver-major-version": None, | |
| "driver-minor-version": None, | |
| "driver-module-name": "com.h2database.h2", | |
| "driver-name": "h2", | |
| "driver-xa-datasource-class-name": "org.h2.jdbcx.JdbcDataSource", | |
| "jdbc-compliant": None, | |
| "module-slot": None, | |
| "xa-datasource-class": None | |
| } | |
| }, | |
| "xa-data-source": None | |
| }, | |
| "deployment-scanner": { | |
| "scanner": { | |
| "default": { | |
| "auto-deploy-exploded": False, | |
| "auto-deploy-xml": True, | |
| "auto-deploy-zipped": True, | |
| "deployment-timeout": 600, | |
| "path": "deployments", | |
| "relative-to": "jboss.server.base.dir", | |
| "scan-enabled": True, | |
| "scan-interval": 5000 | |
| } | |
| } | |
| }, | |
| "ee": { | |
| "annotation-property-replacement": False, | |
| "ear-subdeployments-isolated": False, | |
| "global-modules": None, | |
| "jboss-descriptor-property-replacement": True, | |
| "spec-descriptor-property-replacement": False | |
| }, | |
| "ejb3": { | |
| "cache": { | |
| "passivating": { | |
| "aliases": [ | |
| "SimpleStatefulCache" | |
| ], | |
| "passivation-store": "file" | |
| }, | |
| "simple": { | |
| "aliases": [ | |
| "NoPassivationCache" | |
| ], | |
| "passivation-store": None | |
| } | |
| }, | |
| "cluster-passivation-store": None, | |
| "default-clustered-sfsb-cache": None, | |
| "default-distinct-name": None, | |
| "default-entity-bean-instance-pool": None, | |
| "default-entity-bean-optimistic-locking": None, | |
| "default-mdb-instance-pool": None, | |
| "default-missing-method-permissions-deny-access": True, | |
| "default-resource-adapter-name": "hornetq-ra", | |
| "default-security-domain": "other", | |
| "default-sfsb-cache": "simple", | |
| "default-singleton-bean-access-timeout": 5000, | |
| "default-slsb-instance-pool": "slsb-strict-max-pool", | |
| "default-stateful-bean-access-timeout": 5000, | |
| "enable-statistics": None, | |
| "file-passivation-store": { | |
| "file": { | |
| "groups-path": "ejb3/groups", | |
| "idle-timeout": 300, | |
| "idle-timeout-unit": "SECONDS", | |
| "max-size": 100000, | |
| "relative-to": "jboss.server.data.dir", | |
| "sessions-path": "ejb3/sessions", | |
| "subdirectory-count": 100 | |
| } | |
| }, | |
| "in-vm-remote-interface-invocation-pass-by-value": True, | |
| "service": { | |
| "async": { | |
| "thread-pool-name": "default" | |
| }, | |
| "remote": { | |
| "channel-creation-options": None, | |
| "connector-ref": "remoting-connector", | |
| "thread-pool-name": "default" | |
| }, | |
| "timer-service": { | |
| "database-data-store": None, | |
| "default-data-store": "default-file-store", | |
| "file-data-store": { | |
| "default-file-store": { | |
| "path": "timer-service-data", | |
| "relative-to": "jboss.server.data.dir" | |
| } | |
| }, | |
| "thread-pool-name": "default" | |
| } | |
| }, | |
| "strict-max-bean-instance-pool": { | |
| "mdb-strict-max-pool": { | |
| "max-pool-size": 20, | |
| "timeout": 5, | |
| "timeout-unit": "MINUTES" | |
| }, | |
| "slsb-strict-max-pool": { | |
| "max-pool-size": 20, | |
| "timeout": 5, | |
| "timeout-unit": "MINUTES" | |
| } | |
| }, | |
| "thread-pool": { | |
| "default": { | |
| "active-count": 0, | |
| "completed-task-count": 0, | |
| "current-thread-count": 0, | |
| "keepalive-time": { | |
| "time": 100, | |
| "unit": "MILLISECONDS" | |
| }, | |
| "largest-thread-count": 0, | |
| "max-threads": 10, | |
| "name": "default", | |
| "queue-size": 0, | |
| "rejected-count": 0, | |
| "task-count": 0, | |
| "thread-factory": None | |
| } | |
| } | |
| }, | |
| "infinispan": { | |
| "cache-container": { | |
| "hibernate": { | |
| "aliases": None, | |
| "cache-manager-status": None, | |
| "cluster-name": None, | |
| "coordinator-address": None, | |
| "default-cache": "local-query", | |
| "distributed-cache": None, | |
| "eviction-executor": None, | |
| "invalidation-cache": None, | |
| "is-coordinator": None, | |
| "jndi-name": None, | |
| "listener-executor": None, | |
| "local-address": None, | |
| "local-cache": { | |
| "entity": { | |
| "average-read-time": None, | |
| "average-write-time": None, | |
| "batching": None, | |
| "binary-keyed-jdbc-store": None, | |
| "cache-status": None, | |
| "elapsed-time": None, | |
| "eviction": { | |
| "EVICTION": { | |
| "evictions": None, | |
| "max-entries": 10000, | |
| "strategy": "LRU" | |
| } | |
| }, | |
| "expiration": { | |
| "EXPIRATION": { | |
| "interval": 60000, | |
| "lifespan": -1, | |
| "max-idle": 100000 | |
| } | |
| }, | |
| "file-store": None, | |
| "hit-ratio": None, | |
| "hits": None, | |
| "indexing": None, | |
| "indexing-properties": None, | |
| "invalidations": None, | |
| "jndi-name": None, | |
| "locking": None, | |
| "misses": None, | |
| "mixed-keyed-jdbc-store": None, | |
| "module": None, | |
| "number-of-entries": None, | |
| "passivations": None, | |
| "read-write-ratio": None, | |
| "remote-store": None, | |
| "remove-hits": None, | |
| "remove-misses": None, | |
| "start": None, | |
| "statistics-enabled": None, | |
| "store": None, | |
| "stores": None, | |
| "string-keyed-jdbc-store": None, | |
| "time-since-reset": None, | |
| "transaction": { | |
| "TRANSACTION": { | |
| "commits": None, | |
| "locking": "OPTIMISTIC", | |
| "mode": "NON_XA", | |
| "prepares": None, | |
| "rollbacks": None, | |
| "stop-timeout": 30000 | |
| } | |
| } | |
| }, | |
| "local-query": { | |
| "average-read-time": None, | |
| "average-write-time": None, | |
| "batching": None, | |
| "binary-keyed-jdbc-store": None, | |
| "cache-status": None, | |
| "elapsed-time": None, | |
| "eviction": { | |
| "EVICTION": { | |
| "evictions": None, | |
| "max-entries": 10000, | |
| "strategy": "LRU" | |
| } | |
| }, | |
| "expiration": { | |
| "EXPIRATION": { | |
| "interval": 60000, | |
| "lifespan": -1, | |
| "max-idle": 100000 | |
| } | |
| }, | |
| "file-store": None, | |
| "hit-ratio": None, | |
| "hits": None, | |
| "indexing": None, | |
| "indexing-properties": None, | |
| "invalidations": None, | |
| "jndi-name": None, | |
| "locking": None, | |
| "misses": None, | |
| "mixed-keyed-jdbc-store": None, | |
| "module": None, | |
| "number-of-entries": None, | |
| "passivations": None, | |
| "read-write-ratio": None, | |
| "remote-store": None, | |
| "remove-hits": None, | |
| "remove-misses": None, | |
| "start": None, | |
| "statistics-enabled": None, | |
| "store": None, | |
| "stores": None, | |
| "string-keyed-jdbc-store": None, | |
| "time-since-reset": None, | |
| "transaction": { | |
| "TRANSACTION": { | |
| "commits": None, | |
| "locking": "OPTIMISTIC", | |
| "mode": "NONE", | |
| "prepares": None, | |
| "rollbacks": None, | |
| "stop-timeout": 30000 | |
| } | |
| } | |
| }, | |
| "timestamps": { | |
| "average-read-time": None, | |
| "average-write-time": None, | |
| "batching": None, | |
| "binary-keyed-jdbc-store": None, | |
| "cache-status": None, | |
| "elapsed-time": None, | |
| "eviction": { | |
| "EVICTION": { | |
| "evictions": None, | |
| "max-entries": -1, | |
| "strategy": "NONE" | |
| } | |
| }, | |
| "expiration": None, | |
| "file-store": None, | |
| "hit-ratio": None, | |
| "hits": None, | |
| "indexing": None, | |
| "indexing-properties": None, | |
| "invalidations": None, | |
| "jndi-name": None, | |
| "locking": None, | |
| "misses": None, | |
| "mixed-keyed-jdbc-store": None, | |
| "module": None, | |
| "number-of-entries": None, | |
| "passivations": None, | |
| "read-write-ratio": None, | |
| "remote-store": None, | |
| "remove-hits": None, | |
| "remove-misses": None, | |
| "start": None, | |
| "statistics-enabled": None, | |
| "store": None, | |
| "stores": None, | |
| "string-keyed-jdbc-store": None, | |
| "time-since-reset": None, | |
| "transaction": { | |
| "TRANSACTION": { | |
| "commits": None, | |
| "locking": "OPTIMISTIC", | |
| "mode": "NONE", | |
| "prepares": None, | |
| "rollbacks": None, | |
| "stop-timeout": 30000 | |
| } | |
| } | |
| } | |
| }, | |
| "module": "org.jboss.as.jpa.hibernate:4", | |
| "replicated-cache": None, | |
| "replication-queue-executor": None, | |
| "start": None, | |
| "statistics-enabled": None, | |
| "transport": None | |
| }, | |
| "web": { | |
| "aliases": [ | |
| "standard-session-cache" | |
| ], | |
| "cache-manager-status": None, | |
| "cluster-name": None, | |
| "coordinator-address": None, | |
| "default-cache": "local-web", | |
| "distributed-cache": None, | |
| "eviction-executor": None, | |
| "invalidation-cache": None, | |
| "is-coordinator": None, | |
| "jndi-name": None, | |
| "listener-executor": None, | |
| "local-address": None, | |
| "local-cache": { | |
| "local-web": { | |
| "average-read-time": None, | |
| "average-write-time": None, | |
| "batching": True, | |
| "binary-keyed-jdbc-store": None, | |
| "cache-status": None, | |
| "elapsed-time": None, | |
| "eviction": None, | |
| "expiration": None, | |
| "file-store": { | |
| "FILE_STORE": { | |
| "cache-loader-loads": None, | |
| "cache-loader-misses": None, | |
| "fetch-state": True, | |
| "passivation": False, | |
| "path": None, | |
| "preload": False, | |
| "property": None, | |
| "purge": False, | |
| "relative-to": "jboss.server.data.dir", | |
| "shared": False, | |
| "singleton": False, | |
| "write-behind": None | |
| } | |
| }, | |
| "hit-ratio": None, | |
| "hits": None, | |
| "indexing": None, | |
| "indexing-properties": None, | |
| "invalidations": None, | |
| "jndi-name": None, | |
| "locking": None, | |
| "misses": None, | |
| "mixed-keyed-jdbc-store": None, | |
| "module": None, | |
| "number-of-entries": None, | |
| "passivations": None, | |
| "read-write-ratio": None, | |
| "remote-store": None, | |
| "remove-hits": None, | |
| "remove-misses": None, | |
| "start": None, | |
| "statistics-enabled": None, | |
| "store": None, | |
| "stores": None, | |
| "string-keyed-jdbc-store": None, | |
| "time-since-reset": None, | |
| "transaction": None | |
| } | |
| }, | |
| "module": "org.jboss.as.clustering.web.infinispan", | |
| "replicated-cache": None, | |
| "replication-queue-executor": None, | |
| "start": None, | |
| "statistics-enabled": None, | |
| "transport": None | |
| } | |
| } | |
| }, | |
| "jaxrs": {}, | |
| "jca": { | |
| "archive-validation": { | |
| "archive-validation": { | |
| "enabled": True, | |
| "fail-on-error": True, | |
| "fail-on-warn": False | |
| } | |
| }, | |
| "bean-validation": { | |
| "bean-validation": { | |
| "enabled": True | |
| } | |
| }, | |
| "bootstrap-context": { | |
| "default": { | |
| "name": "default", | |
| "workmanager": "default" | |
| } | |
| }, | |
| "cached-connection-manager": { | |
| "cached-connection-manager": { | |
| "debug": False, | |
| "error": False, | |
| "install": True | |
| } | |
| }, | |
| "workmanager": { | |
| "default": { | |
| "long-running-threads": { | |
| "default": { | |
| "allow-core-timeout": False, | |
| "core-threads": 50, | |
| "current-thread-count": 0, | |
| "handoff-executor": None, | |
| "keepalive-time": { | |
| "time": 10, | |
| "unit": "SECONDS" | |
| }, | |
| "largest-thread-count": 0, | |
| "max-threads": 50, | |
| "name": "default", | |
| "queue-length": 50, | |
| "queue-size": 0, | |
| "rejected-count": 0, | |
| "thread-factory": None | |
| } | |
| }, | |
| "name": "default", | |
| "short-running-threads": { | |
| "default": { | |
| "allow-core-timeout": False, | |
| "core-threads": 50, | |
| "current-thread-count": 0, | |
| "handoff-executor": None, | |
| "keepalive-time": { | |
| "time": 10, | |
| "unit": "SECONDS" | |
| }, | |
| "largest-thread-count": 0, | |
| "max-threads": 50, | |
| "name": "default", | |
| "queue-length": 50, | |
| "queue-size": 0, | |
| "rejected-count": 0, | |
| "thread-factory": None | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "jdr": {}, | |
| "jmx": { | |
| "configuration": None, | |
| "expose-model": { | |
| "expression": { | |
| "domain-name": "jboss.as.expr" | |
| }, | |
| "resolved": { | |
| "domain-name": "jboss.as", | |
| "proper-property-format": True | |
| } | |
| }, | |
| "non-core-mbean-sensitivity": False, | |
| "remoting-connector": { | |
| "jmx": { | |
| "use-management-endpoint": True | |
| } | |
| } | |
| }, | |
| "jpa": { | |
| "default-datasource": "", | |
| "default-extended-persistence-inheritance": "DEEP" | |
| }, | |
| "jsf": { | |
| "default-jsf-impl-slot": "main" | |
| }, | |
| "logging": { | |
| "add-logging-api-dependencies": True, | |
| "async-handler": None, | |
| "console-handler": { | |
| "CONSOLE": { | |
| "autoflush": True, | |
| "enabled": True, | |
| "encoding": None, | |
| "filter": None, | |
| "filter-spec": None, | |
| "formatter": "%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n", | |
| "level": "INFO", | |
| "name": "CONSOLE", | |
| "named-formatter": "COLOR-PATTERN", | |
| "target": "System.out" | |
| } | |
| }, | |
| "custom-formatter": None, | |
| "custom-handler": None, | |
| "file-handler": None, | |
| "log-file": { | |
| "server.log": { | |
| "file-size": 19539, | |
| "last-modified-time": 1522846039000, | |
| "last-modified-timestamp": "2018-04-04T08:47:19.000-0400", | |
| "stream": "e532984f-83c4-4cb4-ab46-75ee02c985c1" | |
| }, | |
| "server.log.2018-04-03": { | |
| "file-size": 52682, | |
| "last-modified-time": 1522761474000, | |
| "last-modified-timestamp": "2018-04-03T09:17:54.000-0400", | |
| "stream": "e0934528-40cd-43d2-b69a-e90e21ac9942" | |
| } | |
| }, | |
| "logger": { | |
| "com.arjuna": { | |
| "category": "com.arjuna", | |
| "filter": None, | |
| "filter-spec": None, | |
| "handlers": None, | |
| "level": "WARN", | |
| "use-parent-handlers": True | |
| }, | |
| "jacorb": { | |
| "category": "jacorb", | |
| "filter": None, | |
| "filter-spec": None, | |
| "handlers": None, | |
| "level": "WARN", | |
| "use-parent-handlers": True | |
| }, | |
| "jacorb.config": { | |
| "category": "jacorb.config", | |
| "filter": None, | |
| "filter-spec": None, | |
| "handlers": None, | |
| "level": "ERROR", | |
| "use-parent-handlers": True | |
| }, | |
| "org.apache.tomcat.util.modeler": { | |
| "category": "org.apache.tomcat.util.modeler", | |
| "filter": None, | |
| "filter-spec": None, | |
| "handlers": None, | |
| "level": "WARN", | |
| "use-parent-handlers": True | |
| }, | |
| "org.jboss.as.config": { | |
| "category": "org.jboss.as.config", | |
| "filter": None, | |
| "filter-spec": None, | |
| "handlers": None, | |
| "level": "DEBUG", | |
| "use-parent-handlers": True | |
| }, | |
| "sun.rmi": { | |
| "category": "sun.rmi", | |
| "filter": None, | |
| "filter-spec": None, | |
| "handlers": None, | |
| "level": "WARN", | |
| "use-parent-handlers": True | |
| } | |
| }, | |
| "logging-profile": None, | |
| "pattern-formatter": { | |
| "COLOR-PATTERN": { | |
| "color-map": None, | |
| "pattern": "%K{level}%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n" | |
| }, | |
| "PATTERN": { | |
| "color-map": None, | |
| "pattern": "%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n" | |
| } | |
| }, | |
| "periodic-rotating-file-handler": { | |
| "FILE": { | |
| "append": True, | |
| "autoflush": True, | |
| "enabled": True, | |
| "encoding": None, | |
| "file": { | |
| "path": "server.log", | |
| "relative-to": "jboss.server.log.dir" | |
| }, | |
| "filter": None, | |
| "filter-spec": None, | |
| "formatter": "%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n", | |
| "level": "ALL", | |
| "name": "FILE", | |
| "named-formatter": "PATTERN", | |
| "suffix": ".yyyy-MM-dd" | |
| } | |
| }, | |
| "periodic-size-rotating-file-handler": None, | |
| "root-logger": { | |
| "ROOT": { | |
| "filter": None, | |
| "filter-spec": None, | |
| "handlers": [ | |
| "CONSOLE", | |
| "FILE" | |
| ], | |
| "level": "INFO" | |
| } | |
| }, | |
| "size-rotating-file-handler": None, | |
| "syslog-handler": None | |
| }, | |
| "mail": { | |
| "mail-session": { | |
| "default": { | |
| "custom": None, | |
| "debug": False, | |
| "from": None, | |
| "jndi-name": "java:jboss/mail/Default", | |
| "server": { | |
| "smtp": { | |
| "outbound-socket-binding-ref": "mail-smtp", | |
| "password": None, | |
| "ssl": False, | |
| "tls": False, | |
| "username": None | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "naming": { | |
| "binding": None, | |
| "service": { | |
| "remote-naming": {} | |
| } | |
| }, | |
| "pojo": {}, | |
| "remoting": { | |
| "connector": { | |
| "remoting-connector": { | |
| "authentication-provider": None, | |
| "property": None, | |
| "sasl-protocol": "remote", | |
| "security": None, | |
| "security-realm": "ApplicationRealm", | |
| "server-name": None, | |
| "socket-binding": "remoting" | |
| } | |
| }, | |
| "local-outbound-connection": None, | |
| "outbound-connection": None, | |
| "remote-outbound-connection": None, | |
| "worker-read-threads": 1, | |
| "worker-task-core-threads": 4, | |
| "worker-task-keepalive": 60, | |
| "worker-task-limit": 16384, | |
| "worker-task-max-threads": 16, | |
| "worker-write-threads": 1 | |
| }, | |
| "resource-adapters": { | |
| "resource-adapter": None | |
| }, | |
| "sar": {}, | |
| "security": { | |
| "deep-copy-subject-mode": False, | |
| "security-domain": { | |
| "jboss-ejb-policy": { | |
| "acl": None, | |
| "audit": None, | |
| "authentication": None, | |
| "authorization": { | |
| "classic": { | |
| "policy-module": { | |
| "Delegating": { | |
| "code": "Delegating", | |
| "flag": "required", | |
| "module": None, | |
| "module-options": None | |
| } | |
| }, | |
| "policy-modules": [ | |
| { | |
| "code": "Delegating", | |
| "flag": "required", | |
| "module": None, | |
| "module-options": None | |
| } | |
| ] | |
| } | |
| }, | |
| "cache-type": "default", | |
| "identity-trust": None, | |
| "jsse": None, | |
| "mapping": None | |
| }, | |
| "jboss-web-policy": { | |
| "acl": None, | |
| "audit": None, | |
| "authentication": None, | |
| "authorization": { | |
| "classic": { | |
| "policy-module": { | |
| "Delegating": { | |
| "code": "Delegating", | |
| "flag": "required", | |
| "module": None, | |
| "module-options": None | |
| } | |
| }, | |
| "policy-modules": [ | |
| { | |
| "code": "Delegating", | |
| "flag": "required", | |
| "module": None, | |
| "module-options": None | |
| } | |
| ] | |
| } | |
| }, | |
| "cache-type": "default", | |
| "identity-trust": None, | |
| "jsse": None, | |
| "mapping": None | |
| }, | |
| "other": { | |
| "acl": None, | |
| "audit": None, | |
| "authentication": { | |
| "classic": { | |
| "login-module": { | |
| "RealmDirect": { | |
| "code": "RealmDirect", | |
| "flag": "required", | |
| "module": None, | |
| "module-options": { | |
| "password-stacking": "useFirstPass" | |
| } | |
| }, | |
| "Remoting": { | |
| "code": "Remoting", | |
| "flag": "optional", | |
| "module": None, | |
| "module-options": { | |
| "password-stacking": "useFirstPass" | |
| } | |
| } | |
| }, | |
| "login-modules": [ | |
| { | |
| "code": "Remoting", | |
| "flag": "optional", | |
| "module": None, | |
| "module-options": { | |
| "password-stacking": "useFirstPass" | |
| } | |
| }, | |
| { | |
| "code": "RealmDirect", | |
| "flag": "required", | |
| "module": None, | |
| "module-options": { | |
| "password-stacking": "useFirstPass" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| "authorization": None, | |
| "cache-type": "default", | |
| "identity-trust": None, | |
| "jsse": None, | |
| "mapping": None | |
| } | |
| }, | |
| "vault": None | |
| }, | |
| "threads": { | |
| "blocking-bounded-queue-thread-pool": None, | |
| "blocking-queueless-thread-pool": None, | |
| "bounded-queue-thread-pool": None, | |
| "queueless-thread-pool": None, | |
| "scheduled-thread-pool": None, | |
| "thread-factory": None, | |
| "unbounded-queue-thread-pool": None | |
| }, | |
| "transactions": { | |
| "commit-markable-resource": None, | |
| "default-timeout": 300, | |
| "enable-statistics": False, | |
| "enable-tsm-status": False, | |
| "hornetq-store-enable-async-io": False, | |
| "jdbc-action-store-drop-table": False, | |
| "jdbc-action-store-table-prefix": None, | |
| "jdbc-communication-store-drop-table": False, | |
| "jdbc-communication-store-table-prefix": None, | |
| "jdbc-state-store-drop-table": False, | |
| "jdbc-state-store-table-prefix": None, | |
| "jdbc-store-datasource": None, | |
| "jts": False, | |
| "log-store": { | |
| "log-store": { | |
| "expose-all-logs": False, | |
| "transactions": None, | |
| "type": "default" | |
| } | |
| }, | |
| "node-identifier": "1", | |
| "number-of-aborted-transactions": 0, | |
| "number-of-application-rollbacks": 0, | |
| "number-of-committed-transactions": 0, | |
| "number-of-heuristics": 0, | |
| "number-of-inflight-transactions": 0, | |
| "number-of-nested-transactions": 0, | |
| "number-of-resource-rollbacks": 0, | |
| "number-of-timed-out-transactions": 0, | |
| "number-of-transactions": 0, | |
| "object-store-path": "tx-object-store", | |
| "object-store-relative-to": "jboss.server.data.dir", | |
| "path": "var", | |
| "process-id-socket-binding": None, | |
| "process-id-socket-max-ports": 10, | |
| "process-id-uuid": True, | |
| "recovery-listener": False, | |
| "relative-to": "jboss.server.data.dir", | |
| "socket-binding": "txn-recovery-environment", | |
| "status-socket-binding": "txn-status-manager", | |
| "use-hornetq-store": False, | |
| "use-jdbc-store": False | |
| }, | |
| "web": { | |
| "configuration": { | |
| "container": { | |
| "mime-mapping": None, | |
| "welcome-file": None | |
| }, | |
| "jsp-configuration": { | |
| "check-interval": 0, | |
| "development": False, | |
| "disabled": False, | |
| "display-source-fragment": True, | |
| "dump-smap": False, | |
| "error-on-use-bean-invalid-class-attribute": False, | |
| "generate-strings-as-char-arrays": False, | |
| "java-encoding": "UTF8", | |
| "keep-generated": True, | |
| "mapped-file": True, | |
| "modification-test-interval": 4, | |
| "recompile-on-fail": False, | |
| "scratch-dir": None, | |
| "smap": True, | |
| "source-vm": "1.5", | |
| "tag-pooling": True, | |
| "target-vm": "1.5", | |
| "trim-spaces": False, | |
| "x-powered-by": True | |
| }, | |
| "static-resources": { | |
| "disabled": False, | |
| "file-encoding": None, | |
| "listings": False, | |
| "max-depth": 3, | |
| "read-only": True, | |
| "secret": None, | |
| "sendfile": 49152, | |
| "webdav": False | |
| } | |
| }, | |
| "connector": { | |
| "http": { | |
| "bytesReceived": 0, | |
| "bytesSent": 0, | |
| "configuration": None, | |
| "enable-lookups": False, | |
| "enabled": True, | |
| "errorCount": 0, | |
| "executor": None, | |
| "max-connections": None, | |
| "max-post-size": 2097152, | |
| "max-save-post-size": 4096, | |
| "maxTime": 0, | |
| "name": "http", | |
| "processingTime": 0, | |
| "protocol": "HTTP/1.1", | |
| "proxy-binding": None, | |
| "proxy-name": None, | |
| "proxy-port": None, | |
| "redirect-binding": None, | |
| "redirect-port": 443, | |
| "requestCount": 0, | |
| "scheme": "http", | |
| "secure": False, | |
| "socket-binding": "http", | |
| "virtual-server": None | |
| } | |
| }, | |
| "default-session-timeout": 30, | |
| "default-virtual-server": "default-host", | |
| "instance-id": None, | |
| "native": False, | |
| "valve": None, | |
| "virtual-server": { | |
| "default-host": { | |
| "alias": [ | |
| "localhost", | |
| "example.com" | |
| ], | |
| "configuration": None, | |
| "default-web-module": "ROOT.war", | |
| "enable-welcome-root": True, | |
| "name": "default-host", | |
| "rewrite": None | |
| } | |
| } | |
| }, | |
| "webservices": { | |
| "client-config": { | |
| "Standard-Client-Config": { | |
| "post-handler-chain": None, | |
| "pre-handler-chain": None, | |
| "property": None | |
| } | |
| }, | |
| "endpoint-config": { | |
| "Recording-Endpoint-Config": { | |
| "post-handler-chain": None, | |
| "pre-handler-chain": { | |
| "recording-handlers": { | |
| "handler": { | |
| "RecordingHandler": { | |
| "class": "org.jboss.ws.common.invocation.RecordingServerHandler" | |
| } | |
| }, | |
| "protocol-bindings": "##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM" | |
| } | |
| }, | |
| "property": None | |
| }, | |
| "Standard-Endpoint-Config": { | |
| "post-handler-chain": None, | |
| "pre-handler-chain": None, | |
| "property": None | |
| } | |
| }, | |
| "modify-wsdl-address": True, | |
| "wsdl-host": { | |
| "EXPRESSION_VALUE": "${jboss.bind.address:127.0.0.1}" | |
| }, | |
| "wsdl-port": None, | |
| "wsdl-secure-port": None | |
| }, | |
| "weld": {} | |
| }, | |
| "system-property": None | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment