adds abilit to report timing for execution

This commit is contained in:
Hyatt 2022-03-21 16:58:05 -05:00
parent cfc719dae3
commit ff9cc1349f
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
7 changed files with 35 additions and 0 deletions

View File

@ -4,11 +4,14 @@ import (
"bytes" "bytes"
"log" "log"
"os" "os"
"time"
"text/template" "text/template"
) )
func buildBindResponsePolicyFile() { func buildBindResponsePolicyFile() {
defer timeTrack(time.Now(), "buildBindResponsePolicyFile")
var ( var (
output bytes.Buffer output bytes.Buffer
) )

View File

@ -4,9 +4,12 @@ import (
"log" "log"
"regexp" "regexp"
"sort" "sort"
"time"
) )
func cleanBadDomains(domains []string) []string { func cleanBadDomains(domains []string) []string {
defer timeTrack(time.Now(), "cleanBadDomains")
// remove duplicates // remove duplicates
total := len(domains) total := len(domains)
all := make(map[string]bool) all := make(map[string]bool)

View File

@ -7,6 +7,8 @@ import (
) )
func getListData() []string { func getListData() []string {
defer timeTrack(time.Now(), "getListData")
var badDomains []string var badDomains []string
listSimple := make(chan []string) listSimple := make(chan []string)
listComplex := make(chan []string) listComplex := make(chan []string)
@ -59,6 +61,8 @@ func getListData() []string {
} }
func getData(urls []string) []byte { func getData(urls []string) []byte {
defer timeTrack(time.Now(), "getData")
var listData []byte var listData []byte
for _, u := range urls { for _, u := range urls {

View File

@ -15,6 +15,8 @@ import (
// getEnvString returns string from environment variable // getEnvString returns string from environment variable
func getEnvString(env, def string) (val string) { //nolint:deadcode func getEnvString(env, def string) (val string) { //nolint:deadcode
defer timeTrack(time.Now(), "getEnvString")
val = os.Getenv(env) val = os.Getenv(env)
if val == "" { if val == "" {
@ -26,6 +28,8 @@ func getEnvString(env, def string) (val string) { //nolint:deadcode
// getEnvInt returns int from environment variable // getEnvInt returns int from environment variable
func getEnvInt(env string, def int) (ret int) { func getEnvInt(env string, def int) (ret int) {
defer timeTrack(time.Now(), "getEnvInt")
val := os.Getenv(env) val := os.Getenv(env)
if val == "" { if val == "" {
@ -41,6 +45,8 @@ func getEnvInt(env string, def int) (ret int) {
} }
func initialize() { func initialize() {
defer timeTrack(time.Now(), "initialize")
config.TimeZone, _ = time.LoadLocation("America/Chicago") config.TimeZone, _ = time.LoadLocation("America/Chicago")
config.TimeZoneUTC, _ = time.LoadLocation("UTC") config.TimeZoneUTC, _ = time.LoadLocation("UTC")
@ -189,6 +195,8 @@ func initialize() {
} }
func readConfigFile(configFileLocation string) (configFileStruct, error) { func readConfigFile(configFileLocation string) (configFileStruct, error) {
defer timeTrack(time.Now(), "readConfigFile")
var output configFileStruct var output configFileStruct
rd, err := ioutil.ReadFile(configFileLocation) rd, err := ioutil.ReadFile(configFileLocation)

View File

@ -6,11 +6,14 @@ import (
"log" "log"
"regexp" "regexp"
"strings" "strings"
"time"
"github.com/asaskevich/govalidator" "github.com/asaskevich/govalidator"
) )
func parseComplex(data []byte) []string { func parseComplex(data []byte) []string {
defer timeTrack(time.Now(), "parseComplex")
var domains []string var domains []string
// convert data to reader for line-by-line reading // convert data to reader for line-by-line reading

View File

@ -6,11 +6,14 @@ import (
"log" "log"
"regexp" "regexp"
"strings" "strings"
"time"
"github.com/asaskevich/govalidator" "github.com/asaskevich/govalidator"
) )
func parseSimple(data []byte) []string { func parseSimple(data []byte) []string {
defer timeTrack(time.Now(), "parseSimple")
var domains []string var domains []string
// convert data to reader for line-by-line reading // convert data to reader for line-by-line reading

View File

@ -0,0 +1,11 @@
package main
import (
"log"
"time"
)
func timeTrack(start time.Time, name string) {
elapsed := time.Since(start)
log.Printf("[TRACE] Function %s took %s\n", name, elapsed)
}