Compare commits

...

5 Commits

Author SHA1 Message Date
Akshay Jagadish
7c1dd0f5b8 Changed FE image tag back to 0.0.1-SNAPSHOT 2021-03-19 09:51:13 -04:00
AkshayJagadish-ne
724ab141dc Merge pull request #66 from Telecominfraproject/WIFI-1812
WIFI-1812: Change the front-end image tags
2021-03-15 19:06:36 -04:00
Akshay Jagadish
0fb7b37c2c WIFI-1812: Change the front-end image tags 2021-03-15 18:45:54 -04:00
Max
5e68d20255 add exporting of servo beans (#65)
* add exporting of servo beans
* add changelog entry
2021-03-08 13:59:23 +01:00
Gleb Boushev
fa533dde56 Update statefulset.yaml (#64)
work around the imagepullbackoff issue on updates
2021-03-03 14:07:42 +03:00
3 changed files with 14 additions and 10 deletions

View File

@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Replaced cassandra, postgres and kafka with upstream charts [#49](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/49)
- Centralized secrets to the parent chart [#54](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/54)
- Export servo MBeans with JMX Prometheus exporter [#65](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/65)
### Changed

View File

@@ -7,6 +7,7 @@ metadata:
labels:
{{- include "common.labels" . | nindent 4 }}
spec:
podManagementPolicy: Parallel
serviceName: {{ include "common.fullname" . }}
replicas: {{ .Values.replicaCount }}
selector:

View File

@@ -1,13 +1,15 @@
lowercaseOutputLabelNames: true
lowercaseOutputName: true
whitelistObjectNames: ["java.lang:type=OperatingSystem"]
whitelistObjectNames:
- "java.lang:type=OperatingSystem"
- "com.netflix.servo:name=cassandra*,type=COUNTER"
- "com.netflix.servo:name=cassandra*,type=GAUGE"
- "com.netflix.servo:name=singleDataSource*,type=GAUGE"
- "com.netflix.servo:name=singleDataSource*,type=COUNTER"
- "com.netflix.servo:name=jdbc*,type=GAUGE"
- "com.netflix.servo:name=jdbc*,type=COUNTER"
- "com.netflix.servo:name=kafka*,type=GAUGE"
- "com.netflix.servo:name=kafka*,type=COUNTER"
- "com.netflix.servo:name=osgw*,type=GAUGE"
- "com.netflix.servo:name=osgw*,type=COUNTER"
blacklistObjectNames: []
rules:
- pattern: 'java.lang<type=OperatingSystem><>(committed_virtual_memory|free_physical_memory|free_swap_space|total_physical_memory|total_swap_space)_size:'
name: os_$1_bytes
type: GAUGE
attrNameSnakeCase: true
- pattern: 'java.lang<type=OperatingSystem><>((?!process_cpu_time)\w+):'
name: os_$1
type: GAUGE
attrNameSnakeCase: true