@@ -43,8 +43,6 @@ type OperatorCollector struct {
43
43
LiquidationStatus * prometheus.Desc
44
44
ClaimVaultBalance * prometheus.Desc
45
45
46
- SDUtilizationPosition * prometheus.Desc
47
-
48
46
SDSelfBond * prometheus.Desc
49
47
50
48
// The beacon client
@@ -143,10 +141,6 @@ func NewOperatorCollector(
143
141
prometheus .BuildFQName (namespace , OperatorSub , LiquidationStatus ), "" , nil , nil ),
144
142
ClaimVaultBalance : prometheus .NewDesc (
145
143
prometheus .BuildFQName (namespace , OperatorSub , ClaimVaultBalance ), "" , nil , nil ),
146
- SDUtilizationPosition : prometheus .NewDesc (prometheus .BuildFQName (namespace , OperatorSub , "sd_utility_position" ),
147
- "The current balance of the SD utility pool" ,
148
- nil , nil ,
149
- ),
150
144
SDSelfBond : prometheus .NewDesc (prometheus .BuildFQName (namespace , OperatorSub , "sd_self_bond" ),
151
145
"The current balance of the SD utility pool" ,
152
146
nil , nil ,
@@ -190,7 +184,6 @@ func (collector *OperatorCollector) Describe(channel chan<- *prometheus.Desc) {
190
184
channel <- collector .TotalSDSelfBond
191
185
channel <- collector .LiquidationStatus
192
186
channel <- collector .ClaimVaultBalance
193
- channel <- collector .SDUtilizationPosition
194
187
channel <- collector .SDSelfBond
195
188
}
196
189
@@ -228,7 +221,6 @@ func (collector *OperatorCollector) Collect(channel chan<- prometheus.Metric) {
228
221
channel <- prometheus .MustNewConstMetric (collector .TotalSDSelfBond , prometheus .GaugeValue , state .StaderNetworkDetails .OperatorSDSelfBond )
229
222
channel <- prometheus .MustNewConstMetric (collector .LiquidationStatus , prometheus .GaugeValue , state .StaderNetworkDetails .LiquidationStatus )
230
223
channel <- prometheus .MustNewConstMetric (collector .ClaimVaultBalance , prometheus .GaugeValue , state .StaderNetworkDetails .ClaimVaultBalance )
231
- channel <- prometheus .MustNewConstMetric (collector .SDUtilizationPosition , prometheus .GaugeValue , state .StaderNetworkDetails .OperatorSDUtilizationPosition )
232
224
channel <- prometheus .MustNewConstMetric (collector .SDSelfBond , prometheus .GaugeValue , state .StaderNetworkDetails .OperatorSDSelfBond )
233
225
}
234
226
0 commit comments