diff --git a/captrace/captrace.go b/captrace/captrace.go index 19168248..98d3a3e5 100644 --- a/captrace/captrace.go +++ b/captrace/captrace.go @@ -601,7 +601,7 @@ func ToHtml(path string, timestamp string, port string, ipDaTA []byte) { encodedStr := hex.EncodeToString(ipDaTA) // [72 101 108 108 111] log.Trace(encodedStr) - command := fmt.Sprintf("/usr/local/bin/ipdata2html -f %s -t %s -i %s -d %s", path, timestamp, port, encodedStr) + command := fmt.Sprintf("/usr/local/bin/data2html -f %s -t %s -i %s -d %s", path, timestamp, port, encodedStr) log.Trace("commm:", command) cmd := exec.Command("sh", "-c", command) _, err := cmd.CombinedOutput() diff --git a/features/trace/trace.go b/features/trace/trace.go index d0d78c7a..5caccb3f 100644 --- a/features/trace/trace.go +++ b/features/trace/trace.go @@ -404,7 +404,7 @@ func ParseRawMsg2Html(w http.ResponseWriter, r *http.Request) { if traceData.DecMsg == "" { htmlFile := fmt.Sprintf("traceDecMessage-%d-%d.html", traceData.TaskID, traceData.ID) filePath = config.GetYamlConfig().OMC.FrontTraceDir + "/" + htmlFile - command := fmt.Sprintf("ipdata2html -f %s -t %d -i N%d -d %x", filePath, traceData.Timestamp, traceData.IfType, traceData.RawMsg) + command := fmt.Sprintf("/usr/local/omc/bin/data2html -f %s -t %d -i N%d -d %x", filePath, traceData.Timestamp, traceData.IfType, traceData.RawMsg) out, err := run.ExecCmd(command, "/") log.Tracef("Exec output: %v", string(out)) if err != nil {