mirror of https://github.com/longtai-cn/hippo4j
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
4.0 KiB
76 lines
4.0 KiB
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# The service name in UI
|
|
# ${service name} = [${group name}::]${logic name}
|
|
# The group name is optional only.
|
|
agent.service_name=${HIPPO4J_AGENT_NAME:Your_ApplicationName}
|
|
|
|
# The agent namespace
|
|
agent.namespace=${HIPPO4J_AGENT_NAMESPACE:}
|
|
|
|
# The agent cluster
|
|
agent.cluster=${HIPPO4J_AGENT_CLUSTER:}
|
|
|
|
# If the operation name of the first span is included in this set, this segment should be ignored. Multiple values should be separated by `,`.
|
|
agent.ignore_suffix=${HIPPO4J_AGENT_IGNORE_SUFFIX:.jpg,.jpeg,.js,.css,.png,.bmp,.gif,.ico,.mp3,.mp4,.html,.svg}
|
|
|
|
# If true, Hippo4j agent will save all instrumented classes files in `/debugging` folder.
|
|
# SkyWalking team may ask for these files in order to resolve compatible problem.
|
|
agent.is_open_debugging_class=${SW_AGENT_OPEN_DEBUG:false}
|
|
|
|
# If true, Hippo4j agent will cache all instrumented classes files to memory or disk files (decided by class cache mode),
|
|
# allow other javaagent to enhance those classes that enhanced by SkyWalking agent.
|
|
agent.is_cache_enhanced_class=${SW_AGENT_CACHE_CLASS:false}
|
|
|
|
# The instrumented classes cache mode: MEMORY or FILE
|
|
# MEMORY: cache class bytes to memory, if instrumented classes is too many or too large, it may take up more memory
|
|
# FILE: cache class bytes in `/class-cache` folder, automatically clean up cached class files when the application exits
|
|
agent.class_cache_mode=${SW_AGENT_CLASS_CACHE_MODE:MEMORY}
|
|
|
|
# Logging level
|
|
logging.level=${HIPPO4J_LOGGING_LEVEL:INFO}
|
|
# Logging file_name
|
|
logging.file_name=${HIPPO4J_LOGGING_FILE_NAME:hippo4j-api.log}
|
|
# Log output. Default is FILE. Use CONSOLE means output to stdout.
|
|
logging.output=${SW_LOGGING_OUTPUT:FILE}
|
|
# Log files directory. Default is blank string, meaning use "{theHippo4jAgentJarDir}/logs " to output logs.
|
|
# {theHippo4jAgentJarDir} is the directory where the hippo4j agent jar file is located
|
|
logging.dir=${HIPPO4J_LOGGING_DIR:}
|
|
# Logger resolver: PATTERN or JSON. The default is PATTERN, which uses logging.pattern to print traditional text logs.
|
|
# JSON resolver prints logs in JSON format.
|
|
logging.resolver=${HIPPO4J_LOGGING_RESOLVER:PATTERN}
|
|
# Logging format. There are all conversion specifiers:
|
|
# * %level means log level.
|
|
# * %timestamp means now of time with format yyyy-MM-dd HH:mm:ss:SSS.
|
|
# * %thread means name of current thread.
|
|
# * %msg means some message which user logged.
|
|
# * %class means SimpleName of TargetClass.
|
|
# * %throwable means a throwable which user called.
|
|
# * %agent_name means agent.service_name. Only apply to the PatternLogger.
|
|
logging.pattern=${HIPPO4J_LOGGING_PATTERN:%level %timestamp %thread %class : %msg %throwable}
|
|
# Logging max_file_size, default: 300 * 1024 * 1024 = 314572800
|
|
logging.max_file_size=${HIPPO4J_LOGGING_MAX_FILE_SIZE:314572800}
|
|
# The max history log files. When rollover happened, if log files exceed this number,
|
|
# then the oldest file will be delete. Negative or zero means off, by default.
|
|
logging.max_history_files=${HIPPO4J_LOGGING_MAX_HISTORY_FILES:-1}
|
|
|
|
# Mount the specific folders of the plugins. Plugins in mounted folders would work.
|
|
plugin.mount=${SW_MOUNT_FOLDERS:plugins,activations}
|
|
# Peer maximum description limit.
|
|
plugin.peer_max_length=${SW_PLUGIN_PEER_MAX_LENGTH:200}
|
|
# Exclude some plugins define in plugins dir.Plugin names is defined in [Agent plugin list](Plugin-list.md)
|
|
plugin.exclude_plugins=${SW_EXCLUDE_PLUGINS:} |