Skip to content

Commit dd98361

Browse files
authored
More logs (#202)
1 parent 750e299 commit dd98361

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

beater/cloudbeat.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
)
3939

4040
const (
41-
reconfigureWaitTimeout = 5 * time.Minute
41+
reconfigureWaitTimeout = 10 * time.Minute
4242
)
4343

4444
// cloudbeat configuration.
@@ -137,6 +137,7 @@ func (bt *cloudbeat) Run(b *beat.Beat) error {
137137
bt.log.Infof("Waiting for initial reconfiguration from Fleet server...")
138138
update, err := bt.reconfigureWait(reconfigureWaitTimeout)
139139
if err != nil {
140+
bt.log.Errorf("Failed while waiting for initial reconfiguraiton from Fleet server: %v", err)
140141
return err
141142
}
142143

@@ -205,7 +206,7 @@ func (bt *cloudbeat) reconfigureWait(timeout time.Duration) (*common.Config, err
205206
return nil, fmt.Errorf("cancelled via context")
206207

207208
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))
209210

210211
case update, ok := <-bt.configUpdates:
211212
if !ok {
@@ -219,12 +220,12 @@ func (bt *cloudbeat) reconfigureWait(timeout time.Duration) (*common.Config, err
219220
}
220221

221222
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())
223224
continue
224225
}
225226

226227
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())
228229
continue
229230
}
230231

0 commit comments

Comments
 (0)