Created
April 13, 2023 08:37
-
-
Save shairyar/71d1153f9b28ea33db98926052eb21a0 to your computer and use it in GitHub Desktop.
Export AppSignal dashboard metrics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query CustomMetricsDashboardsDefinitionQuery($appId: String!) { | |
app(id: $appId) { | |
id | |
dashboards { | |
...Dashboard | |
__typename | |
} | |
__typename | |
} | |
} | |
fragment Dashboard on Dashboard { | |
id | |
title | |
description | |
visuals { | |
...Visual | |
__typename | |
} | |
__typename | |
} | |
fragment Visual on Visual { | |
... on VisualTimeseries { | |
__typename | |
id | |
title | |
description | |
lineLabel | |
display | |
format | |
formatInput | |
drawNullAsZero | |
metrics { | |
name | |
fields { | |
field | |
__typename | |
} | |
tags { | |
key | |
value | |
__typename | |
} | |
__typename | |
} | |
} | |
__typename | |
} |
Author
shairyar
commented
Apr 13, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment