-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add wrapper to ovs command runner functions for logging
Signed-off-by: Laszlo Kiraly <[email protected]>
- Loading branch information
Showing
10 changed files
with
118 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// Copyright (c) 2024 Nordix Foundation. | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Package utils provides helper methods related to ovs and ip parsing | ||
package utils | ||
|
||
import ( | ||
"github.com/networkservicemesh/sdk/pkg/tools/log" | ||
"github.com/ovn-org/ovn-kubernetes/go-controller/pkg/util" | ||
) | ||
|
||
// OVSRunWrapper - | ||
type OVSRunWrapper struct { | ||
Logger log.Logger | ||
} | ||
|
||
// RunOVSVsctl - wrapper function for github.com/ovn-org/ovn-kubernetes/go-controller/pkg/util.RunOVSVsctl | ||
func (w *OVSRunWrapper) RunOVSVsctl(args ...string) (stdout, stderr string, err error) { | ||
stdout, stderr, err = util.RunOVSVsctl(args...) | ||
defer func() { | ||
cmdStr := []string{"ovs-vsctl"} | ||
cmdStr = append(cmdStr, args...) | ||
w.Logger.WithField("RunOVSVsctl", cmdStr). | ||
WithField("stdout", stdout). | ||
Debug("completed") | ||
}() | ||
return stdout, stderr, err | ||
} | ||
|
||
// RunOVSOfctl - wrapper function for github.com/ovn-org/ovn-kubernetes/go-controller/pkg/util.RunOVSOfctl | ||
func (w *OVSRunWrapper) RunOVSOfctl(args ...string) (stdout, stderr string, err error) { | ||
stdout, stderr, err = util.RunOVSOfctl(args...) | ||
defer func() { | ||
cmdStr := []string{"ovs-ofctl"} | ||
cmdStr = append(cmdStr, args...) | ||
w.Logger.WithField("RunOVSOfctl", cmdStr). | ||
WithField("stdout", stdout). | ||
Debug("completed") | ||
}() | ||
return stdout, stderr, err | ||
} |
Oops, something went wrong.