Skip to content

Commit 8ddf07c

Browse files
committed
Run make generate
1 parent ffb3bd1 commit 8ddf07c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

internal/controller/telemetry/data.avdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

internal/controller/telemetry/data_attributes_generated.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)