Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/box/wavectl

Command Line Client For Wavefront
https://github.com/box/wavectl

api cli wavefront

Last synced: 2 days ago
JSON representation

Command Line Client For Wavefront

Awesome Lists containing this project

README

        

# wavectl

[![CircleCI](https://circleci.com/gh/box/wavectl.svg?style=svg)](https://circleci.com/gh/box/wavectl) [![Project Status](http://opensource.box.com/badges/active.svg)](http://opensource.box.com/badges)

A command line client for [Wavefront](https://www.wavefront.com) inspired by [kubectl](https://kubernetes.io/docs/reference/kubectl/overview/) and [git](https://git-scm.com/docs) command line tools.

## Example Commands

A short list of common usages. For more details [Use Cases](#example-use-cases) section.

### Show one line summaries for Wavefront alerts

```
$ wavectl show alert
ID NAME STATUS SEVERITY
1530723441304 Kubernetes - Node Network Utilization - HIGH (Prod) CHECKING WARN
1530723441442 Kubernetes - Node Cpu Utilization - HIGH (Prod) CHECKING WARN
1530723441589 Kubernetes - Node Memory Swap Utilization - HIGH (Prod) SNOOZED WARN
...
```

### Show json state of alerts

```
$ wavectl show -o json alert
{
"additionalInformation": "This alert tracks the used network bandwidth percentage for all the compute-* (compute-master and compute-node) machines. If the cpu utilization exceeds 80%, this alert fires.",
"condition": "ts(proc.net.percent,server_type=\"compute-*\" and env=\"live\") > 80",
"displayExpression": "ts(proc.net.percent,server_type=\"compute-*\" and env=\"live\")",
"id": "1530723441304",
"minutes": 2,
"name": "Kubernetes - Node Network Utilization - HIGH (Prod)",
"resolveAfterMinutes": 2,
"severity": "WARN",
"tags": {
"customerTags": [
"kubernetes",
"skynet"
]
},
"target": "pd: 07fe9ebacf8c44e881ea2f6e44dbf2d2"
}
{
"additionalInformation": "This alert tracks the used cpu percentage for all the compute-* (compute-master and compute-node) machines. If the cpu utilization exceeds 80%, this alert fires.",
...
```

### Modify a dashboard's json and write it back to Wavefront

```
$> vim ./metadata-dashboard.json # Modify the json state of a dashboard
$> wavectl push ./metadata-dashboard.json dashboard # Write the new version to Wavefront

Replaced dashboard(s):
ID NAME DESCRIPTION
metadata-php Metadata PHP Monitors for Metadata in the PHP webapp
```

## Example Use Cases

- [Command line operations on your alerts, dashboards](doc/CommandLine.md)

- [Advanced grep in your alerts and dashboards](doc/AdvancedGrep.md)

- [Launch Wavefront GUI via `wavectl`](doc/BrowserIntegration.md)

- [Repetitive editing of alerts, dashboards](doc/RepetitiveEditing.md)

- [Simple templating of alerts, dashboards with `wavectl`](doc/Templating.md)

- [Git integration](doc/GitIntegration.md)

- [Easy configuration of `wavectl`](doc/WavectlConfig.md)

## [Command Reference](doc/CommandReference.md)

## Installation

To install the latest release:

```
pip install wavectl
```

To install from the master branch in github:

```
pip install git+https://github.com/box/wavectl.git
```

The master branch may contain unreleased features or bug fixes. The master branch *should* always stay stable.

## A note about Performance

`wavectl`'s execution time depends on the number of alerts or dashboards you have in Wavefront. All [resource filtering](doc/CommandReference.md#resource-options) except the `--customerTag, -t` option is done on the client side. This enables the powerful regular expression matching on your results. But if your organization has thousands of alerts and dashboards, the data size may overwhelm the `wavectl` execution time.

If your organization has a lot of alerts and dashboards in Wavefront we strongly recommend to use `--customerTag` option in your commands. The filtering based on customerTag is done on the Wavefront server side. With `--customerTags` option, wavectl client will only receive data about alerts/dashboards if they are tagged with all of the specified tags. This reduces the data size processed by wavectl and results in faster execution.

## Notes

If you could not find what you were looking for please consider [contributing](CONTRIBUTING.md). You could also take a look at [another](https://github.com/wavefrontHQ/ruby-client/blob/master/README-cli.md) CLI implementation for Wavefront. That one is written by Wavefront and mirrors their web api more closely. This `wavectl` CLI has evolved from our use cases.

`wavectl` is designed to add automation, command line access to Wavefront data that is **human generated**. Initial examples are alerts and dashboards. We see those as more permanent, slow changing state in Wavefront. `wavectl` is not optimized to read, write time series data to Wavefront or any other data that is ingested by Wavefront at real time production workload scale.

## Support

Need to contact us directly? Email [email protected] and be sure to include the name of this project in the subject.

## Copyright and License

Copyright 2018 Box, Inc. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

```
http://www.apache.org/licenses/LICENSE-2.0
```

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.