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.

63 lines
2.7 KiB

2 years ago
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. # The agent namespace
  17. # agent.namespace=${SW_AGENT_NAMESPACE:default-namespace}
  18. # The service name in UI
  19. agent.service_name=${SW_AGENT_NAME:Your_ApplicationName}
  20. # The number of sampled traces per 3 seconds
  21. # Negative number means sample traces as many as possible, most likely 100%
  22. # agent.sample_n_per_3_secs=${SW_AGENT_SAMPLE:-1}
  23. # Authentication active is based on backend setting, see application.yml for more details.
  24. # agent.authentication = ${SW_AGENT_AUTHENTICATION:xxxx}
  25. # The max amount of spans in a single segment.
  26. # Through this config item, skywalking keep your application memory cost estimated.
  27. # agent.span_limit_per_segment=${SW_AGENT_SPAN_LIMIT:300}
  28. # Ignore the segments if their operation names end with these suffix.
  29. # agent.ignore_suffix=${SW_AGENT_IGNORE_SUFFIX:.jpg,.jpeg,.js,.css,.png,.bmp,.gif,.ico,.mp3,.mp4,.html,.svg}
  30. # If true, skywalking agent will save all instrumented classes files in `/debugging` folder.
  31. # Skywalking team may ask for these files in order to resolve compatible problem.
  32. # agent.is_open_debugging_class = ${SW_AGENT_OPEN_DEBUG:true}
  33. # The operationName max length
  34. # agent.operation_name_threshold=${SW_AGENT_OPERATION_NAME_THRESHOLD:500}
  35. # Backend service addresses.
  36. collector.backend_service=${SW_AGENT_COLLECTOR_BACKEND_SERVICES:127.0.0.1:11800}
  37. # Logging file_name
  38. logging.file_name=${SW_LOGGING_FILE_NAME:skywalking-api.log}
  39. # Logging level
  40. logging.level=${SW_LOGGING_LEVEL:DEBUG}
  41. # Logging dir
  42. # logging.dir=${SW_LOGGING_DIR:""}
  43. # Logging max_file_size, default: 300 * 1024 * 1024 = 314572800
  44. # logging.max_file_size=${SW_LOGGING_MAX_FILE_SIZE:314572800}
  45. # The max history log files. When rollover happened, if log files exceed this number,
  46. # then the oldest file will be delete. Negative or zero means off, by default.
  47. # logging.max_history_files=${SW_LOGGING_MAX_HISTORY_FILES:-1}
  48. # mysql plugin configuration
  49. # plugin.mysql.trace_sql_parameters=${SW_MYSQL_TRACE_SQL_PARAMETERS:false}