This plugin displays Splunk On-Call (formerly VictorOps) information associated with an entity.
It also provides the ability to trigger new incidents to specific users and/or specific teams from within Backstage.
This plugin requires that entities feature either a splunk.com/on-call-team or a splunk.com/on-call-routing-key annotation. See below for further details.
This plugin provides:
- A list of incidents
- A way to trigger a new incident to specific users and/or teams
- A way to acknowledge/resolve an incident
- Information details about the persons on-call
Install the plugin:
# From your Backstage root directory
yarn --cwd packages/app add @backstage-community/plugin-splunk-on-callAdd it to your EntityPage:
// packages/app/src/components/catalog/EntityPage.tsx
import {
isSplunkOnCallAvailable,
EntitySplunkOnCallCard,
} from '@backstage-community/plugin-splunk-on-call';
// ...
const overviewContent = (
<Grid container spacing={3} alignItems="stretch">
<EntitySwitch>
<EntitySwitch.Case if={isSplunkOnCallAvailable}>
<Grid item md={6}>
<EntitySplunkOnCallCard />
</Grid>
</EntitySwitch.Case>
</EntitySwitch>If you are using the new frontend system, import the plugin from
@backstage-community/plugin-splunk-on-call/alpha and add the
splunkOnCallPage and entitySplunkOnCallCard extensions to your app.
To suppress the rendering of the actionable create-acknowledge-resolve incident buttons and UI controls, the EntitySplunkOnCallCard can also be instantiated in readOnly mode:
<EntitySplunkOnCallCard readOnly />In order to be able to perform certain actions (create-acknowledge-resolve an action), you need to provide a REST Endpoint.
To enable the REST Endpoint integration you can go on https://portal.victorops.com/ inside Integrations > 3rd Party Integrations > REST – Generic.
You can now copy the URL to notify: <SPLUNK_ON_CALL_REST_ENDPOINT>/$routing_key
In app-config.yaml:
splunkOnCall:
eventsRestEndpoint: <SPLUNK_ON_CALL_REST_ENDPOINT>You can also point eventsRestEndpoint at the Backstage proxy by using a relative path. This keeps the REST endpoint off the frontend and allows the proxy to enforce auth policies:
splunkOnCall:
eventsRestEndpoint: /splunk-on-call-eventsproxy:
'/splunk-on-call-events':
target: https://alert.victorops.com/integrations/generic/20131114/alert
allowedMethods: ['POST']In order to make the API calls, you need to provide a new proxy config which will redirect to the Splunk On-Call API endpoint and add authentication information in the headers:
# app-config.yaml
proxy:
# ...
'/splunk-on-call':
target: https://api.victorops.com/api-public
headers:
X-VO-Api-Id: ${SPLUNK_ON_CALL_API_ID}
X-VO-Api-Key: ${SPLUNK_ON_CALL_API_KEY}In addition, to make certain API calls (trigger-resolve-acknowledge an incident) you need to add the PATCH method to the backend cors methods list: [GET, POST, PUT, DELETE, PATCH].
NOTE: The Splunk On-Call frontend uses Backstage's authenticated fetch, so you can keep the /splunk-on-call proxy endpoint protected by your backend auth policy. If you only want read-only access, you can also restrict the proxy to GET using the following configuration:
proxy:
'/splunk-on-call':
target: https://api.victorops.com/api-public
headers:
X-VO-Api-Id: ${SPLUNK_ON_CALL_API_ID}
X-VO-Api-Key: ${SPLUNK_ON_CALL_API_KEY}
# prohibit the `/splunk-on-call` proxy endpoint from servicing non-GET requests
allowedMethods: ['GET']The information displayed for each entity is based on either an associated team name or an associated routing key.
To use this plugin for an entity, the entity must be labeled with either a splunk.com/on-call-team or a splunk.com/on-call-routing-key annotation.
For example, by specifying a splunk.com/on-call-team, the plugin displays Splunk On-Call data associated with the specified team:
annotations:
splunk.com/on-call-team: <SPLUNK_ON_CALL_TEAM_NAME>Alternatively, by specifying a splunk.com/on-call-routing-key, the plugin displays Splunk On-Call data associated with each of the teams associated with the specified routing key:
annotations:
splunk.com/on-call-routing-key: <SPLUNK_ON_CALL_ROUTING_KEY>To be able to use the REST Endpoint seen above, you must have created a routing key with the same name as the provided team.
You can create a new routing key on https://portal.victorops.com/ by going to Settings > Routing Keys.
You can read Create & Manage Alert Routing Keys for further information.
In order for the client to make requests to the Splunk On-Call API it needs an API ID and an API Key.
Then start the backend passing the values as an environment variable:
$ SPLUNK_ON_CALL_API_KEY='' SPLUNK_ON_CALL_API_ID='' yarn startThis will proxy the request by adding X-VO-Api-Id and X-VO-Api-Key headers with the provided values.
You can also add the values in your helm template:
# backend-secret.yaml
stringData:
# ...
SPLUNK_ON_CALL_API_ID: { { .Values.auth.splunkOnCallApiId } }
SPLUNK_ON_CALL_API_KEY: { { .Values.auth.splunkOnCallApiKey } }To enable it you need to provide them in the chart's values:
# values.yaml
auth:
# ...
splunkOnCallApiId: h
splunkOnCallApiKey: h