diff --git a/webapp/backend/pkg/database/scrutiny_repository_device_smart_attributes.go b/webapp/backend/pkg/database/scrutiny_repository_device_smart_attributes.go index 0479986..18960cb 100644 --- a/webapp/backend/pkg/database/scrutiny_repository_device_smart_attributes.go +++ b/webapp/backend/pkg/database/scrutiny_repository_device_smart_attributes.go @@ -32,8 +32,6 @@ func (sr *scrutinyRepository) SaveSmartAttributes(ctx context.Context, wwn strin func (sr *scrutinyRepository) GetSmartAttributeHistory(ctx context.Context, wwn string, durationKey string, attributes []string) ([]measurements.Smart, error) { // Get SMartResults from InfluxDB - fmt.Println("GetDeviceDetails from INFLUXDB") - //TODO: change the filter startrange to a real number. // Get parser flux query result @@ -45,18 +43,13 @@ func (sr *scrutinyRepository) GetSmartAttributeHistory(ctx context.Context, wwn result, err := sr.influxQueryApi.Query(ctx, queryStr) if err == nil { - fmt.Println("GetDeviceDetails NO EROR") - // Use Next() to iterate over query result lines for result.Next() { - fmt.Println("GetDeviceDetails NEXT") - // Observe when there is new grouping key producing new table if result.TableChanged() { //fmt.Printf("table: %s\n", result.TableMetadata().String()) } - fmt.Printf("DECODINIG TABLE VALUES: %v", result.Record().Values()) smartData, err := measurements.NewSmartFromInfluxDB(result.Record().Values()) if err != nil { return nil, err diff --git a/webapp/backend/pkg/models/measurements/smart.go b/webapp/backend/pkg/models/measurements/smart.go index cc25593..c0523b1 100644 --- a/webapp/backend/pkg/models/measurements/smart.go +++ b/webapp/backend/pkg/models/measurements/smart.go @@ -61,12 +61,7 @@ func NewSmartFromInfluxDB(attrs map[string]interface{}) (*Smart, error) { Attributes: map[string]SmartAttribute{}, } - log.Printf("Prefetched Smart: %v\n", sm) - - //two steps (because we dont know the for key, val := range attrs { - log.Printf("Found Attribute (%s = %v)\n", key, val) - switch key { case "temp": sm.Temp = val.(int64) @@ -100,13 +95,7 @@ func NewSmartFromInfluxDB(attrs map[string]interface{}) (*Smart, error) { } - log.Printf("########NUMBER OF ATTRIBUTES: %v", len(sm.Attributes)) - log.Printf("########SMART: %v", sm) - - //panic("ERROR HERE.") - - //log.Printf("Sm.Attributes: %v", sm.Attributes) - //log.Printf("sm.Attributes[attributeId]: %v", sm.Attributes[attributeId]) + log.Printf("Found Smart Device (%s) Attributes (%v)", sm.DeviceWWN, len(sm.Attributes)) return &sm, nil }