8000 GitHub - wangmingjunabc/edgex-cli
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

wangmingjunabc/edgex-cli

 
 

Repository files navigation

Go Report Card

edgex-cli

Introduction

A command line interface to interact with EdgeX microservices. Replaces the need to manually construct complex CURL commands and/or maintain developer scripts.

 _____    _           __  __  _____                     _            
| ____|__| | __ _  ___\ \/ / |  ___|__  _   _ _ __   __| |_ __ _   _ 
|  _| / _` |/ _` |/ _ \\  /  | |_ / _ \| | | | '_ \ / _` | '__| | | |
| |__| (_| | (_| |  __//  \  |  _| (_) | |_| | | | | (_| | |  | |_| |
|_____\__,_|\__, |\___/_/\_\ |_|  \___/ \__,_|_| |_|\__,_|_|   \__, |
            |___/                                              |___/ 


https://www.edgexfoundry.org/

Usage:
  edgex [command]

Available Commands:
  addressable   Addressable command command
  db            Purges entire EdgeX Database. [USE WITH CAUTION]
  device        Device command
  deviceservice Device service command
  event         Event command
  help          Help about any command
  interval      Interval command
  notification  Notification command
  profile       Device profile command.
  reading       Reading command
  status        Checks the current status of each microservice.
  subscription  Subscription command
  version       Version command

Flags:
  -h, --help       help for edgex
      --no-pager   Do not pipe output into a pager.
  -u, --url        Print URL(s) used by the entered command.
  -v, --verbose    Print entire HTTP response.

Use "edgex [command] --help" for more information about a command.

Installation

In order to run this tool, you will need an accessible running EdgeX instance somewhere and Go 1.12 or higher installed on your machine.

  • Clone the git repo:
$ git clone https://github.com/edgexfoundry-holding/edgex-cli
  • Change directory:
$ cd edgex-cli
  • Install the CLI:
$ make install

Install also makes a copy of the default configuration and copies it to $HOME/.edgex-cli/configuration.toml. If your EdgeX instance is not running on localhost, minimally you will need to replace localhost with the correct IP address. You can now use the CLI by entering edgex-cli anywhere on your machine provided your $GOBIN is on your $PATH.

Interactive Mode

Some commands leverage interactive-mode which opens an editor and allows you to provide information that would normally be difficult with just command line arguments. For example, creating an Event requires a lot of information, also Events contain zero or more readings. Using interactive mode, you can easily create an Event with many readings and customize each reading. You can choose the editor that is used by setting the environment variable EDITOR. The default editor is Vi for Unix operating systems(MacOS, Linux, etc), Notepad for Windows OS. The default editor is used if no EDITOR is specified. Some examples of editors:

  • vi
  • vim
  • nano
  • emacs
  • notepad
  • vscode
  • atom

Developers

Follow the installation instructions to create a configuration file and edit as necessary. To try out your changes, you can either build the binary and execute or by calling go run.

  • Build and run:
$ make build
$ ./edgex-cli
  • Use go run:
$ go run main.go [COMMAND]
  • Running tests:
$ make test

This will generate a coverage.out file in the root directory of the repo which you can use to see test coverage of code by running

$ go tool cover -html=coverage.out

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 97.2%
  • Shell 2.1%
  • Makefile 0.7%
0