io.micronaut.management.endpoint.env.EnvironmentEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-management Show documentation
Show all versions of micronaut-management Show documentation
Core components supporting the Micronaut Framework
The newest version!
/*
* Copyright 2017-2020 original authors
*
* Licensed 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
*
* https://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.
*/
package io.micronaut.management.endpoint.env;
import io.micronaut.context.env.Environment;
import io.micronaut.context.env.PropertySource;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.management.endpoint.annotation.Endpoint;
import io.micronaut.management.endpoint.annotation.Read;
import io.micronaut.management.endpoint.annotation.Selector;
import jakarta.inject.Inject;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Comparator;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* {@link Endpoint} that displays information about the environment and its property sources.
*
* @author Álvaro Sánchez-Mariscal
* @since 1.2.0
*/
@Endpoint(
id = EnvironmentEndpoint.NAME,
defaultEnabled = false
)
public class EnvironmentEndpoint {
/**
* Endpoint name.
*/
public static final String NAME = "env";
private static final String MASK_VALUE = "*****";
private final Environment environment;
private final EnvironmentEndpointFilter environmentFilter;
/**
* @param environment The {@link Environment}
*/
public EnvironmentEndpoint(Environment environment) {
this(environment, null);
}
/**
* @param environment The {@link Environment}
* @param environmentFilter The registered {@link EnvironmentEndpointFilter} bean if one is registered
*/
@Inject
public EnvironmentEndpoint(Environment environment, @Nullable EnvironmentEndpointFilter environmentFilter) {
this.environment = environment;
this.environmentFilter = environmentFilter;
}
/**
* @return The environment information as a map with the following keys: activeEnvironments, packages and
* propertySources.
*/
@Read
public Map getEnvironmentInfo() {
EnvironmentFilterSpecification filter = createFilterSpecification();
Map result = new LinkedHashMap<>();
result.put("activeEnvironments", environment.getActiveNames());
result.put("packages", environment.getPackages());
Collection