diff --git a/README.md b/README.md index 3a769ea2d..8273f478b 100644 --- a/README.md +++ b/README.md @@ -17,13 +17,13 @@ See the License for the specific language governing permissions and limitations under the License. --> -# **snap** _A powerful telemetry framework_ +# **snap** _the open telemetry framework_ [![Join the chat on Slack](https://intelsdi-x.herokuapp.com/badge.svg)](https://intelsdi-x.herokuapp.com/) [![Build Status](https://travis-ci.org/intelsdi-x/snap.svg?branch=master)](https://travis-ci.org/intelsdi-x/snap) [![Go Report Card](https://goreportcard.com/badge/intelsdi-x/snap)](https://goreportcard.com/report/intelsdi-x/snap) - + ---- diff --git a/cmd/snapctl/main.go b/cmd/snapctl/main.go index 3246cd57c..7e1474e0f 100644 --- a/cmd/snapctl/main.go +++ b/cmd/snapctl/main.go @@ -45,7 +45,7 @@ func main() { app := cli.NewApp() app.Name = "snapctl" app.Version = gitversion - app.Usage = "A powerful telemetry framework" + app.Usage = "The open telemetry framework" app.Flags = []cli.Flag{flURL, flSecure, flAPIVer, flPassword, flConfig} app.Commands = append(commands, tribeCommands...) sort.Sort(ByCommand(app.Commands)) diff --git a/docs/PLUGIN_CATALOG.md b/docs/PLUGIN_CATALOG.md index 542f9e96c..e5d89d68c 100644 --- a/docs/PLUGIN_CATALOG.md +++ b/docs/PLUGIN_CATALOG.md @@ -25,6 +25,7 @@ This is the master catalog of plugins for snap. The plugins in this list may be | Libvirt | Collector | Collects from libvirt | [snap-plugin-collector-libvirt](https://github.com/intelsdi-x/snap-plugin-collector-libvirt) | [Linux](https://s3-us-west-1.amazonaws.com/snap-plugins-linux-latest/snap-plugin-collector-libvirt) | Load | Collector | Collects plaform load metrics from Linux procfs | [snap-plugin-collector-load](https://github.com/intelsdi-x/snap-plugin-collector-load) | [Linux](https://s3-us-west-1.amazonaws.com/snap-plugins-linux-latest/snap-plugin-collector-load) | Meminfo | Collector | Collects memory related metrics from Linux procfs | [snap-plugin-collector-meminfo](https://github.com/intelsdi-x/snap-plugin-collector-meminfo) | [Linux](https://s3-us-west-1.amazonaws.com/snap-plugins-linux-latest/snap-plugin-collector-meminfo) +| Mesos | Collector | Collects metrics from an Apache Mesos cluster | [snap-plugin-collector-mesos](https://github.com/intelsdi-x/snap-plugin-collector-mesos) | | MySQL | Collector | Collects metrics from MySQL DB | [snap-plugin-collector-mysql](https://github.com/intelsdi-x/snap-plugin-collector-mysql) | [Linux](https://s3-us-west-1.amazonaws.com/snap-plugins-linux-latest/snap-plugin-publisher-mysql) | [Darwin](https://s3-us-west-1.amazonaws.com/snap-plugins-darwin-latest/snap-plugin-publisher-mysql) | Neutron | Collector | Collect from OpenStack Neutron | [snap-plugin-collector-neutron](https://github.com/intelsdi-x/snap-plugin-collector-neutron) | [Linux](https://s3-us-west-1.amazonaws.com/snap-plugins-linux-latest/snap-plugin-collector-neutron) | NFS Client | Collector | Collect NFS client counters and RPC data | [snap-plugin-collector-nfsclient](https://github.com/intelsdi-x/snap-plugin-collector-nfsclient) | @@ -79,8 +80,6 @@ This is a wish list of plugins for snap. If you see one here and want to start o - snap App Endpoint (needs event spec) - Intel NIC - Kubernetes Minion -- Mesos Slave -- Mesos Master - JVM (via JMX) #### Processor diff --git a/snapd.go b/snapd.go index 912741664..eba9d94b6 100644 --- a/snapd.go +++ b/snapd.go @@ -195,7 +195,7 @@ func main() { app := cli.NewApp() app.Name = "snapd" app.Version = gitversion - app.Usage = "A powerful telemetry framework" + app.Usage = "The open telemetry framework" app.Flags = []cli.Flag{ flLogLevel, flLogPath,