Skip to content

Commit 769c7ec

Browse files
melanietomshaleman
authored andcommitted
Hostname is added for service info (#17)
* Hostname added * Hostname is set in RegisterService
1 parent 179d836 commit 769c7ec

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

consulService.go

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ type consulServiceState struct {
3535
Port int // Port number where its listening
3636
SessionID string // session id assigned by consul
3737
stopChan chan struct{} // Channel to stop ttl refresh
38+
Hostname string // Host name where its running
3839
}
3940

4041
// RegisterService registers a service
@@ -126,6 +127,7 @@ func (cp *ConsulClient) RegisterService(serviceInfo ServiceInfo) error {
126127
Port: serviceInfo.Port,
127128
SessionID: sessionID,
128129
stopChan: stopChan,
130+
Hostname: serviceInfo.Hostname,
129131
}
130132

131133
return nil

etcdService.go

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ type etcdServiceState struct {
3535
TTL time.Duration // TTL for the service
3636
HostAddr string // Host name or IP address where its running
3737
Port int // Port number where its listening
38+
Hostname string // Host name where its running
3839

3940
// Channel to stop ttl refresh
4041
stopChan chan bool
@@ -70,6 +71,7 @@ func (ep *EtcdClient) RegisterService(serviceInfo ServiceInfo) error {
7071
HostAddr: serviceInfo.HostAddr,
7172
Port: serviceInfo.Port,
7273
stopChan: make(chan bool, 1),
74+
Hostname: serviceInfo.Hostname,
7375
}
7476

7577
// Run refresh in background

objdb.go

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ type ServiceInfo struct {
5656
TTL int // TTL for this service
5757
HostAddr string // Host name or IP address where its running
5858
Port int // Port number where its listening
59+
Hostname string // Host name where its running
5960
}
6061

6162
// Watch events

0 commit comments

Comments
 (0)