Last active
January 29, 2020 18:04
-
-
Save mhubig/fadc8f4e046ef768cfa57428ea0981e6 to your computer and use it in GitHub Desktop.
This file contains 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
ad_identifiers: | |
- tomcat | |
init_config: | |
## @param is_jmx - boolean - required | |
## Whether or not this file is a configuration for a JMX integration. | |
# | |
is_jmx: true | |
## @param collect_default_metrics - boolean - required | |
## Whether or not the check should collect all default metrics for this integration. | |
# | |
collect_default_metrics: true | |
instances: | |
## @param host - string - required | |
## Tomcat host to connect to. | |
# | |
- host: "%%host%%" | |
## @param port - integer - required | |
## Tomcat port to connect to. | |
# | |
port: "9012" |
This file contains 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
apiVersion: apps/v1 | |
kind: StatefulSet | |
metadata: | |
name: hybris | |
labels: | |
app.kubernetes.io/name: hybris | |
spec: | |
serviceName: hybris | |
selector: | |
matchLabels: | |
app.kubernetes.io/name: hybris | |
replicas: 6 | |
template: | |
metadata: | |
labels: | |
app.kubernetes.io/name: hybris | |
annotations: | |
ad.datadoghq.com/hybris.check_names: '["tomcat"]' | |
ad.datadoghq.com/hybris.init_configs: '[{}]' | |
ad.datadoghq.com/hybris.instances: | | |
[ | |
{ | |
"host": "%%host%%", | |
"port": "%%port_hybris-jmx%%" | |
} | |
] | |
ad.datadoghq.com/hybris.logs: '[{"source": "tomcat", "service": "hybris"}]' | |
spec: | |
serviceAccountName: pod-reader | |
terminationGracePeriodSeconds: 600 | |
initContainers: | |
- name: update-local-properties | |
image: bash:latest | |
command: ["/usr/local/bin/bash","-c"] | |
args: | |
- | | |
if [[ -v POD_NAME ]]; then | |
CLUSTER_ID=$(echo ${POD_NAME} |awk '{split($0,a,"-"); print a[2]}') | |
echo "INFO: Copying the local.properties file to the hybris-config volume." | |
cp -f /tmp/local.properties /mnt/local.properties | |
echo "INFO: Setting cluster.id to '${CLUSTER_ID}' in local.properties" | |
echo "cluster.id=${CLUSTER_ID}" >> /mnt/local.properties | |
else | |
echo "ERROR: Variable POD_NAME not found!" | |
exit 1 | |
fi | |
env: | |
- name: POD_NAME | |
valueFrom: | |
fieldRef: | |
fieldPath: metadata.name | |
volumeMounts: | |
- name: local-properties | |
mountPath: /tmp/local.properties | |
subPath: local.properties | |
- name: hybris-config | |
mountPath: /mnt/ | |
containers: | |
- name: hybris | |
image: registry.gitlab.dm-drogeriemarkt.com/mythos/hybris/hybris:latest | |
command: ["/entrypoint.sh"] | |
args: ["run"] | |
ports: | |
- name: hybris-http | |
containerPort: 18080 | |
- name: hybris-jmx | |
containerPort: 19003 | |
lifecycle: | |
preStop: | |
exec: | |
command: ["/bin/sh","-c","cd ${PLATFORM_HOME} && ./hybrisserver.sh stop"] | |
resources: | |
requests: | |
memory: 30G | |
cpu: "6" | |
limits: | |
memory: 30G | |
# NOTE: This fine stuff will work only for k8s >= 1.16 | |
# startupProbe: | |
# httpGet: | |
# path: /dmcommercewebservices/health | |
# port: hybris-http | |
# initialDelaySeconds: 240 | |
# periodSeconds: 30 | |
# timeoutSeconds: 2 | |
# failureThreshold: 20 | |
# successThreshold: 1 | |
# NOTE: This is disabled because hybris should never be killed! | |
# livenessProbe: | |
# httpGet: | |
# path: /login.jsp | |
# port: hybris-http | |
# initialDelaySeconds: 600 | |
# periodSeconds: 10 | |
# timeoutSeconds: 10 | |
# failureThreshold: 3 | |
# successThreshold: 1 | |
readinessProbe: | |
httpGet: | |
path: /dmcommercewebservices/health | |
port: hybris-http | |
initialDelaySeconds: 300 | |
periodSeconds: 10 | |
timeoutSeconds: 10 | |
failureThreshold: 3 | |
successThreshold: 1 | |
volumeMounts: | |
- name: hybris-config | |
mountPath: /srv/hybris/config/local.properties | |
subPath: local.properties | |
- name: hybris-logs | |
mountPath: /srv/hybris/log | |
envFrom: | |
- configMapRef: | |
name: environment | |
volumes: | |
- name: local-properties | |
configMap: | |
name: local-properties | |
imagePullSecrets: | |
- name: gitlab-hybris-registry-auth | |
volumeClaimTemplates: | |
- metadata: | |
name: hybris-config | |
annotations: | |
volume.beta.kubernetes.io/storage-class: standard | |
spec: | |
accessModes: [ "ReadWriteOnce" ] | |
resources: | |
requests: | |
storage: 10Mi | |
- metadata: | |
name: hybris-logs | |
annotations: | |
volume.beta.kubernetes.io/storage-class: standard | |
spec: | |
accessModes: [ "ReadWriteOnce" ] | |
resources: | |
requests: | |
storage: 10Gi |
This file contains 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
# Default metrics collected by this check. You should not have to modify this. | |
jmx_metrics: | |
- include: | |
type: ThreadPool | |
attribute: | |
maxThreads: | |
alias: tomcat.threads.max | |
metric_type: gauge | |
currentThreadCount: | |
alias: tomcat.threads.count | |
metric_type: gauge | |
currentThreadsBusy: | |
alias: tomcat.threads.busy | |
metric_type: gauge | |
- include: | |
type: GlobalRequestProcessor | |
attribute: | |
bytesSent: | |
alias: tomcat.bytes_sent | |
metric_type: counter | |
bytesReceived: | |
alias: tomcat.bytes_rcvd | |
metric_type: counter | |
errorCount: | |
alias: tomcat.error_count | |
metric_type: counter | |
requestCount: | |
alias: tomcat.request_count | |
metric_type: counter | |
maxTime: | |
alias: tomcat.max_time | |
metric_type: gauge | |
processingTime: | |
alias: tomcat.processing_time | |
metric_type: counter | |
- include: | |
j2eeType: Servlet | |
attribute: | |
processingTime: | |
alias: tomcat.servlet.processing_time | |
metric_type: counter | |
errorCount: | |
alias: tomcat.servlet.error_count | |
metric_type: counter | |
requestCount: | |
alias: tomcat.servlet.request_count | |
metric_type: counter | |
- include: | |
type: Cache | |
attribute: | |
accessCount: | |
alias: tomcat.cache.access_count | |
metric_type: counter | |
hitsCounts: | |
alias: tomcat.cache.hits_count | |
metric_type: counter | |
- include: | |
type: JspMonitor | |
attribute: | |
jspCount: | |
alias: tomcat.jsp.count | |
metric_type: counter | |
jspReloadCount: | |
alias: tomcat.jsp.reload_count | |
metric_type: counter |
This file contains 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
2020-01-29 17:45:38 UTC | CORE | DEBUG | (pkg/util/docker/docker_util.go:108 in connectToDocker) | Successfully connected to Docker server version 18.09.7 | |
2020-01-29 17:45:38 UTC | CORE | DEBUG | (pkg/util/ecs/ecs.go:223 in detectAgentURL) | Could not inspect ecs-agent container: "docker container ecs-agent" not found | |
2020-01-29 17:45:39 UTC | CORE | DEBUG | (pkg/util/ecs/ecs.go:96 in GetUtil) | ECS init error: temporary failure in ecsutil, will retry later: could not detect ECS agent, tried URLs: [http://169.254.1.1:51678/ http://localhost:51678/] | |
2020-01-29 17:45:39 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:146 in tryCollectors) | will retry ecs later: temporary failure in ecsutil, will retry later: could not detect ECS agent, tried URLs: [http://169.254.1.1:51678/ http://localhost:51678/] | |
2020-01-29 17:45:39 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:601 in getKubeletHostFromConfig) | Trying to parse kubernetes_kubelet_host: 10.208.10.209 | |
2020-01-29 17:45:39 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:616 in getKubeletHostFromConfig) | Parsed kubernetes_kubelet_host: 10.208.10.209 is an address: 10.208.10.209, cached, trying to resolve it to hostname | |
2020-01-29 17:45:39 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:622 in getKubeletHostFromConfig) | kubernetes_kubelet_host: 10.208.10.209 is resolved to: [gke-hybris-cluster-hybris-node-pool-1e96161f-14jb.c.hybris-nonprod-0815.internal.] | |
2020-01-29 17:45:39 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:582 in getPotentialKubeletHosts) | Got potential kubelet connection info from config, ips: [10.208.10.209], hostnames: [gke-hybris-cluster-hybris-node-pool-1e96161f-14jb.c.hybris-nonprod-0815.internal.] | |
2020-01-29 17:45:39 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:641 in getKubeletHostFromDocker) | Trying to resolve host name gke-hybris-cluster-hybris-node-pool-1e96161f-14jb provided by docker to ip... | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:647 in getKubeletHostFromDocker) | Resolved host name gke-hybris-cluster-hybris-node-pool-1e96161f-14jb provided by docker to [{10.208.10.209 }] | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:588 in getPotentialKubeletHosts) | Got potential kubelet connection info from docker, ips: [10.208.10.209], hostnames: [gke-hybris-cluster-hybris-node-pool-1e96161f-14jb] | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:683 in setKubeletHost) | Trying several connection methods to locate the kubelet... | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:725 in selectFromPotentialHostsHTTPS) | Trying to use host 10.208.10.209 with HTTPS | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:373 in setupKubeletApiClient) | Using HTTPS with service account bearer token | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:767 in checkKubeletHTTPSConnection) | Trying to query the kubelet endpoint ... | |
2020-01-29 17:45:40 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:771 in checkKubeletHTTPSConnection) | Successfully queried https://10.208.10.209:10250/ without any security settings, adding security transport settings to query https://10.208.10.209:10250/pods | |
2020-01-29 17:45:40 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:775 in checkKubeletHTTPSConnection) | Successfully connected securely to kubelet endpoint https://10.208.10.209:10250/pods | |
2020-01-29 17:45:40 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:778 in checkKubeletHTTPSConnection) | Successfully authorized to query the kubelet on https://10.208.10.209:10250/pods: 200, using https://10.208.10.209:10250 as kubelet endpoint | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:736 in selectFromPotentialHostsHTTPS) | Can connect to kubelet using 10.208.10.209 and HTTPS | |
2020-01-29 17:45:40 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:686 in setKubeletHost) | Connection to the kubelet succeeded! 10.208.10.209 is set as kubelet host | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:373 in setupKubeletApiClient) | Using HTTPS with service account bearer token | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:509 in setupKubeletApiEndpoint) | Kubelet endpoint is: https://10.208.10.209:10250 | |
2020-01-29 17:45:40 UTC | CORE | INFO | (pkg/tagger/tagger.go:152 in tryCollectors) | kubelet tag collector successfully started | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver.go:174 in connect) | Connected to kubernetes apiserver, version v1 | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver.go:180 in connect) | Could successfully collect Pods, Nodes, Services and Events | |
2020-01-29 17:45:40 UTC | CORE | INFO | (pkg/tagger/tagger.go:152 in tryCollectors) | kube-metadata-collector tag collector successfully started | |
2020-01-29 17:45:40 UTC | CORE | INFO | (pkg/tagger/tagger.go:152 in tryCollectors) | docker tag collector successfully started | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:150 in tryCollectors) | ecs_fargate tag collector cannot start: Failed to connect to task metadata API, ECS tagging will not work | |
2020-01-29 17:45:40 UTC | CORE | INFO | (pkg/collector/runner/runner.go:92 in NewRunner) | Runner started with 4 workers. | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/collector/scheduler/scheduler.go:131 in func1) | Starting scheduler loop... | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:45:40 UTC | CORE | INFO | (pkg/collector/python/init.go:287 in Initialize) | Initializing rtloader with python3 /opt/datadog-agent/embedded | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver_kubelet.go:32 in NodeMetadataMapping) | Successfully collected endpoints | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver_kubelet.go:49 in processKubeServices) | Identified: 1 node, 12 pod, 34 endpoints | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver_kubelet.go:67 in processKubeServices) | Refreshing cache for agent/KubernetesMetadataMapping/gke-hybris-cluster-hybris-node-pool-1e96161f-14jb | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/services_kubelet.go:98 in MapOnRef) | Empty TargetRef on endpoint 10.208.12.2 of service kubernetes, skipping | |
2020-01-29 17:45:40 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 13 changed pods out of 13 | |
2020-01-29 17:45:41 UTC | CORE | INFO | (pkg/collector/python/datadog_agent.go:120 in LogMessage) | - | (ddyaml.py:123) | monkey patching yaml.load... | |
2020-01-29 17:45:41 UTC | CORE | INFO | (pkg/collector/python/datadog_agent.go:120 in LogMessage) | - | (ddyaml.py:127) | monkey patching yaml.load_all... | |
2020-01-29 17:45:41 UTC | CORE | INFO | (pkg/collector/python/datadog_agent.go:120 in LogMessage) | - | (ddyaml.py:131) | monkey patching yaml.dump_all... (affects all yaml dump operations) | |
2020-01-29 17:45:41 UTC | CORE | INFO | (pkg/collector/collector.go:57 in NewCollector) | Embedding Python 3.7.4 (default, Dec 31 2019, 19:02:30) [GCC 4.7.2] | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/collector/collector.go:58 in NewCollector) | Python Home: /opt/datadog-agent/embedded | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/collector/collector.go:59 in NewCollector) | Python path: ['/opt/datadog-agent/embedded/lib/python37.zip', '/opt/datadog-agent/embedded/lib/python3.7', '/opt/datadog-agent/embedded/lib/python3.7/lib-dynload', '/opt/datadog-agent/embedded/lib/python3.7/site-packages', '/opt/datadog-agent/embedded/lib/python3.7/site-packages/setuptools-40.9.0.post20191231-py3.7.egg', '/opt/datadog-agent/embedded/lib/python3.7/site-packages/pip-19.3.1-py3.7.egg', '/opt/datadog-agent/bin/agent/dist', '/opt/datadog-agent/checks.d', '/opt/datadog-agent/bin/agent/dist/checks.d', '/etc/datadog-agent/checks.d'] | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/collector/collector.go:67 in NewCollector) | Collector up and running! | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/collector/scheduler.go:54 in InitCheckScheduler) | Added Python Check Loader to Check Scheduler | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/collector/scheduler.go:54 in InitCheckScheduler) | Added Core Check Loader to Check Scheduler | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/collector/scheduler.go:54 in InitCheckScheduler) | Added JMX Check Loader to Check Scheduler | |
2020-01-29 17:45:41 UTC | CORE | INFO | (cmd/agent/common/autoconfig.go:71 in SetupAutoConfig) | Registering kubelet config provider polled every 10s | |
2020-01-29 17:45:41 UTC | CORE | INFO | (cmd/agent/common/autoconfig.go:71 in SetupAutoConfig) | Registering docker config provider polled every 1s | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:337 in addListenerCandidates) | Listener kubelet was registered | |
2020-01-29 17:45:41 UTC | CORE | INFO | (pkg/autodiscovery/autoconfig.go:351 in initListenerCandidates) | kubelet listener successfully started | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 13 changed pods out of 13 | |
2020-01-29 17:45:41 UTC | CORE | ERROR | (pkg/autodiscovery/listeners/kubelet.go:168 in createPodService) | Unable to get pod kube-proxy-gke-hybris-cluster-hybris-node-pool-1e96161f-14jb IP | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod kube-proxy-gke-hybris-cluster-hybris-node-pool-1e96161f-14jb | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod netd-5kxcx | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://***************************381d6 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://4a252816d931c334109992b9bf25d440ff49581b9e721036efe31f2999f0717d not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gke.gcr.io/netd-amd64:v0.2.2-gke.0 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id netd-amd64 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod netd-5kxcx | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod netd-5kxcx | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://d2ab1ce5d7ec921211d27353227350786433e998e6e524731b314019135aa9a6 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gke.gcr.io/netd-amd64:v0.2.2-gke.0 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id netd-amd64 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://b7391d85-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod ip-masq-agent-www55 | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod ip-masq-agent-www55 | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://e5fea9943038b041dea80b747af446acecb96652496688e39290530c5f376f37 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/ip-masq-agent-amd64:v2.4.1 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id ip-masq-agent-amd64 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://b7380826-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod calico-node-g6ggr | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod calico-node-g6ggr | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://6eba0bb889c0a9afa0a518e4639e7ab8baf4ae3a2ccea4c6671ab2a3344bc493 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/projectcalico-org/node:v3.2.7 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id node not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://2ada36b70554f942adbb793ed793c4cd509cbf58936d3bafcf35eba069ae634d not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/projectcalico-org/cni:v3.2.7 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id cni not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod calico-node-g6ggr | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod prometheus-to-sd-rsfq8 | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://116f25cf-3eac-11ea-b215-42010ad00c04 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://9241a75c2469024f9972f425d8d1a740f4949d07160539931e415bada5b5f6f6 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.8.2 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod prometheus-to-sd-rsfq8 | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod prometheus-to-sd-rsfq8 | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://6fbf71b9c7bb339f490a7ef89cf8e9d6d11967c843b6deb7bb53312ee4714aa2 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.8.2 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://c91388cf-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod hybris-4 | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://8fe0432e9fe42de78442759cba4541bd94d26311b3559e2bd630a0d8874bb3f4 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash:latest not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://bb0b9ea78ae1e309f502c2c1480f9b3596fbbde073989113cb2a2ab939acd7d3 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id registry.gitlab.dm-drogeriemarkt.com/mythos/hybris/hybris:***********************************1dbf8 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id hybris not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://e0f1209e-41ac-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://4c300f6729f7c525d5a474ebb086f95d16f2b8112c2de4fdb4bae84c592af34c not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.26.1 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id nginx-ingress-controller not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod fluentd-gcp-v3.1.1-rbq2f | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://2a19b727-3de1-11ea-b215-42010ad00c04 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://70396a9f771df4d0c49dd3016db702d4a62028c0e2f3f260ef10add967d079d2 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/stackdriver-agents/stackdriver-logging-agent:1.6.17-16060 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id stackdriver-logging-agent not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod fluentd-gcp-v3.1.1-rbq2f | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod fluentd-gcp-v3.1.1-rbq2f | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://77eea1fc26003bf370897db48a0a44d37f2343d76523150bee8bc3500457a921 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.5.0 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://b7266d88-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://63120a06f63671a1d024037d06c515a57167239872afbaeafd53479ec025ad7e not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/k8s-dns-dnsmasq-nanny-amd64:1.15.4 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s-dns-dnsmasq-nanny-amd64 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://548fb624d00c16e31753ff82dda09d6dc554be2eeff3518db34127283afe3b64 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/k8s-dns-kube-dns-amd64:1.15.4 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s-dns-kube-dns-amd64 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod kube-dns-5877696fb4-rww87 | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://98d7aa173b1fcc0b45c8212f8c035f317c057ac6d6e868cc7163f0b49b30e9cd not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.4.2 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://e9e02e34a29ae7db5457f9d2e18f1a138955e1f6e658ab03061a8dbb017cbb86 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/k8s-dns-sidecar-amd64:1.15.4 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s-dns-sidecar-amd64 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://8f6c367d-2ea7-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://1c12318f823c0cbf0d1eff27cabd7db3fb0dc5c286dc3f67da56826834dc1f93 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/projectcalico-org/typha:v3.2.7 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id typha not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://fd9f2c2f-3eab-11ea-b215-42010ad00c04 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://98fcd2bfe08600d721b9ae951f1fedb4947f512bf01c2c425b8013848c8e3b77 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id datadog/agent:latest-jmx not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id agent not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://24cf3751-42b7-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://e6040561d480a9674f60d4d6f560a281ac33071dc9cfc89fc4fcc72cb5fdb7c5 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/metrics-server-amd64:v0.3.1 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id metrics-server-amd64 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod metrics-server-v0.3.1-744998dcbd-qftlp | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://5869f20381c13e047b236b9bddbe39488101f630dab8ec66dae41ee14dbc9d97 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/addon-resizer:1.8.4 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id addon-resizer not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://d26f3707-40f6-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod hybris-4 | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://6a03c4dfea38327fadb2fcf74b8394dc7c08c0dbb9a593842205372612332ed5 not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash:latest not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://0d0ee7ab44da611a5d92fdf1c13b3fc0d55d4a19f5da92f5bf44a8dda97fd66b not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id registry.gitlab.dm-drogeriemarkt.com/mythos/hybris/hybris:***********************************c1c4b not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id hybris not found in cache | |
2020-01-29 17:45:41 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://a30c9b47-42a6-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:45:42 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | docker provider: no configuration change | |
Loading configs : | |
2020-01-29 17:45:42 UTC | CORE | INFO | (pkg/autodiscovery/providers/file.go:74 in Collect) | file: searching for configuration files at: /etc/datadog-agent/conf.d | |
2020-01-29 17:45:42 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/activemq.d/metrics.yaml | |
2020-01-29 17:45:42 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/apache.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/cassandra.d/metrics.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/cilium.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/consul.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/coredns.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/couch.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/couchbase.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/cpu.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/disk.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/docker.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/elastic.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/etcd.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/external_dns.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/file_handle.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/harbor.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/hive.d/metrics.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/io.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/jboss_wildfly.d/metrics.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kafka.d/metrics.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kube_apiserver_metrics.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kube_dns.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kubelet.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kubernetes_apiserver.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kubernetes_state.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kyototycoon.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/load.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/mcache.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/memory.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/network.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/ntp.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/presto.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/presto.d/metrics.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/redisdb.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/riak.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/solr.d/metrics.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/tomcat.d/auto_conf.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/tomcat.d/metrics.yaml | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/uptime.d/conf.yaml.default | |
2020-01-29 17:45:43 UTC | CORE | INFO | (pkg/autodiscovery/providers/file.go:74 in Collect) | file: searching for configuration files at: /opt/datadog-agent/bin/agent/dist/conf.d | |
2020-01-29 17:45:43 UTC | CORE | WARN | (pkg/autodiscovery/providers/file.go:78 in Collect) | Skipping, open /opt/datadog-agent/bin/agent/dist/conf.d: no such file or directory | |
2020-01-29 17:45:43 UTC | CORE | INFO | (pkg/autodiscovery/providers/file.go:74 in Collect) | file: searching for configuration files at: | |
2020-01-29 17:45:43 UTC | CORE | WARN | (pkg/autodiscovery/providers/file.go:78 in Collect) | Skipping, open : no such file or directory | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: httpd | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for apache at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: cilium-agent | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for cilium at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: consul | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for consul at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: coredns | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for coredns at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: couchdb | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for couch at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: couchbase | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for couchbase at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: elasticsearch | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: elasticsearch-oss | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for elastic at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: etcd | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for etcd at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: external-dns | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for external_dns at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: nginx-photon | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for harbor at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kube-apiserver | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for kube_apiserver_metrics at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kubedns-amd64 | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/configresolver/configresolver.go:165 in getHost) | Network "" not found, trying bridge IP instead | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/configresolver/configresolver.go:165 in getHost) | Network "" not found, trying bridge IP instead | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:246 in Tag) | cache miss for docker, collecting tags for container_id://548fb624d00c16e31753ff82dda09d6dc554be2eeff3518db34127283afe3b64 | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kube-state-metrics | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for kubernetes_state at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kyototycoon | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for kyototycoon at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: memcached | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for mcache at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: presto | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for presto at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: redis | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for redisdb at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: riak | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for riak at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: tomcat | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for tomcat at this moment. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/configresolver/configresolver.go:165 in getHost) | Network "" not found, trying bridge IP instead | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:246 in Tag) | cache miss for docker, collecting tags for container_id://bb0b9ea78ae1e309f502c2c1480f9b3596fbbde073989113cb2a2ab939acd7d3 | |
Config tomcat was loaded. | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/jmxfetch/jmxfetch.go:272 in Start) | Args: [-XX:+UseContainerSupport -classpath /opt/datadog-agent/bin/agent/dist/jmx/jmxfetch.jar org.datadog.jmxfetch.App --ipc_host localhost --ipc_port 45259 --check_period 15000 --thread_pool_size 3 --collection_timeout 60 --reconnection_timeout 10 --reconnection_thread_pool_size 3 --log_level INFO --reporter console list_collected_attributes] | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:43 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:45:44 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:45 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:46 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:46 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:45:47 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:48 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:45:48 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:49 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:49,466 | INFO | App | JMX Fetch 0.33.1 has started | |
2020-01-29 17:45:49 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:50 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:51 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:51 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:45:52 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | kubernetes provider: no configuration change | |
2020-01-29 17:45:52 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:53 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:53 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:45:54 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:54 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:54,768 | INFO | App | Found 0 config files | |
2020-01-29 17:45:55 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:56 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:45:56 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:57 UTC | CORE | DEBUG | (cmd/agent/api/agent/agent_jmx.go:43 in getJMXConfigs) | Getting latest JMX Configs as of: 0 | |
2020-01-29 17:45:57 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:57 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:57,966 | INFO | App | update is in order - updating timestamp: 1580319957 | |
2020-01-29 17:45:57 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:57,966 | INFO | App | Cleaning up instances... | |
2020-01-29 17:45:57 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:57,967 | INFO | App | Dealing with YAML config instances... | |
2020-01-29 17:45:57 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:57,967 | INFO | App | Dealing with Auto-Config instances collected... | |
2020-01-29 17:45:57 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:57,967 | INFO | App | Instantiating instance for: tomcat | |
2020-01-29 17:45:57 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:57,971 | WARN | Instance | Cannot find a "conf" section in tomcat-10.208.96.238-19003 | |
2020-01-29 17:45:58 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:45:58 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:45:58 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:58,868 | INFO | App | Started instance initialization... | |
2020-01-29 17:45:58 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:58,870 | INFO | Instance | Trying to connect to JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:45:58 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:58,871 | INFO | Instance | Connection closed or does not exist. Attempting to create a new connection... | |
2020-01-29 17:45:58 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:58,967 | INFO | ConnectionFactory | Connecting using JMX Remote | |
2020-01-29 17:45:58 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:45:58,969 | INFO | Connection | Connecting to: service:jmx:rmi:///jndi/rmi://10.208.96.238:19003/jmxrmi | |
2020-01-29 17:45:59 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:00 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:01 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:46:01 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:01 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | kubernetes provider: no configuration change | |
2020-01-29 17:46:02 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:03 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:03 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:46:04 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:04,068 | INFO | Instance | Trying to collect bean list for the first time for JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:46:04 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:04,267 | INFO | Instance | Connected to JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:46:04 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:04,267 | INFO | ConsoleReporter | ##################################### | |
2020-01-29 17:46:04 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:04,267 | INFO | ConsoleReporter | Instance: 10.208.96.238:19003 | |
2020-01-29 17:46:04 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:04,267 | INFO | ConsoleReporter | ##################################### | |
2020-01-29 17:46:04 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:05 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:06 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:06 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:46:07 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:08 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:08,066 | INFO | ConsoleReporter | Matching: 1/350. Bean name: java.lang:type=MemoryPool,name=Par Eden Space - Attribute name: Usage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:46:08 UTC | CORE | DEBUG | (pkg/util/ecs/ecs.go:96 in GetUtil) | ECS init error: temporary failure in ecsutil, will retry later: try delay not elapsed yet | |
2020-01-29 17:46:08 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:146 in tryCollectors) | will retry ecs later: temporary failure in ecsutil, will retry later: try delay not elapsed yet | |
2020-01-29 17:46:08 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:08 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:46:09 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:09,167 | INFO | ConsoleReporter | Matching: 2/350. Bean name: java.lang:type=GarbageCollector,name=ParNew - Attribute name: CollectionCount - Attribute type: long | |
2020-01-29 17:46:09 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:09,466 | INFO | ConsoleReporter | Matching: 3/350. Bean name: java.lang:type=GarbageCollector,name=ParNew - Attribute name: CollectionTime - Attribute type: long | |
2020-01-29 17:46:09 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:09,672 | INFO | ConsoleReporter | Matching: 4/350. Bean name: java.lang:type=GarbageCollector,name=ConcurrentMarkSweep - Attribute name: CollectionCount - Attribute type: long | |
2020-01-29 17:46:09 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:09,766 | INFO | ConsoleReporter | Matching: 5/350. Bean name: java.lang:type=GarbageCollector,name=ConcurrentMarkSweep - Attribute name: CollectionTime - Attribute type: long | |
2020-01-29 17:46:09 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:10,266 | INFO | ConsoleReporter | Matching: 6/350. Bean name: java.lang:type=Threading - Attribute name: ThreadCount - Attribute type: int | |
2020-01-29 17:46:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:10,271 | INFO | ConsoleReporter | Matching: 7/350. Bean name: java.lang:type=OperatingSystem - Attribute name: OpenFileDescriptorCount - Attribute type: long | |
2020-01-29 17:46:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:10,274 | INFO | ConsoleReporter | Matching: 8/350. Bean name: java.lang:type=OperatingSystem - Attribute name: SystemCpuLoad - Attribute type: double | |
2020-01-29 17:46:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:10,385 | INFO | ConsoleReporter | Matching: 9/350. Bean name: java.lang:type=OperatingSystem - Attribute name: ProcessCpuLoad - Attribute type: double | |
2020-01-29 17:46:10 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:11,171 | INFO | ConsoleReporter | Matching: 13/350. Bean name: java.lang:type=Memory - Attribute name: HeapMemoryUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:46:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:11,466 | INFO | ConsoleReporter | Matching: 17/350. Bean name: java.lang:type=Memory - Attribute name: NonHeapMemoryUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:46:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:11,569 | INFO | ConsoleReporter | Matching: 18/350. Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: Usage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:46:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:11,766 | INFO | ConsoleReporter | Matching: 19/350. Bean name: java.lang:type=ClassLoading - Attribute name: LoadedClassCount - Attribute type: int | |
2020-01-29 17:46:11 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | kubernetes provider: no configuration change | |
2020-01-29 17:46:11 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:46:11 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:46:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:11,870 | INFO | ConsoleReporter | Matching: 20/350. Bean name: java.lang:type=MemoryPool,name=CMS Old Gen - Attribute name: Usage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:46:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:11,970 | INFO | Instance | Found 14 matching attributes | |
2020-01-29 17:46:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:11,970 | INFO | Instance | Done initializing JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:46:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:12,066 | INFO | App | Completed instance initialization... | |
2020-01-29 17:46:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:12,067 | INFO | App | Successfully initialized instance: tomcat-10.208.96.238-19003 | |
2020-01-29 17:46:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:46:12,068 | INFO | App | JMXFetch is closing | |
JMXFetch exited successfully. If nothing was displayed please check your configuration, flags and the JMXFetch log file. |
This file contains 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
2020-01-29 17:42:53 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:150 in tryCollectors) | ecs_fargate tag collector cannot start: Failed to connect to task metadata API, ECS tagging will not work | |
2020-01-29 17:42:53 UTC | CORE | DEBUG | (pkg/util/docker/docker_util.go:108 in connectToDocker) | Successfully connected to Docker server version 18.09.7 | |
2020-01-29 17:42:53 UTC | CORE | DEBUG | (pkg/util/ecs/ecs.go:223 in detectAgentURL) | Could not inspect ecs-agent container: "docker container ecs-agent" not found | |
2020-01-29 17:42:54 UTC | CORE | DEBUG | (pkg/util/ecs/ecs.go:96 in GetUtil) | ECS init error: temporary failure in ecsutil, will retry later: could not detect ECS agent, tried URLs: [http://169.254.1.1:51678/ http://localhost:51678/] | |
2020-01-29 17:42:54 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:146 in tryCollectors) | will retry ecs later: temporary failure in ecsutil, will retry later: could not detect ECS agent, tried URLs: [http://169.254.1.1:51678/ http://localhost:51678/] | |
2020-01-29 17:42:54 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:601 in getKubeletHostFromConfig) | Trying to parse kubernetes_kubelet_host: 10.208.10.209 | |
2020-01-29 17:42:54 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:616 in getKubeletHostFromConfig) | Parsed kubernetes_kubelet_host: 10.208.10.209 is an address: 10.208.10.209, cached, trying to resolve it to hostname | |
2020-01-29 17:42:54 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:622 in getKubeletHostFromConfig) | kubernetes_kubelet_host: 10.208.10.209 is resolved to: [gke-hybris-cluster-hybris-node-pool-1e96161f-14jb.c.hybris-nonprod-0815.internal.] | |
2020-01-29 17:42:54 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:582 in getPotentialKubeletHosts) | Got potential kubelet connection info from config, ips: [10.208.10.209], hostnames: [gke-hybris-cluster-hybris-node-pool-1e96161f-14jb.c.hybris-nonprod-0815.internal.] | |
2020-01-29 17:42:54 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:641 in getKubeletHostFromDocker) | Trying to resolve host name gke-hybris-cluster-hybris-node-pool-1e96161f-14jb provided by docker to ip... | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:647 in getKubeletHostFromDocker) | Resolved host name gke-hybris-cluster-hybris-node-pool-1e96161f-14jb provided by docker to [{10.208.10.209 }] | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:588 in getPotentialKubeletHosts) | Got potential kubelet connection info from docker, ips: [10.208.10.209], hostnames: [gke-hybris-cluster-hybris-node-pool-1e96161f-14jb] | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:683 in setKubeletHost) | Trying several connection methods to locate the kubelet... | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:725 in selectFromPotentialHostsHTTPS) | Trying to use host 10.208.10.209 with HTTPS | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:373 in setupKubeletApiClient) | Using HTTPS with service account bearer token | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:767 in checkKubeletHTTPSConnection) | Trying to query the kubelet endpoint ... | |
2020-01-29 17:42:55 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:771 in checkKubeletHTTPSConnection) | Successfully queried https://10.208.10.209:10250/ without any security settings, adding security transport settings to query https://10.208.10.209:10250/pods | |
2020-01-29 17:42:55 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:775 in checkKubeletHTTPSConnection) | Successfully connected securely to kubelet endpoint https://10.208.10.209:10250/pods | |
2020-01-29 17:42:55 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:778 in checkKubeletHTTPSConnection) | Successfully authorized to query the kubelet on https://10.208.10.209:10250/pods: 200, using https://10.208.10.209:10250 as kubelet endpoint | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:736 in selectFromPotentialHostsHTTPS) | Can connect to kubelet using 10.208.10.209 and HTTPS | |
2020-01-29 17:42:55 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:686 in setKubeletHost) | Connection to the kubelet succeeded! 10.208.10.209 is set as kubelet host | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:373 in setupKubeletApiClient) | Using HTTPS with service account bearer token | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:509 in setupKubeletApiEndpoint) | Kubelet endpoint is: https://10.208.10.209:10250 | |
2020-01-29 17:42:55 UTC | CORE | INFO | (pkg/tagger/tagger.go:152 in tryCollectors) | kubelet tag collector successfully started | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver.go:174 in connect) | Connected to kubernetes apiserver, version v1 | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver.go:180 in connect) | Could successfully collect Pods, Nodes, Services and Events | |
2020-01-29 17:42:55 UTC | CORE | INFO | (pkg/tagger/tagger.go:152 in tryCollectors) | kube-metadata-collector tag collector successfully started | |
2020-01-29 17:42:55 UTC | CORE | INFO | (pkg/tagger/tagger.go:152 in tryCollectors) | docker tag collector successfully started | |
2020-01-29 17:42:55 UTC | CORE | INFO | (pkg/collector/runner/runner.go:92 in NewRunner) | Runner started with 4 workers. | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/collector/scheduler/scheduler.go:131 in func1) | Starting scheduler loop... | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:42:55 UTC | CORE | INFO | (pkg/collector/python/init.go:287 in Initialize) | Initializing rtloader with python3 /opt/datadog-agent/embedded | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 13 changed pods out of 13 | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver_kubelet.go:32 in NodeMetadataMapping) | Successfully collected endpoints | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver_kubelet.go:49 in processKubeServices) | Identified: 1 node, 12 pod, 34 endpoints | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver_kubelet.go:67 in processKubeServices) | Refreshing cache for agent/KubernetesMetadataMapping/gke-hybris-cluster-hybris-node-pool-1e96161f-14jb | |
2020-01-29 17:42:55 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/services_kubelet.go:98 in MapOnRef) | Empty TargetRef on endpoint 10.208.12.2 of service kubernetes, skipping | |
2020-01-29 17:42:56 UTC | CORE | INFO | (pkg/collector/python/datadog_agent.go:120 in LogMessage) | - | (ddyaml.py:123) | monkey patching yaml.load... | |
2020-01-29 17:42:56 UTC | CORE | INFO | (pkg/collector/python/datadog_agent.go:120 in LogMessage) | - | (ddyaml.py:127) | monkey patching yaml.load_all... | |
2020-01-29 17:42:56 UTC | CORE | INFO | (pkg/collector/python/datadog_agent.go:120 in LogMessage) | - | (ddyaml.py:131) | monkey patching yaml.dump_all... (affects all yaml dump operations) | |
2020-01-29 17:42:56 UTC | CORE | INFO | (pkg/collector/collector.go:57 in NewCollector) | Embedding Python 3.7.4 (default, Dec 31 2019, 19:02:30) [GCC 4.7.2] | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/collector/collector.go:58 in NewCollector) | Python Home: /opt/datadog-agent/embedded | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/collector/collector.go:59 in NewCollector) | Python path: ['/opt/datadog-agent/embedded/lib/python37.zip', '/opt/datadog-agent/embedded/lib/python3.7', '/opt/datadog-agent/embedded/lib/python3.7/lib-dynload', '/opt/datadog-agent/embedded/lib/python3.7/site-packages', '/opt/datadog-agent/embedded/lib/python3.7/site-packages/setuptools-40.9.0.post20191231-py3.7.egg', '/opt/datadog-agent/embedded/lib/python3.7/site-packages/pip-19.3.1-py3.7.egg', '/opt/datadog-agent/bin/agent/dist', '/opt/datadog-agent/checks.d', '/opt/datadog-agent/bin/agent/dist/checks.d', '/etc/datadog-agent/checks.d'] | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/collector/collector.go:67 in NewCollector) | Collector up and running! | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/collector/scheduler.go:54 in InitCheckScheduler) | Added Python Check Loader to Check Scheduler | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/collector/scheduler.go:54 in InitCheckScheduler) | Added Core Check Loader to Check Scheduler | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/collector/scheduler.go:54 in InitCheckScheduler) | Added JMX Check Loader to Check Scheduler | |
2020-01-29 17:42:56 UTC | CORE | INFO | (cmd/agent/common/autoconfig.go:71 in SetupAutoConfig) | Registering kubelet config provider polled every 10s | |
2020-01-29 17:42:56 UTC | CORE | INFO | (cmd/agent/common/autoconfig.go:71 in SetupAutoConfig) | Registering docker config provider polled every 1s | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:337 in addListenerCandidates) | Listener kubelet was registered | |
2020-01-29 17:42:56 UTC | CORE | INFO | (pkg/autodiscovery/autoconfig.go:351 in initListenerCandidates) | kubelet listener successfully started | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 13 changed pods out of 13 | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://1c12318f823c0cbf0d1eff27cabd7db3fb0dc5c286dc3f67da56826834dc1f93 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/projectcalico-org/typha:v3.2.7 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id typha not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://fd9f2c2f-3eab-11ea-b215-42010ad00c04 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://98fcd2bfe08600d721b9ae951f1fedb4947f512bf01c2c425b8013848c8e3b77 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id datadog/agent:latest-jmx not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id agent not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://24cf3751-42b7-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod metrics-server-v0.3.1-744998dcbd-qftlp | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://e6040561d480a9674f60d4d6f560a281ac33071dc9cfc89fc4fcc72cb5fdb7c5 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/metrics-server-amd64:v0.3.1 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id metrics-server-amd64 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://5869f20381c13e047b236b9bddbe39488101f630dab8ec66dae41ee14dbc9d97 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/addon-resizer:1.8.4 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id addon-resizer not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://d26f3707-40f6-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://4c300f6729f7c525d5a474ebb086f95d16f2b8112c2de4fdb4bae84c592af34c not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.26.1 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id nginx-ingress-controller not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod fluentd-gcp-v3.1.1-rbq2f | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://2a19b727-3de1-11ea-b215-42010ad00c04 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://70396a9f771df4d0c49dd3016db702d4a62028c0e2f3f260ef10add967d079d2 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/stackdriver-agents/stackdriver-logging-agent:1.6.17-16060 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id stackdriver-logging-agent not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod fluentd-gcp-v3.1.1-rbq2f | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod fluentd-gcp-v3.1.1-rbq2f | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://77eea1fc26003bf370897db48a0a44d37f2343d76523150bee8bc3500457a921 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.5.0 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://b7266d88-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://63120a06f63671a1d024037d06c515a57167239872afbaeafd53479ec025ad7e not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/k8s-dns-dnsmasq-nanny-amd64:1.15.4 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s-dns-dnsmasq-nanny-amd64 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://548fb624d00c16e31753ff82dda09d6dc554be2eeff3518db34127283afe3b64 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/k8s-dns-kube-dns-amd64:1.15.4 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s-dns-kube-dns-amd64 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod kube-dns-5877696fb4-rww87 | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://98d7aa173b1fcc0b45c8212f8c035f317c057ac6d6e868cc7163f0b49b30e9cd not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.4.2 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://e9e02e34a29ae7db5457f9d2e18f1a138955e1f6e658ab03061a8dbb017cbb86 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/k8s-dns-sidecar-amd64:1.15.4 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s-dns-sidecar-amd64 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod hybris-4 | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://8f6c367d-2ea7-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://6a03c4dfea38327fadb2fcf74b8394dc7c08c0dbb9a593842205372612332ed5 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash:latest not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://0d0ee7ab44da611a5d92fdf1c13b3fc0d55d4a19f5da92f5bf44a8dda97fd66b not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id registry.gitlab.dm-drogeriemarkt.com/mythos/hybris/hybris:***********************************c1c4b not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id hybris not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://a30c9b47-42a6-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:42:56 UTC | CORE | ERROR | (pkg/autodiscovery/listeners/kubelet.go:168 in createPodService) | Unable to get pod kube-proxy-gke-hybris-cluster-hybris-node-pool-1e96161f-14jb IP | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod kube-proxy-gke-hybris-cluster-hybris-node-pool-1e96161f-14jb | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod netd-5kxcx | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://***************************381d6 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://4a252816d931c334109992b9bf25d440ff49581b9e721036efe31f2999f0717d not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gke.gcr.io/netd-amd64:v0.2.2-gke.0 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id netd-amd64 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod netd-5kxcx | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod netd-5kxcx | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://d2ab1ce5d7ec921211d27353227350786433e998e6e524731b314019135aa9a6 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gke.gcr.io/netd-amd64:v0.2.2-gke.0 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id netd-amd64 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://b7391d85-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod hybris-4 | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://8fe0432e9fe42de78442759cba4541bd94d26311b3559e2bd630a0d8874bb3f4 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash:latest not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://bb0b9ea78ae1e309f502c2c1480f9b3596fbbde073989113cb2a2ab939acd7d3 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id registry.gitlab.dm-drogeriemarkt.com/mythos/hybris/hybris:***********************************1dbf8 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id hybris not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod ip-masq-agent-www55 | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://e0f1209e-41ac-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://e5fea9943038b041dea80b747af446acecb96652496688e39290530c5f376f37 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/ip-masq-agent-amd64:v2.4.1 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id ip-masq-agent-amd64 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod ip-masq-agent-www55 | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod calico-node-g6ggr | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://b7380826-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://6eba0bb889c0a9afa0a518e4639e7ab8baf4ae3a2ccea4c6671ab2a3344bc493 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/projectcalico-org/node:v3.2.7 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id node not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod calico-node-g6ggr | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod calico-node-g6ggr | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://2ada36b70554f942adbb793ed793c4cd509cbf58936d3bafcf35eba069ae634d not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/projectcalico-org/cni:v3.2.7 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id cni not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://116f25cf-3eac-11ea-b215-42010ad00c04 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod prometheus-to-sd-rsfq8 | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod prometheus-to-sd-rsfq8 | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://9241a75c2469024f9972f425d8d1a740f4949d07160539931e415bada5b5f6f6 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.8.2 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://6fbf71b9c7bb339f490a7ef89cf8e9d6d11967c843b6deb7bb53312ee4714aa2 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.8.2 not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod prometheus-to-sd-rsfq8 | |
2020-01-29 17:42:56 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://c91388cf-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:42:57 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | docker provider: no configuration change | |
Loading configs : | |
2020-01-29 17:42:58 UTC | CORE | INFO | (pkg/autodiscovery/providers/file.go:74 in Collect) | file: searching for configuration files at: /etc/datadog-agent/conf.d | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/activemq.d/metrics.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/apache.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/cassandra.d/metrics.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/cilium.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/consul.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/coredns.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/couch.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/couchbase.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/cpu.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/disk.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/docker.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/elastic.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/etcd.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/external_dns.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/file_handle.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/harbor.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/hive.d/metrics.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/io.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/jboss_wildfly.d/metrics.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kafka.d/metrics.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kube_apiserver_metrics.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kube_dns.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kubelet.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kubernetes_apiserver.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kubernetes_state.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kyototycoon.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/load.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/mcache.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/memory.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/network.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/ntp.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/presto.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/presto.d/metrics.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/redisdb.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/riak.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/solr.d/metrics.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/tomcat.d/auto_conf.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/tomcat.d/metrics.yaml | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/uptime.d/conf.yaml.default | |
2020-01-29 17:42:58 UTC | CORE | INFO | (pkg/autodiscovery/providers/file.go:74 in Collect) | file: searching for configuration files at: /opt/datadog-agent/bin/agent/dist/conf.d | |
2020-01-29 17:42:58 UTC | CORE | WARN | (pkg/autodiscovery/providers/file.go:78 in Collect) | Skipping, open /opt/datadog-agent/bin/agent/dist/conf.d: no such file or directory | |
2020-01-29 17:42:58 UTC | CORE | INFO | (pkg/autodiscovery/providers/file.go:74 in Collect) | file: searching for configuration files at: | |
2020-01-29 17:42:58 UTC | CORE | WARN | (pkg/autodiscovery/providers/file.go:78 in Collect) | Skipping, open : no such file or directory | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: httpd | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for apache at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: cilium-agent | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for cilium at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: consul | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for consul at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: coredns | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for coredns at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: couchdb | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for couch at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: couchbase | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for couchbase at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: elasticsearch | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: elasticsearch-oss | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for elastic at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: etcd | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for etcd at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: external-dns | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for external_dns at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: nginx-photon | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for harbor at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kube-apiserver | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for kube_apiserver_metrics at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kubedns-amd64 | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/configresolver/configresolver.go:165 in getHost) | Network "" not found, trying bridge IP instead | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/configresolver/configresolver.go:165 in getHost) | Network "" not found, trying bridge IP instead | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:246 in Tag) | cache miss for docker, collecting tags for container_id://548fb624d00c16e31753ff82dda09d6dc554be2eeff3518db34127283afe3b64 | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kube-state-metrics | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for kubernetes_state at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kyototycoon | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for kyototycoon at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: memcached | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for mcache at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: presto | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for presto at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: redis | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for redisdb at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: riak | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for riak at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: tomcat | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for tomcat at this moment. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/configresolver/configresolver.go:165 in getHost) | Network "" not found, trying bridge IP instead | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:246 in Tag) | cache miss for docker, collecting tags for container_id://bb0b9ea78ae1e309f502c2c1480f9b3596fbbde073989113cb2a2ab939acd7d3 | |
Config tomcat was loaded. | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/jmxfetch/jmxfetch.go:272 in Start) | Args: [-XX:+UseContainerSupport -classpath /opt/datadog-agent/bin/agent/dist/jmx/jmxfetch.jar org.datadog.jmxfetch.App --ipc_host localhost --ipc_port 36135 --check_period 15000 --thread_pool_size 3 --collection_timeout 60 --reconnection_timeout 10 --reconnection_thread_pool_size 3 --log_level INFO --reporter console list_matching_attributes] | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:42:58 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:42:59 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:00 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:01 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:01 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:02 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:03 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:03 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:04 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:04,371 | INFO | App | JMX Fetch 0.33.1 has started | |
2020-01-29 17:43:04 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:05 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:06 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:06 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:06 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | kubernetes provider: no configuration change | |
2020-01-29 17:43:07 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:08 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:09 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:09 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:09,472 | INFO | App | Found 0 config files | |
2020-01-29 17:43:09 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:10 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:11 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:11 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:11 UTC | CORE | DEBUG | (cmd/agent/api/agent/agent_jmx.go:43 in getJMXConfigs) | Getting latest JMX Configs as of: 0 | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,267 | INFO | App | update is in order - updating timestamp: 1580319791 | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,267 | INFO | App | Cleaning up instances... | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,268 | INFO | App | Dealing with YAML config instances... | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,268 | INFO | App | Dealing with Auto-Config instances collected... | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,268 | INFO | App | Instantiating instance for: tomcat | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,271 | WARN | Instance | Cannot find a "conf" section in tomcat-10.208.96.238-19003 | |
2020-01-29 17:43:12 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,968 | INFO | App | Started instance initialization... | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,969 | INFO | Instance | Trying to connect to JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,970 | INFO | Instance | Connection closed or does not exist. Attempting to create a new connection... | |
2020-01-29 17:43:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:12,972 | INFO | ConnectionFactory | Connecting using JMX Remote | |
2020-01-29 17:43:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:13,066 | INFO | Connection | Connecting to: service:jmx:rmi:///jndi/rmi://10.208.96.238:19003/jmxrmi | |
2020-01-29 17:43:13 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:13 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:14 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:15 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:16,568 | INFO | Instance | Trying to collect bean list for the first time for JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:43:16 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:16 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:16 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | kubernetes provider: no configuration change | |
2020-01-29 17:43:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:17,166 | INFO | Instance | Connected to JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:43:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:17,166 | INFO | ConsoleReporter | ##################################### | |
2020-01-29 17:43:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:17,166 | INFO | ConsoleReporter | Instance: 10.208.96.238:19003 | |
2020-01-29 17:43:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:17,166 | INFO | ConsoleReporter | ##################################### | |
2020-01-29 17:43:17 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:18 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:18 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:19 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:20,566 | INFO | ConsoleReporter | Matching: 1/350. Bean name: java.lang:type=MemoryPool,name=Par Eden Space - Attribute name: Usage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:43:20 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:21,266 | INFO | ConsoleReporter | Matching: 2/350. Bean name: java.lang:type=GarbageCollector,name=ParNew - Attribute name: CollectionCount - Attribute type: long | |
2020-01-29 17:43:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:21,268 | INFO | ConsoleReporter | Matching: 3/350. Bean name: java.lang:type=GarbageCollector,name=ParNew - Attribute name: CollectionTime - Attribute type: long | |
2020-01-29 17:43:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:21,370 | INFO | ConsoleReporter | Matching: 4/350. Bean name: java.lang:type=GarbageCollector,name=ConcurrentMarkSweep - Attribute name: CollectionCount - Attribute type: long | |
2020-01-29 17:43:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:21,371 | INFO | ConsoleReporter | Matching: 5/350. Bean name: java.lang:type=GarbageCollector,name=ConcurrentMarkSweep - Attribute name: CollectionTime - Attribute type: long | |
2020-01-29 17:43:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:21,769 | INFO | ConsoleReporter | Matching: 6/350. Bean name: java.lang:type=Threading - Attribute name: ThreadCount - Attribute type: int | |
2020-01-29 17:43:21 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:21 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:22,265 | INFO | ConsoleReporter | Matching: 7/350. Bean name: java.lang:type=OperatingSystem - Attribute name: OpenFileDescriptorCount - Attribute type: long | |
2020-01-29 17:43:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:22,366 | INFO | ConsoleReporter | Matching: 8/350. Bean name: java.lang:type=OperatingSystem - Attribute name: SystemCpuLoad - Attribute type: double | |
2020-01-29 17:43:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:22,367 | INFO | ConsoleReporter | Matching: 9/350. Bean name: java.lang:type=OperatingSystem - Attribute name: ProcessCpuLoad - Attribute type: double | |
2020-01-29 17:43:22 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:23,073 | INFO | ConsoleReporter | Matching: 13/350. Bean name: java.lang:type=Memory - Attribute name: HeapMemoryUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:43:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:23,467 | INFO | ConsoleReporter | Matching: 17/350. Bean name: java.lang:type=Memory - Attribute name: NonHeapMemoryUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:43:23 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:23 UTC | CORE | DEBUG | (pkg/util/ecs/ecs.go:96 in GetUtil) | ECS init error: temporary failure in ecsutil, will retry later: try delay not elapsed yet | |
2020-01-29 17:43:23 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:146 in tryCollectors) | will retry ecs later: temporary failure in ecsutil, will retry later: try delay not elapsed yet | |
2020-01-29 17:43:23 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:23,866 | INFO | ConsoleReporter | Matching: 18/350. Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: Usage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:43:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:24,167 | INFO | ConsoleReporter | Matching: 19/350. Bean name: java.lang:type=ClassLoading - Attribute name: LoadedClassCount - Attribute type: int | |
2020-01-29 17:43:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:24,272 | INFO | ConsoleReporter | Matching: 20/350. Bean name: java.lang:type=MemoryPool,name=CMS Old Gen - Attribute name: Usage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:43:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:24,468 | INFO | Instance | Found 14 matching attributes | |
2020-01-29 17:43:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:24,468 | INFO | Instance | Done initializing JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:43:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:24,469 | INFO | App | Completed instance initialization... | |
2020-01-29 17:43:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:24,566 | INFO | App | Successfully initialized instance: tomcat-10.208.96.238-19003 | |
2020-01-29 17:43:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:24,567 | INFO | App | JMXFetch is closing | |
2020-01-29 17:43:24 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
JMXFetch exited successfully. If nothing was displayed please check your configuration, flags and the JMXFetch log file. |
This file has been truncated, but you can view the full file.
This file contains 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
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:601 in getKubeletHostFromConfig) | Trying to parse kubernetes_kubelet_host: 10.208.10.209 | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:616 in getKubeletHostFromConfig) | Parsed kubernetes_kubelet_host: 10.208.10.209 is an address: 10.208.10.209, cached, trying to resolve it to hostname | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:622 in getKubeletHostFromConfig) | kubernetes_kubelet_host: 10.208.10.209 is resolved to: [gke-hybris-cluster-hybris-node-pool-1e96161f-14jb.c.hybris-nonprod-0815.internal.] | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:582 in getPotentialKubeletHosts) | Got potential kubelet connection info from config, ips: [10.208.10.209], hostnames: [gke-hybris-cluster-hybris-node-pool-1e96161f-14jb.c.hybris-nonprod-0815.internal.] | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/docker/docker_util.go:108 in connectToDocker) | Successfully connected to Docker server version 18.09.7 | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:641 in getKubeletHostFromDocker) | Trying to resolve host name gke-hybris-cluster-hybris-node-pool-1e96161f-14jb provided by docker to ip... | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:647 in getKubeletHostFromDocker) | Resolved host name gke-hybris-cluster-hybris-node-pool-1e96161f-14jb provided by docker to [{10.208.10.209 }] | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:588 in getPotentialKubeletHosts) | Got potential kubelet connection info from docker, ips: [10.208.10.209], hostnames: [gke-hybris-cluster-hybris-node-pool-1e96161f-14jb] | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:683 in setKubeletHost) | Trying several connection methods to locate the kubelet... | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:725 in selectFromPotentialHostsHTTPS) | Trying to use host 10.208.10.209 with HTTPS | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:373 in setupKubeletApiClient) | Using HTTPS with service account bearer token | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:767 in checkKubeletHTTPSConnection) | Trying to query the kubelet endpoint ... | |
2020-01-29 17:43:42 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:771 in checkKubeletHTTPSConnection) | Successfully queried https://10.208.10.209:10250/ without any security settings, adding security transport settings to query https://10.208.10.209:10250/pods | |
2020-01-29 17:43:42 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:775 in checkKubeletHTTPSConnection) | Successfully connected securely to kubelet endpoint https://10.208.10.209:10250/pods | |
2020-01-29 17:43:42 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:778 in checkKubeletHTTPSConnection) | Successfully authorized to query the kubelet on https://10.208.10.209:10250/pods: 200, using https://10.208.10.209:10250 as kubelet endpoint | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:736 in selectFromPotentialHostsHTTPS) | Can connect to kubelet using 10.208.10.209 and HTTPS | |
2020-01-29 17:43:42 UTC | CORE | INFO | (pkg/util/kubernetes/kubelet/kubelet.go:686 in setKubeletHost) | Connection to the kubelet succeeded! 10.208.10.209 is set as kubelet host | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:373 in setupKubeletApiClient) | Using HTTPS with service account bearer token | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/kubelet.go:509 in setupKubeletApiEndpoint) | Kubelet endpoint is: https://10.208.10.209:10250 | |
2020-01-29 17:43:42 UTC | CORE | INFO | (pkg/tagger/tagger.go:152 in tryCollectors) | kubelet tag collector successfully started | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver.go:174 in connect) | Connected to kubernetes apiserver, version v1 | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver.go:180 in connect) | Could successfully collect Pods, Nodes, Services and Events | |
2020-01-29 17:43:42 UTC | CORE | INFO | (pkg/tagger/tagger.go:152 in tryCollectors) | kube-metadata-collector tag collector successfully started | |
2020-01-29 17:43:42 UTC | CORE | INFO | (pkg/tagger/tagger.go:152 in tryCollectors) | docker tag collector successfully started | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:150 in tryCollectors) | ecs_fargate tag collector cannot start: Failed to connect to task metadata API, ECS tagging will not work | |
2020-01-29 17:43:42 UTC | CORE | DEBUG | (pkg/util/ecs/ecs.go:223 in detectAgentURL) | Could not inspect ecs-agent container: "docker container ecs-agent" not found | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/util/ecs/ecs.go:96 in GetUtil) | ECS init error: temporary failure in ecsutil, will retry later: could not detect ECS agent, tried URLs: [http://169.254.1.1:51678/ http://localhost:51678/] | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:146 in tryCollectors) | will retry ecs later: temporary failure in ecsutil, will retry later: could not detect ECS agent, tried URLs: [http://169.254.1.1:51678/ http://localhost:51678/] | |
2020-01-29 17:43:43 UTC | CORE | INFO | (pkg/collector/runner/runner.go:92 in NewRunner) | Runner started with 4 workers. | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/collector/scheduler/scheduler.go:131 in func1) | Starting scheduler loop... | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/collector/runner/runner.go:241 in work) | Ready to process checks... | |
2020-01-29 17:43:43 UTC | CORE | INFO | (pkg/collector/python/init.go:287 in Initialize) | Initializing rtloader with python3 /opt/datadog-agent/embedded | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 13 changed pods out of 13 | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver_kubelet.go:32 in NodeMetadataMapping) | Successfully collected endpoints | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver_kubelet.go:49 in processKubeServices) | Identified: 1 node, 12 pod, 34 endpoints | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/apiserver_kubelet.go:67 in processKubeServices) | Refreshing cache for agent/KubernetesMetadataMapping/gke-hybris-cluster-hybris-node-pool-1e96161f-14jb | |
2020-01-29 17:43:43 UTC | CORE | DEBUG | (pkg/util/kubernetes/apiserver/services_kubelet.go:98 in MapOnRef) | Empty TargetRef on endpoint 10.208.12.2 of service kubernetes, skipping | |
2020-01-29 17:43:46 UTC | CORE | INFO | (pkg/collector/python/datadog_agent.go:120 in LogMessage) | - | (ddyaml.py:123) | monkey patching yaml.load... | |
2020-01-29 17:43:46 UTC | CORE | INFO | (pkg/collector/python/datadog_agent.go:120 in LogMessage) | - | (ddyaml.py:127) | monkey patching yaml.load_all... | |
2020-01-29 17:43:46 UTC | CORE | INFO | (pkg/collector/python/datadog_agent.go:120 in LogMessage) | - | (ddyaml.py:131) | monkey patching yaml.dump_all... (affects all yaml dump operations) | |
2020-01-29 17:43:46 UTC | CORE | INFO | (pkg/collector/collector.go:57 in NewCollector) | Embedding Python 3.7.4 (default, Dec 31 2019, 19:02:30) [GCC 4.7.2] | |
2020-01-29 17:43:46 UTC | CORE | DEBUG | (pkg/collector/collector.go:58 in NewCollector) | Python Home: /opt/datadog-agent/embedded | |
2020-01-29 17:43:46 UTC | CORE | DEBUG | (pkg/collector/collector.go:59 in NewCollector) | Python path: ['/opt/datadog-agent/embedded/lib/python37.zip', '/opt/datadog-agent/embedded/lib/python3.7', '/opt/datadog-agent/embedded/lib/python3.7/lib-dynload', '/opt/datadog-agent/embedded/lib/python3.7/site-packages', '/opt/datadog-agent/embedded/lib/python3.7/site-packages/setuptools-40.9.0.post20191231-py3.7.egg', '/opt/datadog-agent/embedded/lib/python3.7/site-packages/pip-19.3.1-py3.7.egg', '/opt/datadog-agent/bin/agent/dist', '/opt/datadog-agent/checks.d', '/opt/datadog-agent/bin/agent/dist/checks.d', '/etc/datadog-agent/checks.d'] | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/collector/collector.go:67 in NewCollector) | Collector up and running! | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/collector/scheduler.go:54 in InitCheckScheduler) | Added Python Check Loader to Check Scheduler | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/collector/scheduler.go:54 in InitCheckScheduler) | Added Core Check Loader to Check Scheduler | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/collector/scheduler.go:54 in InitCheckScheduler) | Added JMX Check Loader to Check Scheduler | |
2020-01-29 17:43:47 UTC | CORE | INFO | (cmd/agent/common/autoconfig.go:71 in SetupAutoConfig) | Registering kubelet config provider polled every 10s | |
2020-01-29 17:43:47 UTC | CORE | INFO | (cmd/agent/common/autoconfig.go:71 in SetupAutoConfig) | Registering docker config provider polled every 1s | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:337 in addListenerCandidates) | Listener kubelet was registered | |
2020-01-29 17:43:47 UTC | CORE | INFO | (pkg/autodiscovery/autoconfig.go:351 in initListenerCandidates) | kubelet listener successfully started | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 13 changed pods out of 13 | |
2020-01-29 17:43:47 UTC | CORE | ERROR | (pkg/autodiscovery/listeners/kubelet.go:168 in createPodService) | Unable to get pod kube-proxy-gke-hybris-cluster-hybris-node-pool-1e96161f-14jb IP | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod kube-proxy-gke-hybris-cluster-hybris-node-pool-1e96161f-14jb | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod netd-5kxcx | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://***************************381d6 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://4a252816d931c334109992b9bf25d440ff49581b9e721036efe31f2999f0717d not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gke.gcr.io/netd-amd64:v0.2.2-gke.0 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id netd-amd64 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod netd-5kxcx | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod netd-5kxcx | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://d2ab1ce5d7ec921211d27353227350786433e998e6e524731b314019135aa9a6 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gke.gcr.io/netd-amd64:v0.2.2-gke.0 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id netd-amd64 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://b7391d85-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod ip-masq-agent-www55 | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod ip-masq-agent-www55 | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://e5fea9943038b041dea80b747af446acecb96652496688e39290530c5f376f37 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/ip-masq-agent-amd64:v2.4.1 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id ip-masq-agent-amd64 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://b7380826-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod calico-node-g6ggr | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod calico-node-g6ggr | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://6eba0bb889c0a9afa0a518e4639e7ab8baf4ae3a2ccea4c6671ab2a3344bc493 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/projectcalico-org/node:v3.2.7 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id node not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://2ada36b70554f942adbb793ed793c4cd509cbf58936d3bafcf35eba069ae634d not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/projectcalico-org/cni:v3.2.7 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id cni not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod calico-node-g6ggr | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod prometheus-to-sd-rsfq8 | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://116f25cf-3eac-11ea-b215-42010ad00c04 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://9241a75c2469024f9972f425d8d1a740f4949d07160539931e415bada5b5f6f6 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.8.2 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod prometheus-to-sd-rsfq8 | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod prometheus-to-sd-rsfq8 | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://6fbf71b9c7bb339f490a7ef89cf8e9d6d11967c843b6deb7bb53312ee4714aa2 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.8.2 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://c91388cf-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod hybris-4 | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://8fe0432e9fe42de78442759cba4541bd94d26311b3559e2bd630a0d8874bb3f4 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash:latest not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://bb0b9ea78ae1e309f502c2c1480f9b3596fbbde073989113cb2a2ab939acd7d3 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id registry.gitlab.dm-drogeriemarkt.com/mythos/hybris/hybris:***********************************1dbf8 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id hybris not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://e0f1209e-41ac-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://4c300f6729f7c525d5a474ebb086f95d16f2b8112c2de4fdb4bae84c592af34c not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.26.1 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id nginx-ingress-controller not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod fluentd-gcp-v3.1.1-rbq2f | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://2a19b727-3de1-11ea-b215-42010ad00c04 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://70396a9f771df4d0c49dd3016db702d4a62028c0e2f3f260ef10add967d079d2 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/stackdriver-agents/stackdriver-logging-agent:1.6.17-16060 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id stackdriver-logging-agent not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod fluentd-gcp-v3.1.1-rbq2f | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:184 in createPodService) | No ports found for pod fluentd-gcp-v3.1.1-rbq2f | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://77eea1fc26003bf370897db48a0a44d37f2343d76523150bee8bc3500457a921 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.5.0 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://b7266d88-2ea2-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://63120a06f63671a1d024037d06c515a57167239872afbaeafd53479ec025ad7e not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/k8s-dns-dnsmasq-nanny-amd64:1.15.4 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s-dns-dnsmasq-nanny-amd64 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://548fb624d00c16e31753ff82dda09d6dc554be2eeff3518db34127283afe3b64 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/k8s-dns-kube-dns-amd64:1.15.4 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s-dns-kube-dns-amd64 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod kube-dns-5877696fb4-rww87 | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://98d7aa173b1fcc0b45c8212f8c035f317c057ac6d6e868cc7163f0b49b30e9cd not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/prometheus-to-sd:v0.4.2 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id prometheus-to-sd not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://e9e02e34a29ae7db5457f9d2e18f1a138955e1f6e658ab03061a8dbb017cbb86 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/k8s-dns-sidecar-amd64:1.15.4 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s-dns-sidecar-amd64 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://8f6c367d-2ea7-11ea-b99b-42010ad00c04 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://1c12318f823c0cbf0d1eff27cabd7db3fb0dc5c286dc3f67da56826834dc1f93 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id gcr.io/projectcalico-org/typha:v3.2.7 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id typha not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://fd9f2c2f-3eab-11ea-b215-42010ad00c04 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://98fcd2bfe08600d721b9ae951f1fedb4947f512bf01c2c425b8013848c8e3b77 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id datadog/agent:latest-jmx not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id agent not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://24cf3751-42b7-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod metrics-server-v0.3.1-744998dcbd-qftlp | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://e6040561d480a9674f60d4d6f560a281ac33071dc9cfc89fc4fcc72cb5fdb7c5 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/metrics-server-amd64:v0.3.1 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id metrics-server-amd64 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://5869f20381c13e047b236b9bddbe39488101f630dab8ec66dae41ee14dbc9d97 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id k8s.gcr.io/addon-resizer:1.8.4 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id addon-resizer not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://d26f3707-40f6-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/listeners/kubelet.go:274 in createService) | No ports found for pod hybris-4 | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://6a03c4dfea38327fadb2fcf74b8394dc7c08c0dbb9a593842205372612332ed5 not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash:latest not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id bash not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id docker://0d0ee7ab44da611a5d92fdf1c13b3fc0d55d4a19f5da92f5bf44a8dda97fd66b not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id registry.gitlab.dm-drogeriemarkt.com/mythos/hybris/hybris:***********************************c1c4b not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id hybris not found in cache | |
2020-01-29 17:43:47 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:588 in processNewService) | Unable to fetch templates from the cache: AD id kubernetes_pod://a30c9b47-42a6-11ea-b49b-42010ad00c0b not found in cache | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | docker provider: no configuration change | |
Loading configs : | |
2020-01-29 17:43:48 UTC | CORE | INFO | (pkg/autodiscovery/providers/file.go:74 in Collect) | file: searching for configuration files at: /etc/datadog-agent/conf.d | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/activemq.d/metrics.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/apache.d/auto_conf.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/cassandra.d/metrics.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/cilium.d/auto_conf.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/consul.d/auto_conf.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/coredns.d/auto_conf.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/couch.d/auto_conf.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/couchbase.d/auto_conf.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/cpu.d/conf.yaml.default | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/disk.d/conf.yaml.default | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/docker.d/conf.yaml.default | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/elastic.d/auto_conf.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/etcd.d/auto_conf.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/external_dns.d/auto_conf.yaml | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/file_handle.d/conf.yaml.default | |
2020-01-29 17:43:48 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/harbor.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/hive.d/metrics.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/io.d/conf.yaml.default | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/jboss_wildfly.d/metrics.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kafka.d/metrics.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kube_apiserver_metrics.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kube_dns.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kubelet.d/conf.yaml.default | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kubernetes_apiserver.d/conf.yaml.default | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kubernetes_state.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/kyototycoon.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/load.d/conf.yaml.default | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/mcache.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/memory.d/conf.yaml.default | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/network.d/conf.yaml.default | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/ntp.d/conf.yaml.default | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/presto.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/presto.d/metrics.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/redisdb.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/riak.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/solr.d/metrics.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/tomcat.d/auto_conf.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/tomcat.d/metrics.yaml | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/providers/file.go:196 in collectEntry) | Found valid configuration in file: /etc/datadog-agent/conf.d/uptime.d/conf.yaml.default | |
2020-01-29 17:43:49 UTC | CORE | INFO | (pkg/autodiscovery/providers/file.go:74 in Collect) | file: searching for configuration files at: /opt/datadog-agent/bin/agent/dist/conf.d | |
2020-01-29 17:43:49 UTC | CORE | WARN | (pkg/autodiscovery/providers/file.go:78 in Collect) | Skipping, open /opt/datadog-agent/bin/agent/dist/conf.d: no such file or directory | |
2020-01-29 17:43:49 UTC | CORE | INFO | (pkg/autodiscovery/providers/file.go:74 in Collect) | file: searching for configuration files at: | |
2020-01-29 17:43:49 UTC | CORE | WARN | (pkg/autodiscovery/providers/file.go:78 in Collect) | Skipping, open : no such file or directory | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: httpd | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for apache at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: cilium-agent | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for cilium at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: consul | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for consul at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: coredns | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for coredns at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: couchdb | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for couch at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: couchbase | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for couchbase at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: elasticsearch | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: elasticsearch-oss | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for elastic at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: etcd | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for etcd at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: external-dns | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for external_dns at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: nginx-photon | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for harbor at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kube-apiserver | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for kube_apiserver_metrics at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kubedns-amd64 | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/configresolver/configresolver.go:165 in getHost) | Network "" not found, trying bridge IP instead | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/configresolver/configresolver.go:165 in getHost) | Network "" not found, trying bridge IP instead | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:246 in Tag) | cache miss for docker, collecting tags for container_id://548fb624d00c16e31753ff82dda09d6dc554be2eeff3518db34127283afe3b64 | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kube-state-metrics | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for kubernetes_state at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: kyototycoon | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for kyototycoon at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: memcached | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for mcache at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: presto | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for presto at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: redis | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for redisdb at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: riak | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for riak at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:495 in resolveTemplate) | No service found with this AD identifier: tomcat | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/autoconfig.go:280 in processNewConfig) | Can't resolve the template for tomcat at this moment. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/autodiscovery/configresolver/configresolver.go:165 in getHost) | Network "" not found, trying bridge IP instead | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:246 in Tag) | cache miss for docker, collecting tags for container_id://bb0b9ea78ae1e309f502c2c1480f9b3596fbbde073989113cb2a2ab939acd7d3 | |
Config tomcat was loaded. | |
2020-01-29 17:43:49 UTC | CORE | DEBUG | (pkg/jmxfetch/jmxfetch.go:272 in Start) | Args: [-XX:+UseContainerSupport -classpath /opt/datadog-agent/bin/agent/dist/jmx/jmxfetch.jar org.datadog.jmxfetch.App --ipc_host localhost --ipc_port 44705 --check_period 15000 --thread_pool_size 3 --collection_timeout 60 --reconnection_timeout 10 --reconnection_thread_pool_size 3 --log_level INFO --reporter console list_not_matching_attributes] | |
2020-01-29 17:43:50 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:51 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:52 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:52 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:52 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:53 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:54 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:54 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:54,465 | INFO | App | JMX Fetch 0.33.1 has started | |
2020-01-29 17:43:55 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:56 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:57 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:57 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | kubernetes provider: no configuration change | |
2020-01-29 17:43:57 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:57 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:43:58 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:43:58 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:43:58,366 | INFO | App | Found 0 config files | |
2020-01-29 17:43:59 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:00 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:01 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:01 UTC | CORE | DEBUG | (cmd/agent/api/agent/agent_jmx.go:43 in getJMXConfigs) | Getting latest JMX Configs as of: 0 | |
2020-01-29 17:44:02 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:02,168 | INFO | App | update is in order - updating timestamp: 1580319841 | |
2020-01-29 17:44:02 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:02,168 | INFO | App | Cleaning up instances... | |
2020-01-29 17:44:02 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:02,169 | INFO | App | Dealing with YAML config instances... | |
2020-01-29 17:44:02 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:02,169 | INFO | App | Dealing with Auto-Config instances collected... | |
2020-01-29 17:44:02 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:02,169 | INFO | App | Instantiating instance for: tomcat | |
2020-01-29 17:44:02 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:02,267 | WARN | Instance | Cannot find a "conf" section in tomcat-10.208.96.238-19003 | |
2020-01-29 17:44:02 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:02 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:02 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:03 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:03 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:03,569 | INFO | App | Started instance initialization... | |
2020-01-29 17:44:03 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:03,667 | INFO | Instance | Trying to connect to JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:44:03 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:03,667 | INFO | Instance | Connection closed or does not exist. Attempting to create a new connection... | |
2020-01-29 17:44:03 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:03,669 | INFO | ConnectionFactory | Connecting using JMX Remote | |
2020-01-29 17:44:03 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:03,766 | INFO | Connection | Connecting to: service:jmx:rmi:///jndi/rmi://10.208.96.238:19003/jmxrmi | |
2020-01-29 17:44:04 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:05 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:06 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:07 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | kubernetes provider: no configuration change | |
2020-01-29 17:44:07 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:07 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:07 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:08 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:08 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:08,868 | INFO | Instance | Trying to collect bean list for the first time for JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:44:09 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:09 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:09,568 | INFO | Instance | Connected to JMX Server at 10.208.96.238:19003 | |
2020-01-29 17:44:09 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:09,568 | INFO | ConsoleReporter | ##################################### | |
2020-01-29 17:44:09 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:09,568 | INFO | ConsoleReporter | Instance: 10.208.96.238:19003 | |
2020-01-29 17:44:09 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:09,568 | INFO | ConsoleReporter | ##################################### | |
2020-01-29 17:44:10 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,467 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:10 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:10,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,468 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: ThreadAllocatedMemorySupported - Attribute type: boolean | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,469 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: ThreadAllocatedMemoryEnabled - Attribute type: boolean | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,469 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: ThreadContentionMonitoringEnabled - Attribute type: boolean | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,469 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: ThreadContentionMonitoringSupported - Attribute type: boolean | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,470 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: CurrentThreadCpuTimeSupported - Attribute type: boolean | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,470 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: ObjectMonitorUsageSupported - Attribute type: boolean | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,470 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: SynchronizerUsageSupported - Attribute type: boolean | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,470 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: ThreadCpuTimeEnabled - Attribute type: boolean | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,470 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: PeakThreadCount - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,471 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: DaemonThreadCount - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,474 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: TotalStartedThreadCount - Attribute type: long | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,482 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: CurrentThreadCpuTime - Attribute type: long | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,566 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: CurrentThreadUserTime - Attribute type: long | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,566 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Threading - Attribute name: ThreadCpuTimeSupported - Attribute type: boolean | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,871 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,872 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspCount - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspReloadCount - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspUnloadCount - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspQueueLength - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspCount - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspReloadCount - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspUnloadCount - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspQueueLength - Attribute type: int | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=importCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=importCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=importCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:11 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:11,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=importCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,066 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=org.springframework - Attribute name: Additive - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,066 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=org.springframework - Attribute name: IncludeLocation - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,066 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=org.springframework - Attribute name: Filter - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,066 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=org.springframework - Attribute name: Level - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,066 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=org.springframework - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: loaderRepositoriesString - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: loaderClass - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: platformHome - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: classpath - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,165 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit-default - Attribute name: deployName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,171 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: loaderRepositoriesString - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,171 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,172 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: loaderClass - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,172 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: platformHome - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,172 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,172 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: classpath - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,172 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,265 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/medias - Attribute name: deployName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:12 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,269 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=StatusLogger - Attribute name: ContextName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,269 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=StatusLogger - Attribute name: Level - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,271 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/maintenance - Attribute name: container - Attribute type: java.lang.Object | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,271 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/maintenance - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit - Attribute name: cachingAllowed - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit - Attribute name: trackLockedFiles - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit - Attribute name: allowLinking - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,467 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,467 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,467 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,467 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateChainFile - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: hostName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: disableCompression - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: truststoreType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateRevocationListPath - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: caCertificatePath - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,571 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: configType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,571 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateVerification - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,571 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: keyManagerAlgorithm - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,571 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: truststorePassword - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,571 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateKeyAlias - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,571 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateKeystoreType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,571 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: trustManagerClassName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,571 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: honorCipherOrder - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateVerificationAsString - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: ciphers - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: disableSessionTickets - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateVerificationDepthConfigured - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: protocols - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: truststoreAlgorithm - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | DEBUG | (pkg/util/ecs/ecs.go:96 in GetUtil) | ECS init error: temporary failure in ecsutil, will retry later: try delay not elapsed yet | |
2020-01-29 17:44:12 UTC | CORE | DEBUG | (pkg/tagger/tagger.go:146 in tryCollectors) | will retry ecs later: temporary failure in ecsutil, will retry later: try delay not elapsed yet | |
2020-01-29 17:44:12 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateRevocationListFile - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: caCertificateFile - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: insecureRenegotiation - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: truststoreProvider - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,572 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateKeyFile - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,665 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateKeystoreFile - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: revocationEnabled - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateKeystoreProvider - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: sessionCacheSize - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: openSslConfContext - Attribute type: java.lang.Long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: openSslContext - Attribute type: java.lang.Long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateKeystorePassword - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: sslProtocol - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: truststoreFile - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateFile - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateVerificationDepth - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfig,ThreadPool="https-jsse-nio-18443",name="_default_" - Attribute name: certificateKeyPassword - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit-default - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit-default - Attribute name: cachingAllowed - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit-default - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit-default - Attribute name: trackLockedFiles - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit-default - Attribute name: allowLinking - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=NonLoginAuthenticator - Attribute name: cache - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=NonLoginAuthenticator - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=NonLoginAuthenticator - Attribute name: changeSessionIdOnAuthentication - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=NonLoginAuthenticator - Attribute name: disableProxyCaching - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=NonLoginAuthenticator - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=NonLoginAuthenticator - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=NonLoginAuthenticator - Attribute name: securePagesWithPragma - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/productcockpit-default,name=Cache - Attribute name: objectMaxSize - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/productcockpit-default,name=Cache - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,781 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/productcockpit-default,name=Cache - Attribute name: hitCount - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/productcockpit-default,name=Cache - Attribute name: size - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/productcockpit-default,name=Cache - Attribute name: maxSize - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/productcockpit-default,name=Cache - Attribute name: lookupCount - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/productcockpit-default,name=Cache - Attribute name: ttl - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,784 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: hostName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,784 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: contextName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,784 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,784 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: clearReferencesObjectStreamClassCaches - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,784 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,784 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: serviceName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,784 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: clearReferencesHttpClientKeepAliveThread - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,785 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,785 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,785 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,785 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: clearReferencesLogFactoryRelease - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,785 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,785 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,785 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: defaultAssertionStatus - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,785 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/backoffice - Attribute name: webappName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,787 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,865 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:12 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:12,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,065 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/maintenance,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/acceleratorservices - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/acceleratorservices - Attribute name: cachingAllowed - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/acceleratorservices - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/acceleratorservices - Attribute name: trackLockedFiles - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/acceleratorservices - Attribute name: allowLinking - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,572 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmShop Region Cache - Attribute name: CacheFillRatio - Attribute type: java.lang.Integer | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,572 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmShop Region Cache - Attribute name: CurrentCacheSize - Attribute type: java.lang.Long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,572 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmShop Region Cache - Attribute name: EvictionCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,572 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmShop Region Cache - Attribute name: FetchCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,572 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmShop Region Cache - Attribute name: HitCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,572 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmShop Region Cache - Attribute name: HitRatio - Attribute type: java.lang.Integer | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,572 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmShop Region Cache - Attribute name: InvalidationCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,572 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmShop Region Cache - Attribute name: MaximumCacheSize - Attribute type: java.lang.Long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,572 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmShop Region Cache - Attribute name: MissCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,574 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,574 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,574 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,574 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/ - Attribute name: container - Attribute type: java.lang.Object | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/ - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,668 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=Y2YSyncLogger - Attribute name: Layout - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,668 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=Y2YSyncLogger - Attribute name: IgnoreExceptions - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,668 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=Y2YSyncLogger - Attribute name: ErrorHandler - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,668 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=Y2YSyncLogger - Attribute name: Filter - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,668 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=Y2YSyncLogger - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/mcc,name=StandardContextValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/mcc,name=StandardContextValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/mcc,name=StandardContextValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/mcc,name=StandardContextValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,670 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: Version - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,670 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: DebugEnabled - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,670 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: LaunchedAsService - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,670 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: BuildTime - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,671 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: JVMId - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,671 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: ProfessionalEdition - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,671 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: StandardEdition - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,671 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: ConsoleTitle - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,671 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: WrapperPID - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,671 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: JavaPID - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,671 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: ControlledByNativeWrapper - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,671 | INFO | ConsoleReporter | Not Matching: Bean name: org.tanukisoftware.wrapper:type=WrapperManager - Attribute name: HasShutdownHookBeenTriggered - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: errorReportValveClass - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: contextClass - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: deployXML - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: undeployOldVersions - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: deployIgnore - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: deployOnStartup - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: unpackWARs - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: configClass - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: startStopThreads - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: autoDeploy - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: xmlBase - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: appBase - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: copyXML - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: createDirs - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Host,host=localhost - Attribute name: startChildren - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: sessionAttributeValueClassNameFilter - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: warnOnSessionAttributeFilterFailure - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: secureRandomAlgorithm - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: secureRandomClass - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: sessionAverageAliveTime - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: rejectedSessions - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: processExpiresFrequency - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: duplicates - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: maxActiveSessions - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: sessionMaxAliveTime - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: pathname - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: sessionExpireRate - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: sessionAttributeNameFilter - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: activeSessions - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: sessionCreateRate - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: secureRandomProvider - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: jvmRoute - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: expiredSessions - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: maxActive - Attribute type: int | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/authorizationserver - Attribute name: sessionCounter - Attribute type: long | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=StandardContextValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=StandardContextValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=StandardContextValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=StandardContextValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=occSingletonFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=occSingletonFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=occSingletonFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=occSingletonFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,969 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name= - Attribute name: Additive - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,969 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name= - Attribute name: IncludeLocation - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,969 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name= - Attribute name: Filter - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,969 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name= - Attribute name: Level - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,969 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name= - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: loaderRepositoriesString - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: loaderClass - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: platformHome - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: classpath - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:13 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:13,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/productcockpit - Attribute name: deployName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=NonLoginAuthenticator - Attribute name: cache - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=NonLoginAuthenticator - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=NonLoginAuthenticator - Attribute name: changeSessionIdOnAuthentication - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=NonLoginAuthenticator - Attribute name: disableProxyCaching - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=NonLoginAuthenticator - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=NonLoginAuthenticator - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/admincockpit,name=NonLoginAuthenticator - Attribute name: securePagesWithPragma - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,265 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,265 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=MBeanFactory - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: bufferPool - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: processorCache - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: appWriteBufSize - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: rxBufSize - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: directBuffer - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: bufferPoolSize - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: txBufSize - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: ooBInline - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: appReadBufSize - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: soLingerTime - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: soTimeout - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: directSslBuffer - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: eventCache - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: soReuseAddress - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: directBufferPool - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: performanceBandwidth - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: unlockTimeout - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: performanceLatency - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: timeoutInterval - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: performanceConnectionTime - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: tcpNoDelay - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: soKeepAlive - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443",subType=SocketProperties - Attribute name: soLingerOn - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: loaderRepositoriesString - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: loaderClass - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: platformHome - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: classpath - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/backoffice - Attribute name: deployName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: currentQueryString - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: workerThreadName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: lastRequestProcessingTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: virtualHost - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: serverPort - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: remoteAddrForwarded - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: protocol - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: remoteAddr - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: method - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: currentUri - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: bytesSent - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: requestProcessingTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: bytesReceived - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: maxRequestUri - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: stage - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: requestBytesSent - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: requestBytesReceived - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest11 - Attribute name: contentLength - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,371 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=hsqldb.db - Attribute name: Additive - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=hsqldb.db - Attribute name: IncludeLocation - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=hsqldb.db - Attribute name: Filter - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=hsqldb.db - Attribute name: Level - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=hsqldb.db - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: secureRandomAlgorithm - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: cache - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: changeSessionIdOnAuthentication - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: disableProxyCaching - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: secureRandomClass - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: secureRandomProvider - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: alwaysUseSession - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,372 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: trimCredentials - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,373 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,373 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=BasicAuthenticator - Attribute name: securePagesWithPragma - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=mccFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=mccFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=mccFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=mccFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,665 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:14 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=cockpitFCKConfigLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/importcockpit,name=StandardContextValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/importcockpit,name=StandardContextValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/importcockpit,name=StandardContextValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/importcockpit,name=StandardContextValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit,name=Cache - Attribute name: objectMaxSize - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit,name=Cache - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit,name=Cache - Attribute name: hitCount - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit,name=Cache - Attribute name: size - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit,name=Cache - Attribute name: maxSize - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit,name=Cache - Attribute name: lookupCount - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/importcockpit,name=Cache - Attribute name: ttl - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=StringCache - Attribute name: accessCount - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=StringCache - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=StringCache - Attribute name: hitCount - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=StringCache - Attribute name: cacheSize - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=StringCache - Attribute name: trainThreshold - Attribute type: int | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=StringCache - Attribute name: charEnabled - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=StringCache - Attribute name: byteEnabled - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=productCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=productCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=productCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:14,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=productCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,167 | INFO | ConsoleReporter | Not Matching: Bean name: de.filiadata.adapter.acl.mock:name=ACLServiceMockJmxController - Attribute name: NextDeliveryStatus - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,167 | INFO | ConsoleReporter | Not Matching: Bean name: de.filiadata.adapter.acl.mock:name=ACLServiceMockJmxController - Attribute name: NextReadCallSuccess - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,167 | INFO | ConsoleReporter | Not Matching: Bean name: de.filiadata.adapter.acl.mock:name=ACLServiceMockJmxController - Attribute name: NextSubsidiaryNumber - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,168 | INFO | ConsoleReporter | Not Matching: Bean name: de.filiadata.adapter.acl.mock:name=ACLServiceMockJmxController - Attribute name: NextWriteCallSuccess - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,378 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,379 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: ClassPath - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,465 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: BootClassPathSupported - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,466 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: VmName - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,565 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: VmVendor - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,566 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: VmVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,566 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: LibraryPath - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,566 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: BootClassPath - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,567 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: Uptime - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,567 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: StartTime - Attribute type: long | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,567 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: SpecName - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,568 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: SpecVendor - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,568 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: SpecVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,569 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: ManagementSpecVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,665 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Runtime - Attribute name: SystemProperties - Attribute type: javax.management.openmbean.TabularData | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/processing - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/processing - Attribute name: cachingAllowed - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/processing - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/processing - Attribute name: trackLockedFiles - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/processing - Attribute name: allowLinking - Attribute type: boolean | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=springHiddenHttpMethodFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=springHiddenHttpMethodFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,865 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=springHiddenHttpMethodFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,865 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=springHiddenHttpMethodFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:15 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,867 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: currentQueryString - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: workerThreadName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: lastRequestProcessingTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: virtualHost - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: serverPort - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: remoteAddrForwarded - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: protocol - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: remoteAddr - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: method - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: currentUri - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: bytesSent - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: requestProcessingTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: bytesReceived - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:15,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: maxRequestUri - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: stage - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: requestBytesSent - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: requestBytesReceived - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest4 - Attribute name: contentLength - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mediaconversion,name=InitFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mediaconversion,name=InitFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mediaconversion,name=InitFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,068 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mediaconversion,name=InitFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeAppMediaFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeAppMediaFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeAppMediaFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeAppMediaFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,265 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,265 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/medias,name=MediaNotAuthorizedFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/medias,name=MediaNotAuthorizedFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/medias,name=MediaNotAuthorizedFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/medias,name=MediaNotAuthorizedFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=StandardContextValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=StandardContextValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=StandardContextValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/productcockpit-default,name=StandardContextValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,469 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/acceleratorservices,name=NonLoginAuthenticator - Attribute name: cache - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/acceleratorservices,name=NonLoginAuthenticator - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/acceleratorservices,name=NonLoginAuthenticator - Attribute name: changeSessionIdOnAuthentication - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/acceleratorservices,name=NonLoginAuthenticator - Attribute name: disableProxyCaching - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/acceleratorservices,name=NonLoginAuthenticator - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/acceleratorservices,name=NonLoginAuthenticator - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/acceleratorservices,name=NonLoginAuthenticator - Attribute name: securePagesWithPragma - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit - Attribute name: cachingAllowed - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit - Attribute name: trackLockedFiles - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit - Attribute name: allowLinking - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeMobileFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeMobileFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeMobileFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeMobileFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,767 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.IgnoreTenantScopeMetadataResolver - Attribute name: Additive - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,767 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.IgnoreTenantScopeMetadataResolver - Attribute name: IncludeLocation - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,767 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.IgnoreTenantScopeMetadataResolver - Attribute name: Filter - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,767 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.IgnoreTenantScopeMetadataResolver - Attribute name: Level - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,767 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.IgnoreTenantScopeMetadataResolver - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit,name=Cache - Attribute name: objectMaxSize - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit,name=Cache - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit,name=Cache - Attribute name: hitCount - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit,name=Cache - Attribute name: size - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit,name=Cache - Attribute name: maxSize - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit,name=Cache - Attribute name: lookupCount - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/admincockpit,name=Cache - Attribute name: ttl - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/authorizationserver,name=NonLoginAuthenticator - Attribute name: cache - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/authorizationserver,name=NonLoginAuthenticator - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/authorizationserver,name=NonLoginAuthenticator - Attribute name: changeSessionIdOnAuthentication - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/authorizationserver,name=NonLoginAuthenticator - Attribute name: disableProxyCaching - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/authorizationserver,name=NonLoginAuthenticator - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/authorizationserver,name=NonLoginAuthenticator - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/authorizationserver,name=NonLoginAuthenticator - Attribute name: securePagesWithPragma - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=MultipartFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=MultipartFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=MultipartFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=MultipartFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,770 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: loaderRepositoriesString - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: loaderClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: platformHome - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: classpath - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,771 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/processing - Attribute name: deployName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: loaderRepositoriesString - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: loaderClass - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: platformHome - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: classpath - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,772 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/authorizationserver - Attribute name: deployName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:16 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,774 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/authorizationserver,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: protocolHeader - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: protocolHeaderHttpsValue - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: trustedProxies - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: remoteIpHeader - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: proxiesHeader - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: httpServerPort - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: internalProxies - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,name=RemoteIpValve - Attribute name: httpsServerPort - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: currentQueryString - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: workerThreadName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,775 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: lastRequestProcessingTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: virtualHost - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: serverPort - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: remoteAddrForwarded - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: protocol - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: remoteAddr - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: method - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: currentUri - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: bytesSent - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: requestProcessingTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: bytesReceived - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: maxRequestUri - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: stage - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: requestBytesSent - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: requestBytesReceived - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,776 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest5 - Attribute name: contentLength - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,777 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: hostName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: contextName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: clearReferencesObjectStreamClassCaches - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: serviceName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: clearReferencesHttpClientKeepAliveThread - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: clearReferencesLogFactoryRelease - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: defaultAssertionStatus - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit - Attribute name: webappName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/dmcommercewebservices - Attribute name: container - Attribute type: java.lang.Object | |
2020-01-29 17:44:17 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,778 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/dmcommercewebservices - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,779 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/medias,name=MediaFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,779 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/medias,name=MediaFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,779 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/medias,name=MediaFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,779 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/medias,name=MediaFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,779 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=adminCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,779 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=adminCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,779 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=adminCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,779 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/admincockpit,name=adminCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,781 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmPimJobs Region Cache - Attribute name: CacheFillRatio - Attribute type: java.lang.Integer | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,781 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmPimJobs Region Cache - Attribute name: CurrentCacheSize - Attribute type: java.lang.Long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,781 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmPimJobs Region Cache - Attribute name: EvictionCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,781 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmPimJobs Region Cache - Attribute name: FetchCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,781 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmPimJobs Region Cache - Attribute name: HitCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,781 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmPimJobs Region Cache - Attribute name: HitRatio - Attribute type: java.lang.Integer | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,781 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmPimJobs Region Cache - Attribute name: InvalidationCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,781 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmPimJobs Region Cache - Attribute name: MaximumCacheSize - Attribute type: java.lang.Long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,781 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,region=dmPimJobs Region Cache - Attribute name: MissCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:17 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,782 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:97 in poll) | kubernetes provider: no configuration change | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,783 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/maintenance,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: sessionAttributeValueClassNameFilter - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: warnOnSessionAttributeFilterFailure - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: secureRandomAlgorithm - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: secureRandomClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: sessionAverageAliveTime - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: rejectedSessions - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: processExpiresFrequency - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: duplicates - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: maxActiveSessions - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: sessionMaxAliveTime - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: pathname - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: sessionExpireRate - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: sessionAttributeNameFilter - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: activeSessions - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: sessionCreateRate - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:16,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,065 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: secureRandomProvider - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,165 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: jvmRoute - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: expiredSessions - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: maxActive - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/processing - Attribute name: sessionCounter - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/mcc,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: loaderRepositoriesString - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: loaderClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: platformHome - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: classpath - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/mcc - Attribute name: deployName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,266 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,268 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mediaconversion,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,486 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: Valid - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,487 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,487 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: Type - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,767 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: PeakUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,768 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: UsageThreshold - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,768 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: UsageThresholdExceeded - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,768 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: UsageThresholdCount - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,871 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: UsageThresholdSupported - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,872 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: CollectionUsageThreshold - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,872 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: CollectionUsageThresholdExceeded - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,872 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: CollectionUsageThresholdCount - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,874 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: CollectionUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,874 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Par Survivor Space - Attribute name: CollectionUsageThresholdSupported - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/authorizationserver - Attribute name: container - Attribute type: java.lang.Object | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/authorizationserver - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=springHacFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=springHacFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=springHacFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=springHacFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:17,968 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.queue.tasks.size - Attribute name: Value - Attribute type: java.lang.Object | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=pimStatusServlet,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,068 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=queue.size - Attribute name: Count - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: hostName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: contextName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: clearReferencesObjectStreamClassCaches - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: serviceName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: clearReferencesHttpClientKeepAliveThread - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: clearReferencesLogFactoryRelease - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: defaultAssertionStatus - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,167 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/acceleratorservices - Attribute name: webappName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: StdDev - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: 98thPercentile - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: 75thPercentile - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: 95thPercentile - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: 99thPercentile - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: DurationUnit - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: 50thPercentile - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: Min - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: Mean - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: 999thPercentile - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: Max - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: OneMinuteRate - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: MeanRate - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: FifteenMinuteRate - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: FiveMinuteRate - Attribute type: double | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: RateUnit - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,267 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.countTasks.time - Attribute name: Count - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,269 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=SOLRSTATS - Attribute name: Layout - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,270 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=SOLRSTATS - Attribute name: IgnoreExceptions - Attribute type: boolean | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,270 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=SOLRSTATS - Attribute name: ErrorHandler - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,270 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=SOLRSTATS - Attribute name: Filter - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,270 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Appenders,name=SOLRSTATS - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/acceleratorservices,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/acceleratorservices,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/acceleratorservices,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/acceleratorservices,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:18 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,370 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: Valid - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,478 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,566 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: Type - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,566 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: Usage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,567 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: PeakUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,567 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: UsageThreshold - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,568 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: UsageThresholdExceeded - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,568 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: UsageThresholdCount - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,568 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: UsageThresholdSupported - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,568 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: CollectionUsageThreshold - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,568 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: CollectionUsageThresholdExceeded - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,569 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: CollectionUsageThresholdCount - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,569 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: CollectionUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,569 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Code Cache - Attribute name: CollectionUsageThresholdSupported - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,668 | INFO | ConsoleReporter | Not Matching: Bean name: java.nio:type=BufferPool,name=direct - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,668 | INFO | ConsoleReporter | Not Matching: Bean name: java.nio:type=BufferPool,name=direct - Attribute name: Count - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,668 | INFO | ConsoleReporter | Not Matching: Bean name: java.nio:type=BufferPool,name=direct - Attribute name: TotalCapacity - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,668 | INFO | ConsoleReporter | Not Matching: Bean name: java.nio:type=BufferPool,name=direct - Attribute name: MemoryUsed - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources - Attribute name: container - Attribute type: java.lang.Object | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=StandardContextValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=StandardContextValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=StandardContextValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=StandardContextValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspReloadCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspUnloadCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspQueueLength - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/backoffice,name=StandardContextValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/backoffice,name=StandardContextValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/backoffice,name=StandardContextValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/backoffice,name=StandardContextValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,867 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/mediaconversion - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/mediaconversion - Attribute name: cachingAllowed - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/mediaconversion - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/mediaconversion - Attribute name: trackLockedFiles - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/mediaconversion - Attribute name: allowLinking - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/productcockpit-default - Attribute name: container - Attribute type: java.lang.Object | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:18,869 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/productcockpit-default - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,166 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/acceleratorservices,name=DispatcherServlet,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:19 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,170 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/dmcommercewebservices,name=springmvc,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,175 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=GarbageCollector,name=ConcurrentMarkSweep - Attribute name: LastGcInfo - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,368 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=GarbageCollector,name=ConcurrentMarkSweep - Attribute name: Valid - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,368 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=GarbageCollector,name=ConcurrentMarkSweep - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: hostName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: contextName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: clearReferencesObjectStreamClassCaches - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: serviceName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: clearReferencesHttpClientKeepAliveThread - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: clearReferencesLogFactoryRelease - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: defaultAssertionStatus - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/importcockpit-default - Attribute name: webappName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=GlobalRequestProcessor,name="http-nio-18080" - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=GlobalRequestProcessor,name="http-nio-18080" - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=GlobalRequestProcessor,name="http-nio-18080" - Attribute name: bytesReceived - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=GlobalRequestProcessor,name="http-nio-18080" - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=GlobalRequestProcessor,name="http-nio-18080" - Attribute name: bytesSent - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=GlobalRequestProcessor,name="http-nio-18080" - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=GlobalRequestProcessor,name="http-nio-18080" - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/admincockpit - Attribute name: container - Attribute type: java.lang.Object | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/admincockpit - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,384 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,384 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,384 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,384 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit-default,name=requestContextFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,665 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,665 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,665 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/authorizationserver,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: loaderRepositoriesString - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: loaderClass - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: platformHome - Attribute type: java.lang.String | |
2020-01-29 17:44:19 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: classpath - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,670 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/admincockpit - Attribute name: deployName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,671 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=CORS,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,671 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=CORS,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,671 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=CORS,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,671 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=CORS,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,671 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/ - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,671 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/ - Attribute name: cachingAllowed - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,671 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/ - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,671 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/ - Attribute name: trackLockedFiles - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,773 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/ - Attribute name: allowLinking - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,874 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/,name=StandardContextValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,874 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/,name=StandardContextValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,874 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/,name=StandardContextValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,874 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/,name=StandardContextValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,876 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: hostName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,876 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: contextName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,876 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,876 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: clearReferencesObjectStreamClassCaches - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,876 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: serviceName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: clearReferencesHttpClientKeepAliveThread - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: clearReferencesLogFactoryRelease - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,965 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: defaultAssertionStatus - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=HybrisWebappClassLoader,host=localhost,context=/mcc - Attribute name: webappName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,967 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,971 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,972 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,972 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/importcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,972 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/processing,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,972 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/processing,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspCount - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,972 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/processing,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspReloadCount - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,973 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/processing,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspUnloadCount - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:19,973 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/processing,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspQueueLength - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit-default,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=StandardHostValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=StandardHostValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=StandardHostValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,069 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=StandardHostValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,165 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Compilation - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,166 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Compilation - Attribute name: CompilationTimeMonitoringSupported - Attribute type: boolean | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,166 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=Compilation - Attribute name: TotalCompilationTime - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/,name=Cache - Attribute name: objectMaxSize - Attribute type: int | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/,name=Cache - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/,name=Cache - Attribute name: hitCount - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/,name=Cache - Attribute name: size - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/,name=Cache - Attribute name: maxSize - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/,name=Cache - Attribute name: lookupCount - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,168 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/,name=Cache - Attribute name: ttl - Attribute type: long | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:20 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,169 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/dmcommercewebservices,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,170 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: StdDev - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,365 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: 98thPercentile - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,365 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: 75thPercentile - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,365 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: 95thPercentile - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,365 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: 99thPercentile - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,365 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: DurationUnit - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,365 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: 50thPercentile - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,365 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: Min - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,365 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: Mean - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,365 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: 999thPercentile - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,366 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: Max - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,366 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: OneMinuteRate - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,366 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: MeanRate - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,366 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: FifteenMinuteRate - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,366 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: FiveMinuteRate - Attribute type: double | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,366 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: RateUnit - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,366 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=execution.lock.time - Attribute name: Count - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: currentQueryString - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: workerThreadName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: lastRequestProcessingTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: virtualHost - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: serverPort - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: remoteAddrForwarded - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: protocol - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: remoteAddr - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: method - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: currentUri - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: bytesSent - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: requestProcessingTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: bytesReceived - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: maxRequestUri - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: stage - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: requestBytesSent - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: requestBytesReceived - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,367 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=RequestProcessor,worker="http-nio-18080",name=HttpRequest3 - Attribute name: contentLength - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: certificateChainFile - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: certificateKeyAlias - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: certificateKeystoreType - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: certificateKeystorePassword - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: certificateKeyFile - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: certificateFile - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: certificateKeystoreFile - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: certificateKeystoreProvider - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=SSLHostConfigCertificate,ThreadPool="https-jsse-nio-18443",Host="_default_",name=UNDEFINED - Attribute name: certificateKeyPassword - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/dmcommercewebservices,name=Cache - Attribute name: objectMaxSize - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/dmcommercewebservices,name=Cache - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/dmcommercewebservices,name=Cache - Attribute name: hitCount - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/dmcommercewebservices,name=Cache - Attribute name: size - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/dmcommercewebservices,name=Cache - Attribute name: maxSize - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/dmcommercewebservices,name=Cache - Attribute name: lookupCount - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/dmcommercewebservices,name=Cache - Attribute name: ttl - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/importcockpit - Attribute name: container - Attribute type: java.lang.Object | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/importcockpit - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=NonLoginAuthenticator - Attribute name: cache - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=NonLoginAuthenticator - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=NonLoginAuthenticator - Attribute name: changeSessionIdOnAuthentication - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=NonLoginAuthenticator - Attribute name: disableProxyCaching - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=NonLoginAuthenticator - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=NonLoginAuthenticator - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/medias,name=NonLoginAuthenticator - Attribute name: securePagesWithPragma - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/processing,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/processing,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/processing,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/processing,name=XSSFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=default,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,470 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,471 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:21 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,472 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,473 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,473 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,473 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,473 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,473 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,473 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,473 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,473 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/acceleratorservices,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,474 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=StandardContextValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:22 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,474 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=StandardContextValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,474 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=StandardContextValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,474 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,context=/processing,name=StandardContextValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,475 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/processing,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,673 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/processing,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,673 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/processing,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,673 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/processing,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,675 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit,name=yCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,675 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit,name=yCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,675 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit,name=yCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,675 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/importcockpit,name=yCockpitFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,865 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,866 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=characterEncodingFilter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,868 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=auEngine,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:20,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,076 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,077 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/backoffice,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: StdDev - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: 98thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: 75thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: 95thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: 99thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: DurationUnit - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: 50thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: Min - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: Mean - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: 999thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: Max - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: OneMinuteRate - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: MeanRate - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: FifteenMinuteRate - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: FiveMinuteRate - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: RateUnit - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,079 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.activateWorkers.time - Attribute name: Count - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,266 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: Valid - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,266 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,266 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: Type - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | DEBUG | (pkg/util/kubernetes/kubelet/podwatcher.go:139 in computeChanges) | Found 0 changed pods out of 13 | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,365 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: Usage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: PeakUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: UsageThreshold - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: UsageThresholdExceeded - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: UsageThresholdCount - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: UsageThresholdSupported - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: CollectionUsageThreshold - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: CollectionUsageThresholdExceeded - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: CollectionUsageThresholdCount - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: CollectionUsage - Attribute type: javax.management.openmbean.CompositeData | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,366 | INFO | ConsoleReporter | Not Matching: Bean name: java.lang:type=MemoryPool,name=Compressed Class Space - Attribute name: CollectionUsageThresholdSupported - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,368 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.ctx.TenantIgnoreXmlWebApplicationContext - Attribute name: Additive - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,368 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.ctx.TenantIgnoreXmlWebApplicationContext - Attribute name: IncludeLocation - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,368 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.ctx.TenantIgnoreXmlWebApplicationContext - Attribute name: Filter - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,368 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.ctx.TenantIgnoreXmlWebApplicationContext - Attribute name: Level - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,368 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.spring.ctx.TenantIgnoreXmlWebApplicationContext - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/importcockpit-default,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: StdDev - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: 98thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,369 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: 75thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: 95thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: 99thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: DurationUnit - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: 50thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: Min - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: Mean - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: 999thPercentile - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: Max - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: OneMinuteRate - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: MeanRate - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: FifteenMinuteRate - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: FiveMinuteRate - Attribute type: double | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: RateUnit - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: hybris-metrics:tenant=master,extension=processing,module=taskEngine,name=pooling.scheduler.time - Attribute name: Count - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,370 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,371 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,379 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,379 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,380 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: currentThreadsBusy - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,380 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: sslImplementationName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,380 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: selectorTimeout - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: connectionCount - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: acceptCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: threadPriority - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: executorTerminationTimeoutMillis - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: running - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: currentThreadCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: sSLEnabled - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: sniParseLimit - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: maxThreads - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: connectionTimeout - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: tcpNoDelay - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: maxConnections - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,381 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: connectionLinger - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: keepAliveCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: keepAliveTimeout - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: maxKeepAliveRequests - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: localPort - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: deferAccept - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: useSendfile - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: acceptorThreadCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: pollerThreadCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: daemon - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: minSpareThreads - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: useInheritedChannel - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: alpnSupported - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: acceptorThreadPriority - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: bindOnInit - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: pollerThreadPriority - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: port - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=ThreadPool,name="https-jsse-nio-18443" - Attribute name: defaultSSLHostConfigName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,679 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:22 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,680 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:21,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,065 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,065 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,065 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,065 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,065 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,065 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,273 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,274 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,274 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,274 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,274 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,274 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,274 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,274 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/productcockpit,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,565 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,565 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,565 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,565 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,566 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=controllers,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,665 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,665 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,665 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,665 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/backoffice,name=CometAsyncServlet,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,667 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/productcockpit-default,name=springSecurityFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/maintenance,name=Cache - Attribute name: objectMaxSize - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/maintenance,name=Cache - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/maintenance,name=Cache - Attribute name: hitCount - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,668 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/maintenance,name=Cache - Attribute name: size - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/maintenance,name=Cache - Attribute name: maxSize - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/maintenance,name=Cache - Attribute name: lookupCount - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,669 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=WebResourceRoot,host=localhost,context=/maintenance,name=Cache - Attribute name: ttl - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,766 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,767 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=dspLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/maintenance,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/maintenance,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/maintenance,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,768 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/maintenance,name=Tomcat WebSocket (JSR356) Filter,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,769 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,865 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,867 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,867 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Filter,WebModule=//localhost/backoffice,name=backofficeFilterChain,J2EEApplication=none,J2EEServer=none - Attribute name: filterInitParameterMap - Attribute type: java.util.Map | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: CurrentCacheSize - Attribute type: java.lang.Integer | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: CurrentCacheSizeInPercent - Attribute type: java.lang.Integer | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: EntitiesAddCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: EntitiesGetCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: EntitiesMissCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: EntitiesMissCountInPercent - Attribute type: java.lang.Long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: EntitiesRemoveCount - Attribute type: java.lang.Long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: MaxReachedCacheSize - Attribute type: java.lang.Integer | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: MaxReachedCacheSizeInPercent - Attribute type: java.lang.Integer | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,869 | INFO | ConsoleReporter | Not Matching: Bean name: hybris:tenantscope=Master Tenant,main=Cache Main - Attribute name: MaximumCacheSize - Attribute type: java.lang.Integer | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: loaderRepositoriesString - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: loaderClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: platformHome - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: classpath - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: domain - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,870 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Loader,host=localhost,context=/acceleratorservices - Attribute name: deployName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,871 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/mediaconversion - Attribute name: container - Attribute type: java.lang.Object | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,871 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=NamingResources,host=localhost,context=/mediaconversion - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=ErrorReportValve - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=ErrorReportValve - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=ErrorReportValve - Attribute name: showReport - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=ErrorReportValve - Attribute name: showServerInfo - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=ErrorReportValve - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:22,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Valve,host=localhost,name=ErrorReportValve - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,066 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,067 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/productcockpit-default,name=zkLoader,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,189 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: sessionAttributeValueClassNameFilter - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,365 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,365 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: warnOnSessionAttributeFilterFailure - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,365 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,365 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: secureRandomAlgorithm - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,365 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: secureRandomClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,365 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: sessionAverageAliveTime - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: rejectedSessions - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: processExpiresFrequency - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: duplicates - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: maxActiveSessions - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: sessionMaxAliveTime - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: pathname - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: sessionExpireRate - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: sessionAttributeNameFilter - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: activeSessions - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: sessionCreateRate - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: secureRandomProvider - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: jvmRoute - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: expiredSessions - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: maxActive - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,366 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Manager,host=localhost,context=/mediaconversion - Attribute name: sessionCounter - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: maxPostSize - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: proxyName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: scheme - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: acceptCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: secret - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: secure - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: threadPriority - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: maxSwallowSize - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: ajpFlush - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: maxSavePostSize - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: proxyPort - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: sslProtocols - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: protocol - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: maxParameterCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: useIPVHosts - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: redirectPort - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: allowTrace - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: ciphers - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: protocolHandlerClassName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: maxThreads - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: connectionTimeout - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: tcpNoDelay - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,368 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: useBodyEncodingForURI - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: connectionLinger - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: processorCache - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: keepAliveTimeout - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: maxKeepAliveRequests - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: address - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: localPort - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,465 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: enableLookups - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: packetSize - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: URIEncoding - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: minSpareThreads - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: executorName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: maxHeaderCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: port - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,466 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Connector,port=18080 - Attribute name: xpoweredBy - Attribute type: boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,467 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:23 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: classLoadTime - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: asyncSupported - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxInstances - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,468 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/mcc,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | DEBUG | (pkg/autodiscovery/config_poller.go:87 in poll) | No modifications in the templates stored in docker configuration provider | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,567 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,568 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/processing,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,570 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.servicelayer.hmc - Attribute name: Additive - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,570 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.servicelayer.hmc - Attribute name: IncludeLocation - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,570 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.servicelayer.hmc - Attribute name: Filter - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,570 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.servicelayer.hmc - Attribute name: Level - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,570 | INFO | ConsoleReporter | Not Matching: Bean name: org.apache.logging.log4j2:type=433e3506,component=Loggers,name=de.hybris.platform.servicelayer.hmc - Attribute name: Name - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Deployer,host=localhost - Attribute name: configBaseName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Deployer,host=localhost - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,666 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Deployer,host=localhost - Attribute name: copyXML - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,765 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Deployer,host=localhost - Attribute name: unpackWARs - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,765 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Deployer,host=localhost - Attribute name: className - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,765 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Deployer,host=localhost - Attribute name: deployXML - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,765 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=Deployer,host=localhost - Attribute name: contextClass - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/productcockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/productcockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspCount - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/productcockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspReloadCount - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/productcockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspUnloadCount - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,966 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:type=JspMonitor,WebModule=//localhost/productcockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: jspQueueLength - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: antiResourceLocking - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: encodedPath - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: paused - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: useNaming - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: logEffectiveWebXml - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: path - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: originalDocBase - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopTimerThreads - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: useHttpOnly - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: managedResource - Attribute type: java.lang.Object | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: baseName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: errorCount - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: configured - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: unloadDelay - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: ignoreAnnotations - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesStopThreads - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: privileged - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: xmlValidation - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: altDDName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: name - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: sessionTimeout - Attribute type: int | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: unpackWAR - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: renewThreadsWhenStoppingContext - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: server - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: docBase - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: displayName - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: defaultWebXml - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: reloadable - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: webappVersion - Attribute type: java.lang.String | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesThreadLocals - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: cookies - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,968 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: delegate - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: mapperDirectoryRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:24 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: swallowOutput - Attribute type: boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: startTime - Attribute type: long | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: tldValidation - Attribute type: boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: override - Attribute type: boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: workDir - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: distributable - Attribute type: boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookiePath - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: mapperContextRootRedirectEnabled - Attribute type: boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: tldScanTime - Attribute type: long | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: startupTime - Attribute type: long | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: clearReferencesRmiTargets - Attribute type: boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: xmlNamespaceAware - Attribute type: boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: useRelativeRedirects - Attribute type: boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: crossContext - Attribute type: boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: objectName - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieDomain - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: defaultContextXml - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: sessionCookieName - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,969 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=WebModule,name=//localhost/dmcommercewebservices,J2EEApplication=none,J2EEServer=none - Attribute name: publicId - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: runAs - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: maxTime - Attribute type: long | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: requestCount - Attribute type: int | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: modelerType - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: servletClass - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: countAllocated - Attribute type: int | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: available - Attribute type: long | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: backgroundProcessorDelay - Attribute type: int | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: processingTime - Attribute type: long | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadOnStartup - Attribute type: int | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: singleThreadModel - Attribute type: java.lang.Boolean | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: loadTime - Attribute type: long | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: stateName - Attribute type: java.lang.String | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attribute name: minTime - Attribute type: long | |
2020-01-29 17:44:25 UTC | CORE | INFO | (pkg/jmxfetch/jmxfetch.go:249 in func1) | 2020-01-29 17:44:23,970 | INFO | ConsoleReporter | Not Matching: Bean name: Catalina:j2eeType=Servlet,WebModule=//localhost/admincockpit,name=jsp,J2EEApplication=none,J2EEServer=none - Attri |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment