LogoLogo
WebsiteGithubDiscord
  • 🚀Getting Started
    • Ostara 101
    • Why Ostara
    • Quick Start
    • Privacy
    • Changelog
  • 📖Documentation
    • Folders
      • Creating / Updating Folders
    • Agents
      • Agent Version Compatibility Matrix
      • Configuration
        • Service Discovery
          • Internal
          • Kubernetes
          • ZooKeeper
      • Installation
        • Mac/Linux
        • Kubernetes
    • Applications
      • Creating / Updating Applications
    • Instances
      • Creating / Updating Instances
    • Authentication Settings
      • Types
        • None
        • Inherit
        • Basic
        • Bearer Token
        • Header
        • Query String
  • 📗Features
    • Abilities
    • Folder Features
      • Overview
        • Dashboard
        • Applications
    • Agent Features
      • Overview
        • Dashboard
    • Application Features
      • Overview
        • Dashboard
        • Instances
      • Manage
        • Loggers
        • Caches
      • Monitor
        • Metric Notifications
        • Health Notifications
    • Instance Features
      • Insights
        • Dashboard
        • Health
        • Info
        • Metrics
        • System Environment
        • System Properties
        • App Properties
        • Beans
        • HTTP Requests
        • Quartz
        • Scheduled Tasks
        • Mappings
        • Flyway
        • Liquibase
        • Integration Graph
      • Manage
        • Loggers
        • Logfile
        • Caches
        • Togglz
      • JVM
        • Thread Profiling
        • Heap Dump
      • Misc
        • Shutdown
    • In-App Demo
    • Local Backups
  • ⚠️Troubleshooting
    • Connecting to Agents
      • Service Discovery
    • No data for Info
    • Environment variables / System properties / App properties are partially or fully masked
    • Not all requests appear in HTTP Requests
    • Known Issues for Spring Boot 2
Powered by GitBook
On this page
  • Spring Boot 2.X
  • Spring Boot 3.X

Was this helpful?

  1. Troubleshooting

Environment variables / System properties / App properties are partially or fully masked

PreviousNo data for InfoNextNot all requests appear in HTTP Requests

Last updated 2 years ago

Was this helpful?

In some cases, the values we get back from Actuator are intentionally masked and get sent back as ******. This is caused by configuration on the service end.

Spring Boot 2.X

Spring Boot 2.X masks keys with the following patterns by default:

  • password

  • secret

  • key

  • token

  • .*credentials.*

  • vcap_services

  • endpoints.configprops.keys-to-sanitize=comma,delimited,list

  • endpoints.env.keys-to-sanitize=comma,delimited,list

Spring Boot 3.X

  • management.endpoint.configprops.show-values={always|when-authorized|never}

  • management.endpoint.env.show-values={always|when-authorized|never}

These patterns can be set using the following properties ():

In Spring Boot 3.X, all values are masked by default. If this behavior is not desired, it can be controlled using by setting the following properties to either always (Not recommended) or when-authorized and setting Ostara to authenticate with your application ():

⚠️
Reference
Reference
Example of a heavily redacted System Properties