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
| var PatchDatadogIncident = Class.create(); | |
| PatchDatadogIncident.prototype = { | |
| initialize: function () { | |
| this.isIncidentCreationEnabled = gs.getProperty("x_datad_datadog.syncIncidents") === "true"; | |
| this.apiKey = gs.getProperty("x_datad_datadog.apiKey"); | |
| this.applicationKey = gs.getProperty("x_datad_datadog.applicationKey"); | |
| this.datacenter = gs.getProperty("x_datad_datadog.datacenter"); | |
| }, | |
| execute: function (current) { |
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
| ## Send events | |
| ## Send batch events | |
| ## Consume events | |