mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	 9f5babf584
			
		
	
	9f5babf584
	
	
	
		
			
			* core: Record the time a node became active * Update vault/core.go Co-authored-by: Nick Cabatoff <ncabatoff@hashicorp.com> * Add omitempty field * Update vendor * Added CL entry and fixed test * Fix test * Fix command package tests Co-authored-by: Nick Cabatoff <ncabatoff@hashicorp.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package api
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| func (c *Sys) Leader() (*LeaderResponse, error) {
 | |
| 	r := c.c.NewRequest("GET", "/v1/sys/leader")
 | |
| 
 | |
| 	ctx, cancelFunc := context.WithCancel(context.Background())
 | |
| 	defer cancelFunc()
 | |
| 	resp, err := c.c.RawRequestWithContext(ctx, r)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	defer resp.Body.Close()
 | |
| 
 | |
| 	var result LeaderResponse
 | |
| 	err = resp.DecodeJSON(&result)
 | |
| 	return &result, err
 | |
| }
 | |
| 
 | |
| type LeaderResponse struct {
 | |
| 	HAEnabled                bool      `json:"ha_enabled"`
 | |
| 	IsSelf                   bool      `json:"is_self"`
 | |
| 	ActiveTime               time.Time `json:"active_time"`
 | |
| 	LeaderAddress            string    `json:"leader_address"`
 | |
| 	LeaderClusterAddress     string    `json:"leader_cluster_address"`
 | |
| 	PerfStandby              bool      `json:"performance_standby"`
 | |
| 	PerfStandbyLastRemoteWAL uint64    `json:"performance_standby_last_remote_wal"`
 | |
| 	LastWAL                  uint64    `json:"last_wal"`
 | |
| 	RaftCommittedIndex       uint64    `json:"raft_committed_index,omitempty"`
 | |
| 	RaftAppliedIndex         uint64    `json:"raft_applied_index,omitempty"`
 | |
| }
 |