Created
April 10, 2015 20:48
-
-
Save spiermar/5d501448e4a445af1608 to your computer and use it in GitHub Desktop.
New Vector Widget
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// append this to the definitions variable on widgets.js | |
// polling nfs4.client metrics, assuming a cumulative value and reusing the MultipleCumulativeMetricTimeSeriesDataModel data model | |
{ | |
name: 'nfs4.client', | |
title: 'NFS4', | |
directive: 'line-integer-time-series', | |
dataAttrName: 'data', | |
dataModelType: MultipleCumulativeMetricTimeSeriesDataModel, | |
dataModelOptions: { | |
name: 'nfs4.client', | |
metricDefinitions: { | |
"calls": "nfs4.client.calls", | |
"reqs": "nfs4.client.reqs" | |
} | |
}, | |
size: { | |
width: '25%', | |
height: '250px' | |
}, | |
enableVerticalResize: false, | |
group: "NFS4" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment