Skip to content

Commit eb14d10

Browse files
authored
Merge pull request #268 from Helene/gpfsfcmda
Add GPFSPoolCap, GPFSInodeCap and GPFSFCMDA sensors to the supported PrometheusExporter endpoints
2 parents 2d5ba83 + 685aae0 commit eb14d10

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM $BASE
33

44
LABEL com.ibm.name="IBM Storage Scale bridge for Grafana"
55
LABEL com.ibm.vendor="IBM"
6-
LABEL com.ibm.version="8.0.2"
6+
LABEL com.ibm.version="8.0.3-dev"
77
LABEL com.ibm.url="https://github.com/IBM/ibm-spectrum-scale-bridge-for-grafana"
88
LABEL com.ibm.description="This tool translates the IBM Storage Scale performance data collected internally \
99
to the query requests acceptable by the Grafana integrated openTSDB plugin"

source/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
@author: HWASSMAN
2121
'''
2222

23-
__version__ = '8.0.2'
23+
__version__ = '8.0.3-dev'

source/metadata.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ def getSensorPeriod(self, sensor):
9696
sensor = 'GPFSDiskCap'
9797
elif sensor in ('GPFSNSDFS', 'GPFSNSDPool'):
9898
sensor = 'GPFSNSDDisk'
99+
elif sensor == 'GPFSFCM':
100+
sensor = 'GPFSFCMDA'
99101
elif sensor == 'DomainStore':
100102
return 1
101103

source/prometheus_endpoints.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
"/metrics_gpfs_fileset": "GPFSFileset",
2323
"/metrics_gpfs_pool": "GPFSPool",
2424
"/metrics_gpfs_diskcap": "GPFSDiskCap",
25+
"/metrics_gpfs_poolcap": "GPFSPoolCap",
26+
"/metrics_gpfs_inodecap": "GPFSInodeCap",
2527
"/metrics_gpfs_event_producer": "GPFSEventProducer",
2628
"/metrics_gpfs_mmhealth": "GPFSmmhealth",
2729
"/metrics_gpfs_mutex": "GPFSMutex",
2830
"/metrics_gpfs_condvar": "GPFSCondvar",
2931
"/metrics_gpfs_qos": "GPFSQoS",
3032
"/metrics_gpfs_fcm": "GPFSFCM",
33+
"/metrics_gpfs_fcmda": "GPFSFCMDA",
3134
"/metrics_nfsio": "NFSIO",
3235
"/metrics_smb_stats": "SMBStats",
3336
"/metrics_smb_globalstats": "SMBGlobalStats",

0 commit comments

Comments
 (0)