File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ func (impl *TelemetryEventClientImpl) SendSummaryEvent(eventType string) error {
341
341
payload .PhysicalClusterCount , payload .IsolatedClusterCount = impl .getClusterCounts ()
342
342
payload .ActiveUsersLast30Days = impl .getActiveUsersLast30Days ()
343
343
payload .GitOpsPipelineCount = impl .getGitOpsPipelineCount ()
344
- payload .NoGitOpsPipelineCount = impl .getNoGitOpsPipelineCount ()
344
+ payload .NoGitOpsPipelineCount = impl .helmPipelineCount ()
345
345
346
346
payload .ClusterProvider , err = impl .GetCloudProvider ()
347
347
if err != nil {
Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ func (impl *TelemetryEventClientImplExtended) SendSummaryEvent(eventType string)
349
349
payload .PhysicalClusterCount , payload .IsolatedClusterCount = impl .getClusterCounts ()
350
350
payload .ActiveUsersLast30Days = impl .getActiveUsersLast30Days ()
351
351
payload .GitOpsPipelineCount = impl .getGitOpsPipelineCount ()
352
- payload .NoGitOpsPipelineCount = impl .getNoGitOpsPipelineCount ()
352
+ payload .HelmPipelineCount = impl .helmPipelineCount ()
353
353
354
354
payload .ClusterProvider , err = impl .GetCloudProvider ()
355
355
if err != nil {
Original file line number Diff line number Diff line change @@ -165,5 +165,5 @@ type TelemetryEventDto struct {
165
165
IsolatedClusterCount int `json:"isolatedClusterCount,omitempty"`
166
166
ActiveUsersLast30Days int `json:"activeUsersLast30Days,omitempty"`
167
167
GitOpsPipelineCount int `json:"gitOpsPipelineCount,omitempty"`
168
- NoGitOpsPipelineCount int `json:"noGitOpsPipelineCount ,omitempty"`
168
+ HelmPipelineCount int `json:"helmPipelineCount ,omitempty"`
169
169
}
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ func (impl *TelemetryEventClientImpl) getGitOpsPipelineCount() int {
198
198
return count
199
199
}
200
200
201
- func (impl * TelemetryEventClientImpl ) getNoGitOpsPipelineCount () int {
201
+ func (impl * TelemetryEventClientImpl ) helmPipelineCount () int {
202
202
// Check if we have the required dependency
203
203
if impl .cdWorkflowRepository == nil {
204
204
impl .logger .Warnw ("cdWorkflowRepository not available for No-GitOps pipeline count" )
You can’t perform that action at this time.
0 commit comments