Skip to content

Commit

Permalink
Add clarifying comment
Browse files Browse the repository at this point in the history
  • Loading branch information
pleshakov committed Mar 7, 2024
1 parent e35e9fa commit cd4a28c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/mode/static/telemetry/collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ type ConfigurationGetter interface {
type Data struct {
// ImageSource tells whether the image was built by GitHub or locally (values are 'gha', 'local', or 'unknown')
ImageSource string
tel.Data
tel.Data // embedding is required by the generator.
// FlagNames contains the command-line flag names.
FlagNames []string
// FlagValues contains the values of the command-line flags, where each value corresponds to the flag from FlagNames
// at the same index.
// Each value is either 'true' or 'false' for boolean flags and 'default' or 'user-defined' for non-boolean flags.
FlagValues []string
NGFResourceCounts
FlagValues []string
NGFResourceCounts // embedding is required by the generator.
// NGFReplicaCount is the number of replicas of the NGF Pod.
NGFReplicaCount int64
}
Expand Down

0 comments on commit cd4a28c

Please sign in to comment.