@@ -38,7 +38,7 @@ import (
38
38
)
39
39
40
40
const (
41
- reconfigureWaitTimeout = 5 * time .Minute
41
+ reconfigureWaitTimeout = 10 * time .Minute
42
42
)
43
43
44
44
// cloudbeat configuration.
@@ -137,6 +137,7 @@ func (bt *cloudbeat) Run(b *beat.Beat) error {
137
137
bt .log .Infof ("Waiting for initial reconfiguration from Fleet server..." )
138
138
update , err := bt .reconfigureWait (reconfigureWaitTimeout )
139
139
if err != nil {
140
+ bt .log .Errorf ("Failed while waiting for initial reconfiguraiton from Fleet server: %v" , err )
140
141
return err
141
142
}
142
143
@@ -205,7 +206,7 @@ func (bt *cloudbeat) reconfigureWait(timeout time.Duration) (*common.Config, err
205
206
return nil , fmt .Errorf ("cancelled via context" )
206
207
207
208
case <- timer :
208
- return nil , fmt .Errorf ("timed out waiting for reconfiguration" )
209
+ return nil , fmt .Errorf ("timed out waiting for reconfiguration after %s" , time . Since ( start ) )
209
210
210
211
case update , ok := <- bt .configUpdates :
211
212
if ! ok {
@@ -219,12 +220,12 @@ func (bt *cloudbeat) reconfigureWait(timeout time.Duration) (*common.Config, err
219
220
}
220
221
221
222
if len (c .Streams ) == 0 {
222
- bt .log .Infof ("No streams received in reconfiguration %v" , update .FlattenedKeys ())
223
+ bt .log .Warnf ("No streams received in reconfiguration %v" , update .FlattenedKeys ())
223
224
continue
224
225
}
225
226
226
227
if c .Streams [0 ].DataYaml == nil {
227
- bt .log .Infof ("data_yaml not present in reconfiguration %v" , update .FlattenedKeys ())
228
+ bt .log .Warnf ("data_yaml not present in reconfiguration %v" , update .FlattenedKeys ())
228
229
continue
229
230
}
230
231
0 commit comments