Go-based tooling to interact with status page APIs hosted by Atlassian Statuspage; NOT affiliated with or endorsed by Atlassian.
check_statuspage_components
lscs
check_statuspage_components
Nagios plugin
lscs
CLI app
See our GitHub repo 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.
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 . |
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).
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.
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 thread (if applicable) or open a new one with any feedback that you may have. Thanks in advance!
check_statuspage_components
PluginEmitted 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 |
all_components
metric (*
)
*_components_STATE
metrics (where STATE
is critical
, ok
,
unknown
, warning
)
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 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.
Plugin for monitoring an Atlassian Statuspage powered site
components
(aka, "services") specified by one or many
top-level components, component groups (all subcomponents) or component
group and subcomponentsCLI app to list components
from an Atlassian Statuspage powered site
overview
table
verbose
debug
list
(mostly used to assist with crafting test cases)json
User-specified input sources
Optional, leveled logging using rs/zerolog
package
stderr
)disabled
, panic
, fatal
, error
, warn
, info
(the
default), debug
or trace
.Optional, user-specified timeout value for plugin execution
Optional, user-specified read limit
Optional override to allow unknown JSON fields in input source
Optional support for omitting components
in an OK
state (aka,
operational
status)
components
with a "problem" statusOptional support for omitting summary in results output
See the 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.
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.
go.mod
file for preferred versionMakefile
does)make
Makefile
$HOME/.profile
cd /tmp
git clone https://github.com/atc0005/check-statuspage
cd check-statuspage
sudo apt-get install make gcc
sudo yum install make gcc
go build
command in
Windows (see below for use of the -mod=vendor
flag)32127524
link in the
References section for potential options for
installing make
on Windowsgcc
and related packages on Windowsvendor
folder
go build -mod=vendor ./cmd/check_statuspage_components/
go build -mod=vendor ./cmd/lscs/
make
is installed)
make all
make windows
make linux
/tmp
subdirectory path
(based on the clone instructions in this section) below and deploy where
needed.
Makefile
/tmp/check-statuspage/release_assets/check_statuspage_components/
/tmp/check-statuspage/release_assets/lscs/
go build
/tmp/check-statuspage/
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
).
xz -d check_statuspage_components-linux-amd64.xz
NOTE:
DEB and RPM packages are provided as an alternative to manually deploying binaries.
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 https://golang.org/doc/install/source for a list of supported architectures and operating systems.
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 |
-h
or --help
flag to display current usage information.required
must be set via CLI flag.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 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., https://www.githubstatus.com/api/v2/components.json).. | |
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 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., https://www.githubstatus.com/api/v2/components.json).. | |
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 . |
Not currently supported. This feature may be added later if there is sufficient interest.
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 pluginWe 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:
$ /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:
$ /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:
$ /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 section for all command-line settings supported by this plugin along with descriptions of each.
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:
$ /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:
$ /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:
$ /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;;;;
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# /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 section for all command-line settings supported by this plugin along with descriptions of each.
lscs
CLI appWe evaluate a local testdata file to illustrate different supported output formats.
table
format (default)$ /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
overview
format$ /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
verbose
format$ /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
list
formatThis 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.
$ /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 section for all command-line settings supported by this plugin along with descriptions of each.
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.
From the LICENSE file:
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.
Related projects
Statuspage
Logging
Nagios