Open TomTheBear opened 3 months ago
CCMessage is the second version of CCMetric. It now supports:
GET
PUT
The cc-metric-collector currently uses only CCMetrics but other components in the ClusterCockpit ecosystem use the other types.
cc-metric-collector
$ cd cc-metric-collector $ export OLDURL="github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric" $ export NEWURL="github.com/ClusterCockpit/cc-energy-manager/pkg/cc-message" $ find . -name "*.go" -exec \ sed -i -e "s+${OLDURL}+${NEWURL}+g"\ -e 's+lp.CCMetric+lp.CCMessage+g' \ -e 's+lp.New+lp.NewMessage+g' {} \;
CCMessage is the second version of CCMetric. It now supports:
GET
andPUT
)The
cc-metric-collector
currently uses only CCMetrics but other components in the ClusterCockpit ecosystem use the other types.