Migrated pkg/proxy to structured logging (#104891)
* migrated service.go to structured logging * fixing capital letter in starting * migrated topology.go * migrated endpointslicecache.go * migrated endpoints.go * nit typo * nit plural to singular * fixed format * code formatting * resolving review comment for key ipFamily * resolving review comment for key endpoints.go * code formating * Converted Warningf to ErrorS, wherever applicable * included review changes * included review changes
This commit is contained in:
committed by
GitHub
parent
dea052ceba
commit
daf5af2917
@@ -166,7 +166,7 @@ func standardEndpointInfo(ep *BaseEndpointInfo) Endpoint {
|
||||
func (cache *EndpointSliceCache) updatePending(endpointSlice *discovery.EndpointSlice, remove bool) bool {
|
||||
serviceKey, sliceKey, err := endpointSliceCacheKeys(endpointSlice)
|
||||
if err != nil {
|
||||
klog.Warningf("Error getting endpoint slice cache keys: %v", err)
|
||||
klog.ErrorS(err, "Error getting endpoint slice cache keys")
|
||||
return false
|
||||
}
|
||||
|
||||
@@ -235,12 +235,12 @@ func (cache *EndpointSliceCache) endpointInfoByServicePort(serviceNN types.Names
|
||||
for _, sliceInfo := range sliceInfoByName {
|
||||
for _, port := range sliceInfo.Ports {
|
||||
if port.Name == nil {
|
||||
klog.Warningf("ignoring port with nil name %v", port)
|
||||
klog.ErrorS(nil, "Ignoring port with nil name", "portName", port.Name)
|
||||
continue
|
||||
}
|
||||
// TODO: handle nil ports to mean "all"
|
||||
if port.Port == nil || *port.Port == int32(0) {
|
||||
klog.Warningf("ignoring invalid endpoint port %s", *port.Name)
|
||||
klog.ErrorS(nil, "Ignoring invalid endpoint port", "portName", *port.Name)
|
||||
continue
|
||||
}
|
||||
|
||||
@@ -266,7 +266,7 @@ func (cache *EndpointSliceCache) addEndpoints(serviceNN types.NamespacedName, po
|
||||
// iterate through endpoints to add them to endpointSet.
|
||||
for _, endpoint := range endpoints {
|
||||
if len(endpoint.Addresses) == 0 {
|
||||
klog.Warningf("ignoring invalid endpoint port %s with empty addresses", endpoint)
|
||||
klog.ErrorS(nil, "Ignoring invalid endpoint port with empty address", "endpoint", endpoint)
|
||||
continue
|
||||
}
|
||||
|
||||
@@ -355,7 +355,7 @@ func endpointsMapFromEndpointInfo(endpointInfoBySP map[ServicePortName]map[strin
|
||||
// Ensure endpoints are always returned in the same order to simplify diffing.
|
||||
sort.Sort(byEndpoint(endpointsMap[svcPortName]))
|
||||
|
||||
klog.V(3).Infof("Setting endpoints for %q to %+v", svcPortName, formatEndpointsList(endpointsMap[svcPortName]))
|
||||
klog.V(3).InfoS("Setting endpoints for service port name", "portName", svcPortName, "endpoints", formatEndpointsList(endpointsMap[svcPortName]))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user