Skip to content
Snippets Groups Projects
Commit 6d5446fd authored by dmytro anikieiev [EPAM / GCP]'s avatar dmytro anikieiev [EPAM / GCP]
Browse files

GONRG-9827: add spring boot actuator

parent 954b2925
No related branches found
No related tags found
1 merge request!895GONRG-9827: add spring boot actuator
Pipeline #267545 failed
......@@ -21,6 +21,13 @@ Must have:
| `SPRING_PROFILES_ACTIVE` | ex `gcp` | Spring profile that activate default configuration for Google Cloud environment | false | - |
| `STORAGE_SERVICE_ACCOUNT_EMAIL` | `workload-storage-gc@nice-etching-277309.iam.gserviceaccount.com` | Storage service account email, used during OQM events processing | no | - |
Defined in default application property file but possible to override:
| name | value | description | sensitive? | source |
|-----------------------------------|----------------------------------------------|-------------------------------------|------------|---------------|
| `MANAGEMENT_ENDPOINTS_WEB_BASE` | ex `/` | Web base for Actuator | no | - |
| `MANAGEMENT_SERVER_PORT` | ex `8081` | Port for Actuator | no | - |
### Common properties for all environments
| name | value | description | sensitive? | source |
......@@ -197,4 +204,4 @@ 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.
\ No newline at end of file
limitations under the License.
......@@ -53,5 +53,8 @@ CRS_API=${CRS_CONVERTER_HOST}${CRS_CONVERTER_PATH}
# Collaboration context feature flag name : properties specific
collaborations-enabled=false
# Health checks
management.server.port=${MANAGEMENT_SERVER_PORT:8081}
management.endpoints.web.base-path=${MANAGEMENT_ENDPOINTS_WEB_BASE:/}
management.endpoints.web.exposure.include=health
management.health.probes.enabled=true
......@@ -38,6 +38,13 @@ Must have:
| `<AMQP_ADMIN_PASSWORD_ENV_VARIABLE_NAME>` | ex `AMQP_ADMIN_PASS_OSDU` | Amqp admin password env name, name of that variable not defined at the service level, the name will be received through partition service. Each tenant can have it's own ENV name value, and it must be present in ENV of Storage service | yes | - |
| `STORAGE_SERVICE_ACCOUNT_EMAIL` | `workload-storage@keycloak.com` | Storage service account email, used during OQM events processing | no | - |
Defined in default application property file but possible to override:
| name | value | description | sensitive? | source |
|-----------------------------------|----------------------------------------------|-------------------------------------|------------|---------------|
| `MANAGEMENT_ENDPOINTS_WEB_BASE` | ex `/` | Web base for Actuator | no | - |
| `MANAGEMENT_SERVER_PORT` | ex `8081` | Port for Actuator | no | - |
| name | value | description | sensitive? | source |
|--------------------------------------------|-----------------------------------------------|---------------------------------------------------------------------------------------|------------|-------------------------------------|
| `LOG_PREFIX` | `storage` | Logging prefix | no | - |
......
......@@ -56,6 +56,8 @@ rabbitmq-retry-delay=10000
rabbitmq-retry-limit=5
partition-auth-enabled=false
# Health checks
management.server.port=${MANAGEMENT_SERVER_PORT:8081}
management.endpoints.web.base-path=${MANAGEMENT_ENDPOINTS_WEB_BASE:/}
management.endpoints.web.exposure.include=health
management.health.probes.enabled=true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment