File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed
server/ingester/ext_metrics/decoder Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -82,14 +82,17 @@ func NewDecoder(
82
82
config * config.Config ,
83
83
) * Decoder {
84
84
return & Decoder {
85
- index : index ,
86
- msgType : msgType ,
87
- platformData : platformData ,
88
- inQueue : inQueue ,
89
- debugEnabled : log .IsEnabledFor (logging .DEBUG ),
90
- extMetricsWriter : extMetricsWriter ,
91
- config : config ,
92
- counter : & Counter {},
85
+ index : index ,
86
+ msgType : msgType ,
87
+ platformData : platformData ,
88
+ inQueue : inQueue ,
89
+ debugEnabled : log .IsEnabledFor (logging .DEBUG ),
90
+ extMetricsWriter : extMetricsWriter ,
91
+ config : config ,
92
+ podNameToUniversalTag : make (map [string ]* zerodoc.UniversalTag ),
93
+ instanceIPToUniversalTag : make (map [string ]* zerodoc.UniversalTag ),
94
+ vtapIDToUniversalTag : make (map [uint16 ]* zerodoc.UniversalTag ),
95
+ counter : & Counter {},
93
96
}
94
97
}
95
98
You can’t perform that action at this time.
0 commit comments