-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #615 from owncloud/settings-version-command
add version command and add build information to metrics
- Loading branch information
Showing
14 changed files
with
129 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Enhancement: add version command | ||
|
||
Added a version command to print the versions of all running ocis-settings service instances. | ||
Also added build information to the metrics. | ||
|
||
https://github.com/owncloud/product/issues/226 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package command | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
"github.com/micro/cli/v2" | ||
"github.com/micro/go-micro/v2/registry/mdns" | ||
tw "github.com/olekukonko/tablewriter" | ||
"github.com/owncloud/ocis/settings/pkg/config" | ||
"github.com/owncloud/ocis/settings/pkg/flagset" | ||
) | ||
|
||
// PrintVersion prints the service versions of all running instances. | ||
func PrintVersion(cfg *config.Config) *cli.Command { | ||
return &cli.Command{ | ||
Name: "version", | ||
Usage: "Print the versions of the running instances", | ||
Flags: flagset.ListSettingsWithConfig(cfg), | ||
Action: func(c *cli.Context) error { | ||
reg := mdns.NewRegistry() | ||
services, err := reg.GetService(cfg.GRPC.Namespace + "." + cfg.Service.Name) | ||
if err != nil { | ||
fmt.Println(fmt.Errorf("could not get settings services from the registry: %v", err)) | ||
return err | ||
} | ||
|
||
if len(services) == 0 { | ||
fmt.Println("No running settings service found.") | ||
return nil | ||
} | ||
|
||
table := tw.NewWriter(os.Stdout) | ||
table.SetHeader([]string{"Version", "Address", "Id"}) | ||
table.SetAutoFormatHeaders(false) | ||
for _, s := range services { | ||
for _, n := range s.Nodes { | ||
table.Append([]string{s.Version, n.Address, n.Id}) | ||
} | ||
} | ||
table.Render() | ||
return nil | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters