Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a threshold parameter for root cause analysis #5188

Closed
suxi-ms opened this issue Jun 2, 2020 · 1 comment · Fixed by #5218
Closed

Add a threshold parameter for root cause analysis #5188

suxi-ms opened this issue Jun 2, 2020 · 1 comment · Fixed by #5218
Assignees
Labels
enhancement New feature or request

Comments

@suxi-ms
Copy link
Member

suxi-ms commented Jun 2, 2020

Issue

  • Users want a threshold to determin whether the selected is a root cause, so we add a new parameter in the interface. The default value is 0.95
@lisahua
Copy link
Contributor

lisahua commented Jun 2, 2020

return string.Join(";", dic.Select(x => x.Key + "=" + (string)x.Value).ToArray());

When x.Value is long, it throws Unable to cast exception. Probably change to Convert.ToString(..)
private static string GetDicCode(Dictionary<string, Object> dic)
{
return string.Join(";", dic.Select(x => x.Key + "=" + (string)x.Value).ToArray());
}

@Lynx1820 Lynx1820 added the enhancement New feature or request label Jun 2, 2020
@suxi-ms suxi-ms mentioned this issue Jun 9, 2020
4 tasks
@ghost ghost locked as resolved and limited conversation to collaborators Mar 18, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants