()
| 430 | } |
| 431 | |
| 432 | func (l Line) IsAutoDiscoverCommand() bool { |
| 433 | matched, _ := regexp.MatchString(".+discover[[:space:]]+--auto.*", strings.ToLower(l.CommandToRun)) |
| 434 | return matched |
| 435 | } |
| 436 | |
| 437 | func (l Line) HasLegacyIntegration() bool { |
| 438 | return strings.Contains(l.CommandToRun, "cronitor.io") || strings.Contains(l.CommandToRun, "cronitor.link") |
no outgoing calls
no test coverage detected