File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
internal/controller/telemetry Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -114,9 +114,9 @@ attached at the Gateway level. */
114114 /* * NginxOneConnectionEnabled is a boolean that indicates whether the connection to the Nginx One Console is enabled. */
115115 boolean ? NginxOneConnectionEnabled = null ;
116116
117- /* * InferencePoolCount is the number of InferencePools that are referenced by at least one Route. */
117+ /* * InferencePoolCount is the number of InferencePools that are referenced by at least one Route. */
118118 long ? InferencePoolCount = null ;
119-
119+
120120 /* * BuildOS is the base operating system the control plane was built on (e.g. alpine, ubi). */
121121 string ? BuildOS = null ;
122122
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ func (d *Data) Attributes() []attribute.KeyValue {
2323 attrs = append (attrs , attribute .Int64 ("NginxPodCount" , d .NginxPodCount ))
2424 attrs = append (attrs , attribute .Int64 ("ControlPlanePodCount" , d .ControlPlanePodCount ))
2525 attrs = append (attrs , attribute .Bool ("NginxOneConnectionEnabled" , d .NginxOneConnectionEnabled ))
26- attrs = append (attrs , attribute .Int64 ("InferencePoolCount" , d .InferencePoolCount ))
26+ attrs = append (attrs , attribute .Int64 ("InferencePoolCount" , d .InferencePoolCount ))
2727 attrs = append (attrs , attribute .String ("BuildOS" , d .BuildOS ))
2828
2929 return attrs
You can’t perform that action at this time.
0 commit comments