@@ -719,6 +719,7 @@ func assertEqualGroups(t *testing.T, got, expected []*targetgroup.Group, msg fun
719
719
}
720
720
721
721
func verifyPresence (t * testing.T , tSets map [poolKey ]map [string ]* targetgroup.Group , poolKey poolKey , label string , present bool ) {
722
+ t .Helper ()
722
723
if _ , ok := tSets [poolKey ]; ! ok {
723
724
t .Fatalf ("'%s' should be present in Pool keys: %v" , poolKey , tSets )
724
725
return
@@ -741,7 +742,7 @@ func verifyPresence(t *testing.T, tSets map[poolKey]map[string]*targetgroup.Grou
741
742
if ! present {
742
743
msg = "not"
743
744
}
744
- t .Fatalf ("'%s' should %s be present in Targets labels: %v " , label , msg , mergedTargets )
745
+ t .Fatalf ("%q should %s be present in Targets labels: %q " , label , msg , mergedTargets )
745
746
}
746
747
}
747
748
@@ -781,7 +782,7 @@ scrape_configs:
781
782
- targets: ["foo:9090"]
782
783
`
783
784
if err := yaml .UnmarshalStrict ([]byte (sTwo ), cfg ); err != nil {
784
- t .Fatalf ("Unable to load YAML config sOne : %s" , err )
785
+ t .Fatalf ("Unable to load YAML config sTwo : %s" , err )
785
786
}
786
787
c = make (map [string ]sd_config.ServiceDiscoveryConfig )
787
788
for _ , v := range cfg .ScrapeConfigs {
@@ -794,6 +795,67 @@ scrape_configs:
794
795
verifyPresence (t , discoveryManager .targets , poolKey {setName : "prometheus" , provider : "string/0" }, "{__address__=\" bar:9090\" }" , false )
795
796
}
796
797
798
+ // TestTargetSetRecreatesEmptyStaticConfigs ensures that reloading a config file after
799
+ // removing all targets from the static_configs sends an update with empty targetGroups.
800
+ // This is required to signal the receiver that this target set has no current targets.
801
+ func TestTargetSetRecreatesEmptyStaticConfigs (t * testing.T ) {
802
+ cfg := & config.Config {}
803
+
804
+ sOne := `
805
+ scrape_configs:
806
+ - job_name: 'prometheus'
807
+ static_configs:
808
+ - targets: ["foo:9090"]
809
+ `
810
+ if err := yaml .UnmarshalStrict ([]byte (sOne ), cfg ); err != nil {
811
+ t .Fatalf ("Unable to load YAML config sOne: %s" , err )
812
+ }
813
+ ctx , cancel := context .WithCancel (context .Background ())
814
+ defer cancel ()
815
+ discoveryManager := NewManager (ctx , log .NewNopLogger ())
816
+ discoveryManager .updatert = 100 * time .Millisecond
817
+ go discoveryManager .Run ()
818
+
819
+ c := make (map [string ]sd_config.ServiceDiscoveryConfig )
820
+ for _ , v := range cfg .ScrapeConfigs {
821
+ c [v .JobName ] = v .ServiceDiscoveryConfig
822
+ }
823
+ discoveryManager .ApplyConfig (c )
824
+
825
+ <- discoveryManager .SyncCh ()
826
+ verifyPresence (t , discoveryManager .targets , poolKey {setName : "prometheus" , provider : "string/0" }, "{__address__=\" foo:9090\" }" , true )
827
+
828
+ sTwo := `
829
+ scrape_configs:
830
+ - job_name: 'prometheus'
831
+ static_configs:
832
+ `
833
+ if err := yaml .UnmarshalStrict ([]byte (sTwo ), cfg ); err != nil {
834
+ t .Fatalf ("Unable to load YAML config sTwo: %s" , err )
835
+ }
836
+ c = make (map [string ]sd_config.ServiceDiscoveryConfig )
837
+ for _ , v := range cfg .ScrapeConfigs {
838
+ c [v .JobName ] = v .ServiceDiscoveryConfig
839
+ }
840
+ discoveryManager .ApplyConfig (c )
841
+
842
+ <- discoveryManager .SyncCh ()
843
+
844
+ pkey := poolKey {setName : "prometheus" , provider : "string/0" }
845
+ targetGroups , ok := discoveryManager .targets [pkey ]
846
+ if ! ok {
847
+ t .Fatalf ("'%v' should be present in target groups" , pkey )
848
+ }
849
+ group , ok := targetGroups ["" ]
850
+ if ! ok {
851
+ t .Fatalf ("missing '' key in target groups %v" , targetGroups )
852
+ }
853
+
854
+ if len (group .Targets ) != 0 {
855
+ t .Fatalf ("Invalid number of targets: expected 0, got %d" , len (group .Targets ))
856
+ }
857
+ }
858
+
797
859
func TestIdenticalConfigurationsAreCoalesced (t * testing.T ) {
798
860
tmpFile , err := ioutil .TempFile ("" , "sd" )
799
861
if err != nil {
0 commit comments