Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/atc0005/check-statuspage

Go-based tooling to interact with status page APIs hosted by Atlassian Statuspage; NOT affiliated with or endorsed by Atlassian.
https://github.com/atc0005/check-statuspage

go golang maintenance nagios nagios-plugin outage plugin service status status-page statuspage

Last synced: 6 days ago
JSON representation

Go-based tooling to interact with status page APIs hosted by Atlassian Statuspage; NOT affiliated with or endorsed by Atlassian.

Awesome Lists containing this project

README

        

# check-statuspage

Go-based tooling to interact with status page APIs hosted by Atlassian
Statuspage; NOT affiliated with or endorsed by Atlassian.

[![Latest Release](https://img.shields.io/github/release/atc0005/check-statuspage.svg?style=flat-square)](https://github.com/atc0005/check-statuspage/releases/latest)
[![Go Reference](https://pkg.go.dev/badge/github.com/atc0005/check-statuspage.svg)](https://pkg.go.dev/github.com/atc0005/check-statuspage)
[![go.mod Go version](https://img.shields.io/github/go-mod/go-version/atc0005/check-statuspage)](https://github.com/atc0005/check-statuspage)
[![Lint and Build](https://github.com/atc0005/check-statuspage/actions/workflows/lint-and-build.yml/badge.svg)](https://github.com/atc0005/check-statuspage/actions/workflows/lint-and-build.yml)
[![Project Analysis](https://github.com/atc0005/check-statuspage/actions/workflows/project-analysis.yml/badge.svg)](https://github.com/atc0005/check-statuspage/actions/workflows/project-analysis.yml)

## Table of Contents

- [check-statuspage](#check-statuspage)
- [Project home](#project-home)
- [Overview](#overview)
- [Output](#output)
- [Performance Data](#performance-data)
- [`check_statuspage_components` Plugin](#check_statuspage_components-plugin)
- [NOTES](#notes)
- [`check_statuspage_components`](#check_statuspage_components)
- [`lscs`](#lscs)
- [Features](#features)
- [Changelog](#changelog)
- [Requirements](#requirements)
- [Building source code](#building-source-code)
- [Running](#running)
- [Installation](#installation)
- [From source](#from-source)
- [Using provided binaries](#using-provided-binaries)
- [Linux](#linux)
- [Other operating systems](#other-operating-systems)
- [Configuration options](#configuration-options)
- [Threshold calculations](#threshold-calculations)
- [`check_statuspage_components`](#check_statuspage_components-1)
- [Command-line arguments](#command-line-arguments)
- [`check_statuspage_components`](#check_statuspage_components-2)
- [`lscs`](#lscs-1)
- [Configuration file](#configuration-file)
- [Examples](#examples)
- [`check_statuspage_components` Nagios plugin](#check_statuspage_components-nagios-plugin)
- [CLI invocations](#cli-invocations)
- [Evaluate all subcomponents in a group](#evaluate-all-subcomponents-in-a-group)
- [Evaluate a specific top-level component](#evaluate-a-specific-top-level-component)
- [Command definition](#command-definition)
- [`lscs` CLI app](#lscs-cli-app)
- [CLI invocation](#cli-invocation)
- [The `table` format (default)](#the-table-format-default)
- [The `overview` format](#the-overview-format)
- [The `verbose` format](#the-verbose-format)
- [The `list` format](#the-list-format)
- [Other supported formats](#other-supported-formats)
- [License](#license)
- [References](#references)

## Project home

See [our GitHub repo][repo-url] for the latest code, to file an issue or
submit improvements for review and potential inclusion into the project.

Just to be 100% clear: this project is not affiliated with or endorsed by
Atlassian.

## Overview

This repo contains various tools and plugins used to monitor status pages
powered by Atlassian Statuspage.

| Plugin or Tool Name | Description |
| ----------------------------- | ------------------------------------------------------------ |
| `lscs` | CLI app to list `components` in multiple output formats. |
| `check_statuspage_components` | Nagios plugin used to monitor one, many or all `components`. |

### Output

The output for plugins in this project is designed to provide the one-line
summary needed by Nagios (and other monitoring systems) for quick
identification of a problem while providing longer, more detailed information
for display within the web UI, use in email and Teams notifications
([atc0005/send2teams](https://github.com/atc0005/send2teams)).

By default, output intended for processing by Nagios is sent to `stdout` and
output intended for troubleshooting by the sysadmin is sent to `stderr`.
Output emitted to `stderr` is configurable via the `--log-level` flag.

For some monitoring systems or addons (e.g., Icinga Web 2, Nagios XI), the
`stderr` output is mixed in with the `stdout` output in the web UI for the
service check. This may add visual noise when viewing the service check
output. For those cases, you may wish to explicitly disable the output to
`stderr` by using the `--log-level "disabled"` CLI flag & value.

### Performance Data

Initial support has been added for emitting Performance Data / Metrics, but
refinement suggestions are welcome.

Consult the tables below for the metrics implemented thus far.

Please add to an existing
[Discussion](https://github.com/atc0005/check-statuspage/discussions) thread
(if applicable) or [open a new
one](https://github.com/atc0005/check-statuspage/discussions/new) with any
feedback that you may have. Thanks in advance!

#### `check_statuspage_components` Plugin

| Emitted Performance Data / Metric | Meaning |
| --------------------------------- | --------------------------------------------------------------------------------- |
| `time` | Runtime for plugin |
| `all_component_groups` | Number of non-excluded component Groups |
| `all_components` | Number of non-excluded components `*` |
| `all_components_critical` | Number of non-excluded components in a `CRITICAL` state |
| `all_components_ok` | Number of non-excluded components in an `OK` state |
| `all_components_unknown` | Number of non-excluded components in an `UNKNOWN` state |
| `all_components_warning` | Number of non-excluded components in a `WARNING` state |
| `all_problem_components` | Number of non-excluded components in a "problem" (non-`OK`) state |
| `excluded_problem_components` | Number of excluded components (all states) |
| `remaining_components_critical` | Number of components in a `CRITICAL` state remaining *after* exclusions |
| `remaining_components_ok` | Number of components in an `OK` state remaining *after* exclusions |
| `remaining_components_unknown` | Number of components in an `UNKNOWN` state remaining *after* exclusions |
| `remaining_components_warning` | Number of components in a `WARNING` state remaining *after* exclusions |
| `remaining_problem_components` | Number of components in a "problem" (non-`OK`) state remaining *after* exclusions |

##### NOTES

- the `all_components` metric (`*`)
- includes top-level components (not part of a component Group)
- includes subcomponents (part of a component Group)
- *includes* component Groups
- the `*_components_STATE` metrics (where `STATE` is `critical`, `ok`,
`unknown`, `warning`)
- includes top-level components (not part of a component Group)
- includes subcomponents (part of a component Group)
- *excludes* component Groups
- subcomponents are not currently reported as independent values
- top-level / standalone components (those outside of a component Group) are
not currently reported as independent values

### `check_statuspage_components`

Nagios plugin used to monitor the status of one, many or all `components`
(aka, "services") of a Statuspage powered site. See the [configuration
options](#configuration-options) section for details regarding supported flags
and values.

### `lscs`

Small CLI app used to generate an overview of `components` (aka, "services")
of a Statuspage powered site. This tool can be useful for quickly inspecting a
new Statuspage powered site to retrieve `component` names or IDs for
monitoring via the `check_statuspage_components` plugin.

## Features

- Plugin for monitoring an Atlassian Statuspage powered site
- the status of `components` (aka, "services") specified by one or many
top-level components, component groups (all subcomponents) or component
group and subcomponents

- CLI app to list `components` from an Atlassian Statuspage powered site
- multiple output formats
- `overview`
- `table`
- `verbose`
- `debug`
- `list` (mostly used to assist with crafting test cases)
- `json`

- User-specified input sources
- local file
- useful for testing
- useful to help prevent hitting API limits (e.g., refresh via a cron job)
- remote URL
- e.g.,
- most common scenario

- Optional, leveled logging using `rs/zerolog` package
- JSON-format output (to `stderr`)
- choice of `disabled`, `panic`, `fatal`, `error`, `warn`, `info` (the
default), `debug` or `trace`.

- Optional, user-specified timeout value for plugin execution

- Optional, user-specified read limit
- helps protect against excessive/unexpected input size

- Optional override to allow unknown JSON fields in input source
- future proofing
- could be useful as a hotfix until plugins in this project can be updated
to handle future JSON input changes

- Optional support for omitting `components` in an `OK` state (aka,
`operational` status)
- help focus on just the `components` with a "problem" status

- Optional support for omitting summary in results output

## Changelog

See the [`CHANGELOG.md`](CHANGELOG.md) file for the changes associated with
each release of this application. Changes that have been merged to `master`,
but not yet an official release may also be noted in the file under the
`Unreleased` section. A helpful link to the Git commit history since the last
official release is also provided for further review.

## Requirements

The following is a loose guideline. Other combinations of Go and operating
systems for building and running tools from this repo may work, but have not
been tested.

### Building source code

- Go
- see this project's `go.mod` file for *preferred* version
- this project tests against [officially supported Go
releases][go-supported-releases]
- the most recent stable release (aka, "stable")
- the prior, but still supported release (aka, "oldstable")
- GCC
- if building with custom options (as the provided `Makefile` does)
- `make`
- if using the provided `Makefile`

### Running

- Windows 10
- Ubuntu Linux 18.04+

## Installation

### From source

1. [Download][go-docs-download] Go
1. [Install][go-docs-install] Go
- NOTE: Pay special attention to the remarks about `$HOME/.profile`
1. Clone the repo
1. `cd /tmp`
1. `git clone https://github.com/atc0005/check-statuspage`
1. `cd check-statuspage`
1. Install dependencies (optional)
- for Ubuntu Linux
- `sudo apt-get install make gcc`
- for CentOS Linux
- `sudo yum install make gcc`
- for Windows
- Emulated environments (*easier*)
- Skip all of this and build using the default `go build` command in
Windows (see below for use of the `-mod=vendor` flag)
- build using Windows Subsystem for Linux Ubuntu environment and just
copy out the Windows binaries from that environment
- If already running a Docker environment, use a container with the Go
tool-chain already installed
- If already familiar with LXD, create a container and follow the
installation steps given previously to install required dependencies
- Native tooling (*harder*)
- see the StackOverflow Question `32127524` link in the
[References](references.md) section for potential options for
installing `make` on Windows
- see the mingw-w64 project homepage link in the
[References](references.md) section for options for installing `gcc`
and related packages on Windows
1. Build binaries
- for the current operating system, explicitly using bundled dependencies
in top-level `vendor` folder
- `go build -mod=vendor ./cmd/check_statuspage_components/`
- `go build -mod=vendor ./cmd/lscs/`
- for all supported platforms (where `make` is installed)
- `make all`
- for use on Windows
- `make windows`
- for use on Linux
- `make linux`
1. Copy the newly compiled binary from the applicable `/tmp` subdirectory path
(based on the clone instructions in this section) below and deploy where
needed.
- if using `Makefile`
- look in `/tmp/check-statuspage/release_assets/check_statuspage_components/`
- look in `/tmp/check-statuspage/release_assets/lscs/`
- if using `go build`
- look in `/tmp/check-statuspage/`
1. Review [configuration options](#configuration-options) and
[examples](#examples) sections usage details.

**NOTE**: Depending on which `Makefile` recipe you use the generated binary
may be compressed and have an `xz` extension. If so, you should decompress the
binary first before deploying it (e.g., `xz -d
check_statuspage_components-linux-amd64.xz`).

### Using provided binaries

#### Linux

1. Download plugins from the [Latest
release](https://github.com/atc0005/check-statuspage/releases/latest) that you
are interested in
1. Decompress binaries
- e.g., `xz -d check_statuspage_components-linux-amd64.xz`
1. Review [configuration options](#configuration-options) and
[examples](#examples) sections usage details.

**NOTE**:

DEB and RPM packages are provided as an alternative to manually deploying
binaries.

#### Other operating systems

Binaries for Windows are currently available, but may be discontinued if there
isn't sufficient interest.

If you would benefit from precompiled binaries for other platforms, please let
us know by opening a new issue or responding to an existing issue with an
up-vote. See for a list of supported
architectures and operating systems.

## Configuration options

### Threshold calculations

#### `check_statuspage_components`

This table lists equivalent Nagios plugin states and Statuspage status values.
Though these are not technically *thresholds*, the plugin lists them as such
for quick reference.

| Nagios State | Statuspage Status |
| ------------ | ------------------------------------------------------------- |
| `OK` | `operational` |
| `WARNING` | `under_maintenance`, `partial_outage`, `degraded_performance` |
| `CRITICAL` | `major_outage` |

### Command-line arguments

- Use the `-h` or `--help` flag to display current usage information.
- Flags marked as **`required`** must be set via CLI flag.
- Flags *not* marked as required are for settings where a useful default is
already defined, but may be overridden if desired.

#### `check_statuspage_components`

| Flag | Required | Default | Repeat | Possible | Description |
| ----------------------------- | --------- | --------- | ------ | ----------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `branding` | No | `false` | No | `branding` | Toggles emission of branding details with plugin status details. This output is disabled by default. |
| `h`, `help` | No | `false` | No | `h`, `help` | Show Help text along with the list of supported flags. |
| `v`, `version` | No | `false` | No | `v`, `version` | Whether to display application version and then immediately exit application. |
| `verbose` | No | `false` | No | `true`, `false` | Whether to display verbose details in the final plugin output. |
| `ll`, `log-level` | No | `info` | No | `disabled`, `panic`, `fatal`, `error`, `warn`, `info`, `debug`, `trace` | Log message priority filter. Log messages with a lower level are ignored. Log messages are sent to `stderr` by default. See [Output](#output) for more information. |
| `t`, `timeout` | No | `10` | No | *positive whole number of seconds* | Timeout value in seconds allowed before a plugin execution attempt is abandoned and an error returned. |
| `f`, `filename` | **Maybe** | | No | *fully-qualified path to a Statuspage components JSON file* | The fully-qualified filename of a previously downloaded Statuspage API/JSON feed (e.g., /tmp/statuspage/github/components.json). This option is incompatible with the `--url` flag. |
| `u`, `url` | **Maybe** | | No | *valid https URL* | The fully-qualified URL of a Statuspage API/JSON feed (e.g., ).. |
| `g`, `group` | **Maybe** | | No | *valid name or ID value of component group* | A single name or ID value for a component group. Can be used by itself or with the flag to specify a list of components. If used with the components flag all specified components are required to be subcomponents of the group. |
| `c`, `component` | **Maybe** | | No | *valid name or ID value of component* | One or more comma-separated component (name or ID) values. Can be used by itself or with the flag to specify a component group. If used with the component group flag, all specified components are required to be subcomponents of the group. |
| `ea`, `eval-all` | **Maybe** | `false` | No | `true`, `false` | Whether all components should be evaluated. Incompatible with flag to specify list of components, component group or component group set. |
| `ook`, `omit-ok` | No | `false` | No | `true`, `false` | Whether listed components in results output should be limited to just those in a non-operational state. |
| `os`, `omit-summary` | No | `false` | No | `true`, `false` | Whether summary in results output should be omitted. |
| `rl`, `read-limit` | No | `1048576` | No | *valid whole number of bytes* | Limit in bytes used to help prevent abuse when reading input that could be larger than expected. The default value is nearly 4x the largest observed (formatted) feed size. |
| `auf`, `allow-unknown-fields` | No | `false` | No | `true`, `false` | Whether unknown JSON fields encountered while decoding JSON data should be ignored. |

#### `lscs`

| Flag | Required | Default | Repeat | Possible | Description |
| ----------------------------- | --------- | --------- | ------ | ----------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `h`, `help` | No | `false` | No | `h`, `help` | Show Help text along with the list of supported flags. |
| `v`, `version` | No | `false` | No | `v`, `version` | Whether to display application version and then immediately exit application. |
| `ll`, `log-level` | No | `info` | No | `disabled`, `panic`, `fatal`, `error`, `warn`, `info`, `debug`, `trace` | Log message priority filter. Log messages with a lower level are ignored. Log messages are sent to `stderr` by default. See [Output](#output) for more information. |
| `t`, `timeout` | No | `10` | No | *positive whole number of seconds* | Timeout value in seconds allowed before a plugin execution attempt is abandoned and an error returned. |
| `f`, `filename` | **Maybe** | | No | *fully-qualified path to a Statuspage components JSON file* | The fully-qualified filename of a previously downloaded Statuspage API/JSON feed (e.g., /tmp/statuspage/github/components.json). This option is incompatible with the `--url` flag. |
| `u`, `url` | **Maybe** | | No | *valid https URL* | The fully-qualified URL of a Statuspage API/JSON feed (e.g., ).. |
| `g`, `group` | **Maybe** | | No | *valid name or ID value of component group* | A single name or ID value for a component group. Can be used by itself or with the flag to specify a list of components. If used with the components flag all specified components are required to be subcomponents of the group. |
| `c`, `component` | **Maybe** | | No | *valid name or ID value of component* | One or more comma-separated component (name or ID) values. Can be used by itself or with the flag to specify a component group. If used with the component group flag, all specified components are required to be subcomponents of the group. |
| `ook`, `omit-ok` | No | `false` | No | `true`, `false` | Whether listed components in results output should be limited to just those in a non-operational state. Applies to `table`, `overview` and `verbose` formats. |
| `os`, `omit-summary` | No | `false` | No | `true`, `false` | Whether summary in results output should be omitted. |
| `rl`, `read-limit` | No | `1048576` | No | *valid whole number of bytes* | Limit in bytes used to help prevent abuse when reading input that could be larger than expected. The default value is nearly 4x the largest observed (formatted) feed size. |
| `auf`, `allow-unknown-fields` | No | `false` | No | `true`, `false` | Whether unknown JSON fields encountered while decoding JSON data should be ignored. |
| `fmt`, `output-format` | No | `table` | No | `overview`, `table`, `verbose`, `debug`, `list`, `json` | Sets output format. The default format is `table`. |

### Configuration file

Not currently supported. This feature may be added later if there is
sufficient interest.

## Examples

Entries in this section attempt to provide a brief overview of usage. While
the `--filename` flag is predominantly used to provide reproducible results
(based on the `testdata/components` files), the `--url` flag is also used for
contrast.

### `check_statuspage_components` Nagios plugin

#### CLI invocations

##### Evaluate all subcomponents in a group

We evaluate all subcomponents in the entire `Canvas` component group for a
non-OK or non-operational status. The most severe (non-excluded) status is
used as the final plugin state.

Here we use a cached testdata file:

```console
$ /usr/lib/nagios/plugins/check_statuspage_components --filename testdata/components/instructure-components.json --group 'Canvas'
{"level":"error","version":"check-statuspage x.y.z (https://github.com/atc0005/check-statuspage)","logging_level":"info","app_type":"plugin-components","timeout":"10s","filename":"testdata/components/instructure-components.json","url":"","read_limit":1048576,"allow_unknown_fields":false,"total_problem_components":8,"excluded_components":7,"excluded_problem_components":7,"remaining_problem_components":1,"time":"2023-07-26T05:07:29-05:00","caller":"/mnt/t/github/check-statuspage/cmd/check_statuspage_components/main.go:336","message":"Non-excluded, non-operational status of statuspage components detected"}
WARNING: 1 evaluated "Instructure" component has a non-operational status (17 evaluated, 24 total) [degraded_performance (1)]

**ERRORS**

* component with non-operational status not excluded from evaluation

**DETAILED INFO**

GROUP NAME COMPONENT NAME STATUS
---------- -------------- ------
Canvas Canvas DEGRADED PERFORMANCE
Canvas - Catalog OPERATIONAL
Canvas - Chat OPERATIONAL
Canvas - Collaboration OPERATIONAL
Canvas - Commons OPERATIONAL
Canvas - Conferences OPERATIONAL
Canvas - Document previewing OPERATIONAL
Canvas - Imports and exports OPERATIONAL
Canvas - Media tools OPERATIONAL
Canvas - Notifications OPERATIONAL
Canvas - Support: Phones/Chat OPERATIONAL
Canvas - Support: Webform/email OPERATIONAL
Canvas - ePortfolios OPERATIONAL
Canvas - Gauge OPERATIONAL

Portfolium Website DEGRADED PERFORMANCE
Portfolium Web Application DEGRADED PERFORMANCE
Portfolium EDU Platform DEGRADED PERFORMANCE

MasteryConnect Assessments DEGRADED PERFORMANCE
MasteryConnect Benchmarks DEGRADED PERFORMANCE
MasteryConnect Portal DEGRADED PERFORMANCE
MasteryConnect Reporting DEGRADED PERFORMANCE

Summary:

* Filtering applied to components set: true
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): false
* Number of total top-level components: 0
* Number of total component groups: 3
* Number of total subcomponents: 21
* Number of total problem components: 8
* Number of ignored problem components: 7
* Number of remaining problem components: 1

| 'all_component_groups'=3;;;; 'all_components'=24;;;; 'all_components_critical'=0;;;; 'all_components_ok'=13;;;; 'all_components_unknown'=0;;;; 'all_components_warning'=8;;;; 'all_problem_components'=8;;;; 'excluded_problem_components'=7;;;; 'remaining_components_critical'=0;;;; 'remaining_components_ok'=13;;;; 'remaining_components_unknown'=0;;;; 'remaining_components_warning'=1;;;; 'remaining_problem_components'=1;;;; 'time'=5ms;;;;
```

and here we use live data:

```console
$ /usr/lib/nagios/plugins/check_statuspage_components --url https://status.instructure.com/api/v2/components.json --group 'Canvas'
OK: 0 evaluated "Instructure" components have a non-operational status (13 evaluated, 32 total)

GROUP NAME COMPONENT NAME STATUS
---------- -------------- ------
Instructure OPERATIONAL
Impact OPERATIONAL

Canvas Canvas LMS OPERATIONAL
Canvas Canvas Catalog OPERATIONAL
Canvas Canvas Commons OPERATIONAL
Canvas Student ePortfolios OPERATIONAL
Canvas Canvas Studio OPERATIONAL
Canvas Canvas Credentials OPERATIONAL
Canvas Canvas Mobile OPERATIONAL
Canvas Student Pathways OPERATIONAL

Mastery Mastery Connect OPERATIONAL
Mastery Item Bank OPERATIONAL
Mastery Online Testing OPERATIONAL

Elevate Elevate K-12 Analytics OPERATIONAL
Elevate Elevate Data Quality OPERATIONAL
Elevate Elevate Data Sync OPERATIONAL
Elevate Elevate Standards Alignment OPERATIONAL
Elevate Elevate Data Hub OPERATIONAL

Support Tools Support: Phones/Chat OPERATIONAL
Support Tools Support: Webform/email OPERATIONAL

AWS Region ca-central-1 OPERATIONAL
AWS Region eu-central-1 OPERATIONAL
AWS Region eu-west-1 OPERATIONAL
AWS Region us-east-1 OPERATIONAL
AWS Region us-west-2 OPERATIONAL
AWS Region ap-southeast-1 OPERATIONAL
AWS Region ap-southeast-2 OPERATIONAL

Summary:

* Filtering applied to components set: true
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): false
* Number of total top-level components: 2
* Number of total component groups: 5
* Number of total subcomponents: 25
* Number of total problem components: 0
* Number of ignored problem components: 0
* Number of remaining problem components: 0

| 'all_component_groups'=5;;;; 'all_components'=32;;;; 'all_components_critical'=0;;;; 'all_components_ok'=27;;;; 'all_components_unknown'=0;;;; 'all_components_warning'=0;;;; 'all_problem_components'=0;;;; 'excluded_problem_components'=0;;;; 'remaining_components_critical'=0;;;; 'remaining_components_ok'=8;;;; 'remaining_components_unknown'=0;;;; 'remaining_components_warning'=0;;;; 'remaining_problem_components'=0;;;; 'time'=449ms;;;;
```

and here we opt to use the `--verbose` flag to restore output emitted by
default in earlier versions of the plugin:

```console
$ /usr/lib/nagios/plugins/check_statuspage_components --url https://status.instructure.com/api/v2/components.json --group 'Canvas' --verbose
OK: 0 evaluated "Instructure" components have a non-operational status (13 evaluated, 32 total)
**THRESHOLDS**

* CRITICAL: major_outage
* WARNING: under_maintenance, partial_outage, degraded_performance

**DETAILED INFO**

Specified filter: {Group: "Canvas", Components: ""}

Page: Instructure (https://status.instructure.com)
Time Zone: America/Denver
Last Updated: 2023-07-21T12:16:04-06:00

GROUP NAME COMPONENT NAME STATUS
---------- -------------- ------
Instructure OPERATIONAL
Impact OPERATIONAL

Canvas Canvas LMS OPERATIONAL
Canvas Canvas Catalog OPERATIONAL
Canvas Canvas Commons OPERATIONAL
Canvas Student ePortfolios OPERATIONAL
Canvas Canvas Studio OPERATIONAL
Canvas Canvas Credentials OPERATIONAL
Canvas Canvas Mobile OPERATIONAL
Canvas Student Pathways OPERATIONAL

Mastery Mastery Connect OPERATIONAL
Mastery Item Bank OPERATIONAL
Mastery Online Testing OPERATIONAL

Elevate Elevate K-12 Analytics OPERATIONAL
Elevate Elevate Data Quality OPERATIONAL
Elevate Elevate Data Sync OPERATIONAL
Elevate Elevate Standards Alignment OPERATIONAL
Elevate Elevate Data Hub OPERATIONAL

Support Tools Support: Phones/Chat OPERATIONAL
Support Tools Support: Webform/email OPERATIONAL

AWS Region ca-central-1 OPERATIONAL
AWS Region eu-central-1 OPERATIONAL
AWS Region eu-west-1 OPERATIONAL
AWS Region us-east-1 OPERATIONAL
AWS Region us-west-2 OPERATIONAL
AWS Region ap-southeast-1 OPERATIONAL
AWS Region ap-southeast-2 OPERATIONAL

Summary:

* Filtering applied to components set: true
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): false
* Number of total top-level components: 2
* Number of total component groups: 5
* Number of total subcomponents: 25
* Number of total problem components: 0
* Number of ignored problem components: 0
* Number of remaining problem components: 0

| 'all_component_groups'=5;;;; 'all_components'=32;;;; 'all_components_critical'=0;;;; 'all_components_ok'=27;;;; 'all_components_unknown'=0;;;; 'all_components_warning'=0;;;; 'all_problem_components'=0;;;; 'excluded_problem_components'=0;;;; 'remaining_components_critical'=0;;;; 'remaining_components_ok'=8;;;; 'remaining_components_unknown'=0;;;; 'remaining_components_warning'=0;;;; 'remaining_problem_components'=0;;;; 'time'=414ms;;;;
```

See the [configuration options](#configuration-options) section for all
command-line settings supported by this plugin along with descriptions of
each.

##### Evaluate a specific top-level component

We evaluate a specific top-level component named `Hosted DNS Service` by id
value for a non-OK or non-operational status.

Here we use a cached testdata file when Linode was experiencing an outage of
some services, but not the specific service we opted to evaluate:

```console
$ /usr/lib/nagios/plugins/check_statuspage_components --filename testdata/components/linode-components-problems.json --component mmgkdgcjgnbl
OK: 0 evaluated "Linode" components have a non-operational status (7 evaluated, 68 total)

NOTE: Component count (68) is higher than display limit (50); overriding default display of OK components.
NOTE: Omitting OK/operational components as requested.

GROUP NAME COMPONENT NAME STATUS
---------- -------------- ------
Regions US-East (Newark) PARTIAL OUTAGE
Regions US-Central (Dallas) PARTIAL OUTAGE
Regions US-West (Fremont) PARTIAL OUTAGE
Regions EU-West (London) PARTIAL OUTAGE
Regions EU-Central (Frankfurt) PARTIAL OUTAGE
Regions AP-South (Singapore) PARTIAL OUTAGE
Regions AP-Northeast-2 (Tokyo 2) PARTIAL OUTAGE

Summary:

* Filtering applied to components set: true
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): true
* Number of total top-level components: 4
* Number of total component groups: 6
* Number of total subcomponents: 58
* Number of total problem components: 7
* Number of ignored problem components: 7
* Number of remaining problem components: 0

| 'all_component_groups'=6;;;; 'all_components'=68;;;; 'all_components_critical'=0;;;; 'all_components_ok'=55;;;; 'all_components_unknown'=0;;;; 'all_components_warning'=7;;;; 'all_problem_components'=7;;;; 'excluded_problem_components'=7;;;; 'remaining_components_critical'=0;;;; 'remaining_components_ok'=1;;;; 'remaining_components_unknown'=0;;;; 'remaining_components_warning'=0;;;; 'remaining_problem_components'=0;;;; 'time'=5ms;;;;
```

and for contrast, here we use another cached testdata file when Linode was
not experiencing any outages:

```console
$ /usr/lib/nagios/plugins/check_statuspage_components --filename testdata/components/linode-components.json --component mmgkdgcjgnbl
OK: 0 evaluated "Linode" components have a non-operational status (7 evaluated, 68 total)

NOTE: Component count (68) is higher than display limit (50); overriding default display of OK components.
NOTE: Omitting OK/operational components as requested.

GROUP NAME COMPONENT NAME STATUS
---------- -------------- ------
N/A N/A N/A

Summary:

* Filtering applied to components set: true
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): true
* Number of total top-level components: 4
* Number of total component groups: 6
* Number of total subcomponents: 58
* Number of total problem components: 0
* Number of ignored problem components: 0
* Number of remaining problem components: 0

| 'all_component_groups'=6;;;; 'all_components'=68;;;; 'all_components_critical'=0;;;; 'all_components_ok'=62;;;; 'all_components_unknown'=0;;;; 'all_components_warning'=0;;;; 'all_problem_components'=0;;;; 'excluded_problem_components'=0;;;; 'remaining_components_critical'=0;;;; 'remaining_components_ok'=1;;;; 'remaining_components_unknown'=0;;;; 'remaining_components_warning'=0;;;; 'remaining_problem_components'=0;;;; 'time'=5ms;;;;
```

and here we use live data where Linode was not experiencing any outages:

```console
$ /usr/lib/nagios/plugins/check_statuspage_components --url https://status.linode.com/api/v2/components.json --component mmgkdgcjgnbl
OK: 0 evaluated "Linode" components have a non-operational status (7 evaluated, 88 total)

NOTE: Component count (88) is higher than display limit (50); overriding default display of OK components.
NOTE: Omitting OK/operational components as requested.

GROUP NAME COMPONENT NAME STATUS
---------- -------------- ------
N/A N/A N/A

Summary:

* Filtering applied to components set: true
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): true
* Number of total top-level components: 5
* Number of total component groups: 6
* Number of total subcomponents: 77
* Number of total problem components: 0
* Number of ignored problem components: 0
* Number of remaining problem components: 0

| 'all_component_groups'=6;;;; 'all_components'=88;;;; 'all_components_critical'=0;;;; 'all_components_ok'=82;;;; 'all_components_unknown'=0;;;; 'all_components_warning'=0;;;; 'all_problem_components'=0;;;; 'excluded_problem_components'=0;;;; 'remaining_components_critical'=0;;;; 'remaining_components_ok'=1;;;; 'remaining_components_unknown'=0;;;; 'remaining_components_warning'=0;;;; 'remaining_problem_components'=0;;;; 'time'=500ms;;;;
```

#### Command definition

The command definition file below defines three commands. Each command
explicitly excludes "OK" components in order to keep the output manageable.
Remove the `omit-ok` flag if you wish to use the built-in components output
limit to control the number of components emitted.

See also:

- `--verbose` flag
- `--omit-summary` flag

```shell
# /etc/nagios-plugins/config/statuspage-components.cfg

# Evaluate all components for a specified component group.
define command{
command_name check_statuspage_components_group
command_line $USER1$/check_statuspage_components --url '$ARG1$' --group '$ARG2$' --omit-ok --log-level info
}

# Evaluate one or more components for a (single) specified component group.
#
# NOTE: Multiple components can be specified as a comma separated string using
# a mix of component names and/or ID values.
define command{
command_name check_statuspage_components_group_and_select_subcomponents
command_line $USER1$/check_statuspage_components --url '$ARG1$' --group '$ARG2$' --component '$ARG3$' --omit-ok --log-level info
}

# Evaluate one or more components regardless of component group.
#
# NOTE: Multiple components can be specified as a comma separated string using
# a mix of component names and/or ID values.
define command{
command_name check_statuspage_components_list
command_line $USER1$/check_statuspage_components --url '$ARG1$' --component '$ARG2$' --omit-ok --log-level info
}
```

See the [configuration options](#configuration-options) section for all
command-line settings supported by this plugin along with descriptions of
each.

### `lscs` CLI app

#### CLI invocation

We evaluate a local testdata file to illustrate different supported output
formats.

##### The `table` format (default)

```console
$ /usr/local/bin/lscs --filename testdata/components/instructure-components.json --output-format table

Page: Instructure (https://status.instructure.com)
Time Zone: America/Denver
Last Updated: 2021-12-07T11:07:15-07:00

GROUP NAME GROUP ID COMPONENT NAME COMPONENT ID EVALUATED STATUS
---------- -------- -------------- ------------ --------- ------
Canvas 41wg86q5vc14 Canvas 9dlvqx1drp3d N/A DEGRADED PERFORMANCE
Canvas 41wg86q5vc14 — Catalog jw0fn0dnpcgn N/A OPERATIONAL
Canvas 41wg86q5vc14 — Chat 57p1tjtk1yq0 N/A OPERATIONAL
Canvas 41wg86q5vc14 — Collaboration zxq967k6np07 N/A OPERATIONAL
Canvas 41wg86q5vc14 — Commons z5p8qvl1hj1y N/A OPERATIONAL
Canvas 41wg86q5vc14 — Conferences mtytktcmbk6p N/A OPERATIONAL
Canvas 41wg86q5vc14 — Document previewing ch8dsykb6hln N/A OPERATIONAL
Canvas 41wg86q5vc14 — Imports and exports qt6q9hfpbljc N/A OPERATIONAL
Canvas 41wg86q5vc14 — Media tools knh34j1129ft N/A OPERATIONAL
Canvas 41wg86q5vc14 — Notifications 6pnn3zwfyzxz N/A OPERATIONAL
Canvas 41wg86q5vc14 — Support: Phones/Chat d7cxm3fbff4h N/A OPERATIONAL
Canvas 41wg86q5vc14 — Support: Webform/email zlyh32dxbwjj N/A OPERATIONAL
Canvas 41wg86q5vc14 — ePortfolios tlhdyd68vb55 N/A OPERATIONAL
Canvas 41wg86q5vc14 — Gauge 3q12z77wvfjp N/A OPERATIONAL

Portfolium 9c01dg04bfg5 Website j7jp6sq831c2 N/A DEGRADED PERFORMANCE
Portfolium 9c01dg04bfg5 Web Application 100xy482gkyf N/A DEGRADED PERFORMANCE
Portfolium 9c01dg04bfg5 EDU Platform c8zkn4rlhvw6 N/A DEGRADED PERFORMANCE

MasteryConnect qw5j90r2w7k1 Assessments v6m5nhwgtshj N/A DEGRADED PERFORMANCE
MasteryConnect qw5j90r2w7k1 Benchmarks jt1kl5fj472f N/A DEGRADED PERFORMANCE
MasteryConnect qw5j90r2w7k1 Portal 142661pcf7h1 N/A DEGRADED PERFORMANCE
MasteryConnect qw5j90r2w7k1 Reporting xwqppk51m3mm N/A DEGRADED PERFORMANCE

Summary:

* Filtering applied to components set: false
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): false
* Number of total top-level components: 0
* Number of total component groups: 3
* Number of total subcomponents: 21
* Number of total problem components: 8
* Number of ignored problem components: 0
* Number of remaining problem components: 8
```

##### The `overview` format

```console
$ /usr/local/bin/lscs --filename testdata/components/instructure-components.json --output-format overview

Page: Instructure (https://status.instructure.com)
Time Zone: America/Denver
Last Updated: 2021-12-07T11:07:15-07:00

Canvas [DEGRADED PERFORMANCE]
Canvas [DEGRADED PERFORMANCE]
— Catalog
— Chat
— Collaboration
— Commons
— Conferences
— Document previewing
— Imports and exports
— Media tools
— Notifications
— Support: Phones/Chat
— Support: Webform/email
— ePortfolios
— Gauge

Portfolium [DEGRADED PERFORMANCE]
Website [DEGRADED PERFORMANCE]
Web Application [DEGRADED PERFORMANCE]
EDU Platform [DEGRADED PERFORMANCE]

MasteryConnect [DEGRADED PERFORMANCE]
Assessments [DEGRADED PERFORMANCE]
Benchmarks [DEGRADED PERFORMANCE]
Portal [DEGRADED PERFORMANCE]
Reporting [DEGRADED PERFORMANCE]

Summary:

* Filtering applied to components set: false
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): false
* Number of total top-level components: 0
* Number of total component groups: 3
* Number of total subcomponents: 21
* Number of total problem components: 8
* Number of ignored problem components: 0
* Number of remaining problem components: 8
```

##### The `verbose` format

```console
$ /usr/local/bin/lscs --filename testdata/components/instructure-components.json --output-format verbose

Page: Instructure (https://status.instructure.com)
Time Zone: America/Denver
Last Updated: 2021-12-07T11:07:15-07:00

Component Groups (3):

* 001): Canvas [ID: 41wg86q5vc14, GroupID: N/A, Status: DEGRADED PERFORMANCE]
* 002): Portfolium [ID: 9c01dg04bfg5, GroupID: N/A, Status: DEGRADED PERFORMANCE]
* 003): MasteryConnect [ID: qw5j90r2w7k1, GroupID: N/A, Status: DEGRADED PERFORMANCE]

Subcomponents (21):

* 001): Website [ID: j7jp6sq831c2, GroupID: 9c01dg04bfg5, Status: DEGRADED PERFORMANCE]
* 002): Canvas [ID: 9dlvqx1drp3d, GroupID: 41wg86q5vc14, Status: DEGRADED PERFORMANCE]
* 003): Assessments [ID: v6m5nhwgtshj, GroupID: qw5j90r2w7k1, Status: DEGRADED PERFORMANCE]
* 004): Benchmarks [ID: jt1kl5fj472f, GroupID: qw5j90r2w7k1, Status: DEGRADED PERFORMANCE]
* 005): Web Application [ID: 100xy482gkyf, GroupID: 9c01dg04bfg5, Status: DEGRADED PERFORMANCE]
* 006): — Catalog [ID: jw0fn0dnpcgn, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 007): — Chat [ID: 57p1tjtk1yq0, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 008): EDU Platform [ID: c8zkn4rlhvw6, GroupID: 9c01dg04bfg5, Status: DEGRADED PERFORMANCE]
* 009): Portal [ID: 142661pcf7h1, GroupID: qw5j90r2w7k1, Status: DEGRADED PERFORMANCE]
* 010): — Collaboration [ID: zxq967k6np07, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 011): Reporting [ID: xwqppk51m3mm, GroupID: qw5j90r2w7k1, Status: DEGRADED PERFORMANCE]
* 012): — Commons [ID: z5p8qvl1hj1y, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 013): — Conferences [ID: mtytktcmbk6p, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 014): — Document previewing [ID: ch8dsykb6hln, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 015): — Imports and exports [ID: qt6q9hfpbljc, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 016): — Media tools [ID: knh34j1129ft, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 017): — Notifications [ID: 6pnn3zwfyzxz, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 018): — Support: Phones/Chat [ID: d7cxm3fbff4h, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 019): — Support: Webform/email [ID: zlyh32dxbwjj, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 020): — ePortfolios [ID: tlhdyd68vb55, GroupID: 41wg86q5vc14, Status: OPERATIONAL]
* 021): — Gauge [ID: 3q12z77wvfjp, GroupID: 41wg86q5vc14, Status: OPERATIONAL]

Components (8) in a non-OK state:

* 001): Website [ID: j7jp6sq831c2, GroupID: 9c01dg04bfg5, Status: DEGRADED PERFORMANCE]
* 002): Canvas [ID: 9dlvqx1drp3d, GroupID: 41wg86q5vc14, Status: DEGRADED PERFORMANCE]
* 003): Assessments [ID: v6m5nhwgtshj, GroupID: qw5j90r2w7k1, Status: DEGRADED PERFORMANCE]
* 004): Benchmarks [ID: jt1kl5fj472f, GroupID: qw5j90r2w7k1, Status: DEGRADED PERFORMANCE]
* 005): Web Application [ID: 100xy482gkyf, GroupID: 9c01dg04bfg5, Status: DEGRADED PERFORMANCE]
* 006): EDU Platform [ID: c8zkn4rlhvw6, GroupID: 9c01dg04bfg5, Status: DEGRADED PERFORMANCE]
* 007): Portal [ID: 142661pcf7h1, GroupID: qw5j90r2w7k1, Status: DEGRADED PERFORMANCE]
* 008): Reporting [ID: xwqppk51m3mm, GroupID: qw5j90r2w7k1, Status: DEGRADED PERFORMANCE]

Summary:

* Filtering applied to components set: false
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): false
* Number of total top-level components: 0
* Number of total component groups: 3
* Number of total subcomponents: 21
* Number of total problem components: 8
* Number of ignored problem components: 0
* Number of remaining problem components: 8
```

##### The `list` format

This mostly came in handy when I was crafting test cases, but left it as an
option in case others also might also find it useful.

```console
$ /usr/local/bin/lscs --filename testdata/components/instructure-components.json --output-format list

Page: Instructure (https://status.instructure.com)
Time Zone: America/Denver
Last Updated: 2021-12-07T11:07:15-07:00

"j7jp6sq831c2", "41wg86q5vc14", "9dlvqx1drp3d", "v6m5nhwgtshj",
"9c01dg04bfg5", "jt1kl5fj472f", "100xy482gkyf", "jw0fn0dnpcgn",
"57p1tjtk1yq0", "qw5j90r2w7k1", "c8zkn4rlhvw6", "142661pcf7h1",
"zxq967k6np07", "xwqppk51m3mm", "z5p8qvl1hj1y", "mtytktcmbk6p",
"ch8dsykb6hln", "qt6q9hfpbljc", "knh34j1129ft", "6pnn3zwfyzxz",
"d7cxm3fbff4h", "zlyh32dxbwjj", "tlhdyd68vb55", "3q12z77wvfjp",

Summary:

* Filtering applied to components set: false
* Evaluating all components in the set: false
* Omitting OK/operational components (if requested): true
* Number of total top-level components: 0
* Number of total component groups: 3
* Number of total subcomponents: 21
* Number of total problem components: 8
* Number of ignored problem components: 0
* Number of remaining problem components: 8
```

See the [configuration options](#configuration-options) section for all
command-line settings supported by this plugin along with descriptions of
each.

##### Other supported formats

The `debug` and `json` formats are also supported output formats, but are
*very* detailed. Give them a try if the other formats do not meet your needs.
Feedback is welcome.

## License

From the [LICENSE](LICENSE) file:

```license
MIT License

Copyright (c) 2021 Adam Chalkley

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

## References

- Related projects
-
-
-
-
-
-
-
-

- Statuspage
- [What is a component?](https://support.atlassian.com/statuspage/docs/what-is-a-component/)
- [Show service status with components](https://support.atlassian.com/statuspage/docs/show-service-status-with-components/)
- [Statuspage API documentation](https://developer.statuspage.io/)

- Logging
-

- Nagios
-
-
-
-

[repo-url]: "This project's GitHub repo"

[go-docs-download]: "Download Go"

[go-docs-install]: "Install Go"

[go-supported-releases]: "Go Release Policy"