Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

take list of IPS to scrape from headless svc #379

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions phpfpm/phpfpm.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"encoding/json"
"fmt"
"io/ioutil"
"net"
"net/url"
"regexp"
"strconv"
Expand Down Expand Up @@ -128,6 +129,24 @@ func (pm *PoolManager) Update() (err error) {

started := time.Now()

ips, err := net.LookupIP("php-fpm-headless.logistic-services.svc.cluster.local")

if err != nil {
log.Error(err)
return nil
}

pm.Pools = []Pool{}
log.Debug("Found ips for scraping")
log.Debug(ips)

for _, ip := range ips {
uri := fmt.Sprintf("tcp://%s:9000/status", ip.String())
log.Debugf("Generated uri for scraping: %s", uri)
p := Pool{Address: uri}
pm.Pools = append(pm.Pools, p)
}

for idx := range pm.Pools {
wg.Add(1)
go func(p *Pool) {
Expand Down
Loading