summaryrefslogtreecommitdiff
path: root/src/store/modules/Health/SensorsStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/Health/SensorsStore.js')
-rw-r--r--src/store/modules/Health/SensorsStore.js113
1 files changed, 113 insertions, 0 deletions
diff --git a/src/store/modules/Health/SensorsStore.js b/src/store/modules/Health/SensorsStore.js
new file mode 100644
index 00000000..5da15156
--- /dev/null
+++ b/src/store/modules/Health/SensorsStore.js
@@ -0,0 +1,113 @@
+import api from '../../api';
+import { uniqBy } from 'lodash';
+
+const SensorsStore = {
+ namespaced: true,
+ state: {
+ sensors: []
+ },
+ getters: {
+ sensors: state => state.sensors
+ },
+ mutations: {
+ setSensors: (state, sensors) => {
+ state.sensors = uniqBy([...state.sensors, ...sensors], 'name');
+ }
+ },
+ actions: {
+ getAllSensors({ dispatch }) {
+ dispatch('getChassisCollection').then(collection => {
+ collection.forEach(item => {
+ dispatch('getSensors', item);
+ dispatch('getThermalSensors', item);
+ dispatch('getPowerSensors', item);
+ });
+ });
+ },
+ getChassisCollection() {
+ return api
+ .get('/redfish/v1/Chassis')
+ .then(({ data: { Members } }) =>
+ Members.map(member => member['@odata.id'])
+ )
+ .catch(error => console.log(error));
+ },
+ getSensors({ commit }, id) {
+ api
+ .get(`${id}/Sensors`)
+ .then(({ data: { Members = [] } }) => {
+ const promises = Members.map(sensor => api.get(sensor['@odata.id']));
+ api.all(promises).then(
+ api.spread((...responses) => {
+ const sensorData = responses.map(({ data }) => {
+ return {
+ name: data.Name,
+ status: data.Status.Health,
+ currentValue: data.Reading,
+ lowerCaution: data.Thresholds.LowerCaution.Reading,
+ upperCaution: data.Thresholds.UpperCaution.Reading,
+ lowerCritical: data.Thresholds.LowerCritical.Reading,
+ upperCritical: data.Thresholds.UpperCritical.Reading,
+ units: data.ReadingUnits
+ };
+ });
+ commit('setSensors', sensorData);
+ })
+ );
+ })
+ .catch(error => console.log(error));
+ },
+ getThermalSensors({ commit }, id) {
+ api
+ .get(`${id}/Thermal`)
+ .then(({ data: { Fans = [], Temperatures = [] } }) => {
+ const sensorData = [];
+ Fans.forEach(sensor => {
+ sensorData.push({
+ // TODO: add upper/lower threshold
+ name: sensor.Name,
+ status: sensor.Status.Health,
+ currentValue: sensor.Reading,
+ units: sensor.ReadingUnits
+ });
+ });
+ Temperatures.forEach(sensor => {
+ sensorData.push({
+ name: sensor.Name,
+ status: sensor.Status.Health,
+ currentValue: sensor.ReadingCelsius,
+ lowerCaution: sensor.LowerThresholdNonCritical,
+ upperCaution: sensor.UpperThresholdNonCritical,
+ lowerCritical: sensor.LowerThresholdCritical,
+ upperCritical: sensor.UpperThresholdCritical,
+ units: '℃'
+ });
+ });
+ commit('setSensors', sensorData);
+ })
+ .catch(error => console.log(error));
+ },
+ getPowerSensors({ commit }, id) {
+ api
+ .get(`${id}/Power`)
+ .then(({ data: { Voltages = [] } }) => {
+ const sensorData = Voltages.map(sensor => {
+ return {
+ name: sensor.Name,
+ status: sensor.Status.Health,
+ currentValue: sensor.ReadingVolts,
+ lowerCaution: sensor.LowerThresholdNonCritical,
+ upperCaution: sensor.UpperThresholdNonCritical,
+ lowerCritical: sensor.LowerThresholdCritical,
+ upperCritical: sensor.UpperThresholdCritical,
+ units: 'Volts'
+ };
+ });
+ commit('setSensors', sensorData);
+ })
+ .catch(error => console.log(error));
+ }
+ }
+};
+
+export default SensorsStore;