Skip to content

Commit

Permalink
apend
Browse files Browse the repository at this point in the history
  • Loading branch information
husniMDB committed Jun 21, 2024
1 parent 94935d8 commit 4041a49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opsmngr/performance_advisor.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ type SlowQueryOptions struct {

// SlowQuery represents a slow query.
type SlowQuery struct {
Namespace string `json:"namespace,omitempty"` //nolint:all // The namespace in which the slow query ran.
Namespace string `json:"namespace,omitempty"` // The namespace in which the slow query ran.
Line string `json:"line,omitempty"` // The raw log line pertaining to the slow query.
}

// SlowQueries represents a list of SlowQuery.
type SlowQueries struct {
SlowQuery []*SlowQuery `json:"slowQueries,omitempty"` // A list of documents with information about slow queries as detected by the Performance Advisor.
SlowQuery []*SlowQuery `json:"slowQueries,omitempty"` //nolint:all // A list of documents with information about slow queries as detected by the Performance Advisor.
}

// SuggestedIndexOptions contains the request query parameters for the API request.
Expand Down

0 comments on commit 4041a49

Please sign in to comment.