Skip to content

Commit 06c853d

Browse files
committed
Run make generate to update data.avdl and generated attributes
1 parent 4103612 commit 06c853d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

internal/controller/telemetry/data.avdl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ 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-
/** BuildOS is a string that indicates the base operating statem that both NGF and NGINX were built on. */
117+
/** BuildOS is the OS the NGF and NGINX binary was built on. */
118118
string? BuildOS = null;
119+
119120
}
120121
}

internal/controller/telemetry/data_attributes_generated.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +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.String("BuildOS", d.BuildOS))
2627

2728
return attrs
2829
}

0 commit comments

Comments
 (0)