-
Notifications
You must be signed in to change notification settings - Fork 148
indexer-service: Add /subgraphs/health/:deployment route #348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,89 @@ | ||
| import fetch from 'cross-fetch' | ||
| import { Router } from 'express' | ||
|
|
||
| export interface DeploymentHealthServerOptions { | ||
| graphNodeStatusEndpoint: string | ||
| } | ||
|
|
||
| export const createDeploymentHealthServer = ({ | ||
| graphNodeStatusEndpoint, | ||
| }: DeploymentHealthServerOptions): Router => { | ||
| const router = Router() | ||
|
|
||
| // This route returns an HTTP 200 response if the deployment in question | ||
| // has not failed and is caught up with the chain head; otherwise an | ||
| // HTTP 500 is returned | ||
| router.get('/:deployment', async (req, res) => { | ||
| // Query indexing status for this particular deployment | ||
| const response = await fetch(graphNodeStatusEndpoint, { | ||
| method: 'POST', | ||
| headers: { | ||
| 'content-type': 'application/json', | ||
| }, | ||
| body: JSON.stringify({ | ||
| query: `query indexingStatus($subgraphs: [String!]!) { | ||
| { | ||
| indexingStatuses(subgraphs: $subgraphs) { | ||
| health | ||
| chains { | ||
| network | ||
| ... on EthereumIndexingStatus { | ||
| latestBlock { number hash } | ||
| chainHeadBlock { number hash } | ||
| } | ||
| } | ||
| } | ||
| }`, | ||
| variables: { | ||
| subgraphs: [req.params.deployment], | ||
| }, | ||
| }), | ||
| }) | ||
|
|
||
| // We couldn't get a good HTTP response from Graph Node | ||
| if (!response.ok) { | ||
| return res.status(500).send('Unknown error') | ||
| } | ||
|
|
||
| // Assert that we got JSON back | ||
| let data | ||
| try { | ||
| data = await response.json() | ||
| } catch (err) { | ||
| return res.status(500).send('Malformatted indexing status') | ||
| } | ||
|
|
||
| // Assert that we got a valid indexing status back | ||
| if ( | ||
| !data.data || | ||
| data.errors || | ||
| !data.data.indexingStatuses || | ||
| !Array.isArray(data.data.indexingStatuses) || | ||
| data.data.indexingStatuses.length < 1 | ||
| ) { | ||
| return res.status(500).send('Invalid indexing status') | ||
| } | ||
|
|
||
| // We can safely access this, thanks to the previous check | ||
| const status = data.data.indexingStatuses[0] | ||
|
|
||
| if (status.health === 'failed') { | ||
| return res.status(500).send('Subgraph deployment has failed') | ||
| } | ||
|
|
||
| const latestBlock = status.chains[0]?.latestBlock | ||
| const headBlock = status.chains[0]?.chainHeadBlock | ||
|
|
||
| // Check whether the subgraph is caught up with the chain head | ||
| if ( | ||
| latestBlock?.number === headBlock?.number && | ||
| latestBlock?.hash === headBlock?.hash | ||
| ) { | ||
| return res.status(200).send('Subgraph deployment is up to date') | ||
| } else { | ||
| return res.status(500).send('Subgraph deployment is lagging behind') | ||
| } | ||
| }) | ||
|
|
||
| return router | ||
| } | ||
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be
headBlock.number - latestBlock?.number < 5or something because it doesn't execute instantly