Skip to content

Instantly share code, notes, and snippets.

View shairyar's full-sized avatar

shairyar shairyar

View GitHub Profile
@shairyar
shairyar / query.gql
Last active April 3, 2025 09:51
GraphQL Query to close an incident
mutation updateIncidentMutation($appId: String!, $number: Int!, $state: IncidentStateEnum, $description: String, $notificationFrequency: IncidentNotificationFrequencyEnum, $severity: IncidentSeverityEnum, $assigneeIds: [String!], $notificationThreshold: Int) {
updateIncident(
appId: $appId
number: $number
state: $state
description: $description
notificationFrequency: $notificationFrequency
notificationThreshold: $notificationThreshold
severity: $severity
assigneeIds: $assigneeIds
@shairyar
shairyar / app.rb
Created March 17, 2025 12:31
Using Ruby script to start AppSignal
# Requirements:
# bundle install
# bundle exec ruby app.rb
# app.rb
require "appsignal"
# Configure appsignal if needed
Appsignal.configure do |config|
# config.<option> = value
```
query uptimeMonitorNotifierQuery($appId: String!) {
app(id: $appId) {
id
notifiers {
id
name
}
}
}
query OrganizationQuery($slug: String!) {
organization(slug: $slug) {
id
name
slug
apps {
id
name
environment
viewerPinned
@shairyar
shairyar / actionsThroughput.gql
Created May 16, 2024 07:07
List of actions with throughput
query PaginatedMetricsListQuery($appId: String!, $timeframe: TimeframeEnum, $query: [MetricAggregation!]!, $limit: Int, $offset: Int) {
app(id: $appId) {
id
metrics {
list(
query: $query
timeframe: $timeframe
limit: $limit
offset: $offset
) {
@shairyar
shairyar / importDashboardMutation.gql
Created February 19, 2024 12:45
GraphQL query to important dashboard
```gql
mutation importDashboardMutation($appId: String!, $json: String!) {
importDashboard(appId: $appId, json: $json) {
...Dashboard
__typename
}
}
fragment Dashboard on Dashboard {
id
@shairyar
shairyar / createAppMutation.gql
Created February 12, 2024 13:00
Create an application in AppSignal using GraphQL API
mutation createAppMutation($organizationSlug: String!, $name: String!, $environment: String!) {
createApp(
organizationSlug: $organizationSlug
name: $name
environment: $environment
) {
...FrontendApp
}
}
@shairyar
shairyar / MetricKeysQuery.gql
Last active February 7, 2024 10:24
Fetch custom metric from AppSignal
query MetricKeysQuery {
app(id: "YOUR-APP-ID") {
metrics {
keys(name: "custom_exports.send") {
name
tags {
key
value
}
mutation updateIncidentMutation($appId: String!, $number: Int!, $state: IncidentStateEnum, $description: String, $notificationFrequency: IncidentNotificationFrequencyEnum, $severity: IncidentSeverityEnum, $assigneeIds: [String!], $notificationThreshold: Int) {
updateIncident(
appId: $appId
number: $number
state: $state
description: $description
notificationFrequency: $notificationFrequency
notificationThreshold: $notificationThreshold
severity: $severity
assigneeIds: $assigneeIds
@shairyar
shairyar / appsignal.yml
Created December 1, 2023 05:55
AppSignal configuration file
default: &defaults
push_api_key: "PUSH-API-KEY"
request_headers:
- HTTP_ACCEPT
- HTTP_ACCEPT_CHARSET
- HTTP_ACCEPT_ENCODING
- HTTP_ACCEPT_LANGUAGE
- HTTP_CACHE_CONTROL
- HTTP_CONNECTION