You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The the monitor will periodically hit mydomain.com/api/v1/is_service_okay and then check the return value. It extract the result using payload["status"] as specified by the extractor (there might be more suitable json extracting syntax out there, just an example" and then match the result with the pattern you specified, if it is okay then show green, if not then show red.
Do you think this is possible? If so I could contribute, where do I start?
The text was updated successfully, but these errors were encountered:
yes, you can implement this Service, if you want to. Just create the service in the app/services folder. You can take a look at Tfs2015.js for a simple implementation how a service looks like.
I think, that only a extractor setting is not enough. You need some kind of a field mapping, too. But you will see this, while implementing the service.
The generic build format for the build monitor looks is the following:
Hi, this might be a bit naive but is it possible to allow the monitor to query against any generic REST service and then just display the response?
For example a config can look at this:
The the monitor will periodically hit
mydomain.com/api/v1/is_service_okay
and then check the return value. It extract the result usingpayload["status"]
as specified by the extractor (there might be more suitable json extracting syntax out there, just an example" and then match the result with the pattern you specified, if it is okay then show green, if not then show red.Do you think this is possible? If so I could contribute, where do I start?
The text was updated successfully, but these errors were encountered: