airbyte-faros-destination 0.4.76 → 0.4.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/converters/servicenow/incidents.js +6 -2
- package/lib/converters/servicenow/incidents.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/resources/source-specific-configs/agileaccelerator.json +28 -0
- package/resources/source-specific-configs/azurepipeline.json +22 -0
- package/resources/source-specific-configs/backlog.json +19 -0
- package/resources/source-specific-configs/bamboohr.json +31 -0
- package/resources/source-specific-configs/bitbucket.json +23 -0
- package/resources/source-specific-configs/clickup.json +30 -0
- package/resources/source-specific-configs/datadog.json +37 -0
- package/resources/source-specific-configs/docker.json +35 -0
- package/resources/source-specific-configs/firehydrant.json +29 -0
- package/resources/source-specific-configs/jenkins.json +19 -0
- package/resources/source-specific-configs/jira.json +40 -0
- package/resources/source-specific-configs/notion.json +282 -0
- package/resources/source-specific-configs/opsgenie.json +29 -0
- package/resources/source-specific-configs/pagerduty.json +37 -0
- package/resources/source-specific-configs/phabricator.json +19 -0
- package/resources/source-specific-configs/servicenow.json +67 -0
- package/resources/source-specific-configs/spec.json +71 -0
- package/resources/source-specific-configs/squadcast.json +23 -0
- package/resources/source-specific-configs/statuspage.json +23 -0
- package/resources/source-specific-configs/victorops.json +32 -0
- package/resources/spec.json +1 -1
- package/resources/source-specific-configs.json +0 -829
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "PagerDuty",
|
|
3
|
+
"description": "Configuration options that apply to records generated by the PagerDuty Source.",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"oneOf": [
|
|
6
|
+
{
|
|
7
|
+
"type": "object",
|
|
8
|
+
"title": "Configuration",
|
|
9
|
+
"properties": {
|
|
10
|
+
"application_mapping": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"title": "Application Mapping",
|
|
13
|
+
"description": "JSON map of PagerDuty service(s) name, to compute platform specific app name and platform name. Used to reference compute_Application object, from an ims_Incident object.",
|
|
14
|
+
"multiline": true,
|
|
15
|
+
"default": "{}",
|
|
16
|
+
"examples": [
|
|
17
|
+
"{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"default_severity": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"title": "Default Severity",
|
|
23
|
+
"description": "A default severity category if not present",
|
|
24
|
+
"pattern": "^(Sev[1-5])?(Custom)?$",
|
|
25
|
+
"examples": [
|
|
26
|
+
"Sev1",
|
|
27
|
+
"Sev2",
|
|
28
|
+
"Sev3",
|
|
29
|
+
"Sev4",
|
|
30
|
+
"Sev5",
|
|
31
|
+
"Custom"
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Phabricator",
|
|
3
|
+
"description": "Configuration options that apply to records generated by the Phabricator Source.",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"oneOf": [
|
|
6
|
+
{
|
|
7
|
+
"type": "object",
|
|
8
|
+
"title": "Configuration",
|
|
9
|
+
"properties": {
|
|
10
|
+
"max_description_length": {
|
|
11
|
+
"type": "integer",
|
|
12
|
+
"title": "Max Description Length",
|
|
13
|
+
"description": "Value to cut description to specific length",
|
|
14
|
+
"default": 1000
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "ServiceNow",
|
|
3
|
+
"description": "Configuration options that apply to records generated by the ServiceNow Source.",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"oneOf": [
|
|
6
|
+
{
|
|
7
|
+
"type": "object",
|
|
8
|
+
"title": "Configuration",
|
|
9
|
+
"properties": {
|
|
10
|
+
"application_mapping": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"title": "Application Mapping",
|
|
13
|
+
"description": "JSON map of ServiceNow service(s) name, to compute platform specific app name and platform name. Used to reference compute_Application object, from an ims_Incident object.",
|
|
14
|
+
"multiline": true,
|
|
15
|
+
"default": "{}",
|
|
16
|
+
"examples": [
|
|
17
|
+
"{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"application_field": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"title": "Application Field",
|
|
23
|
+
"description": "Field name in a ServiceNow incident, to compute a Faros Application name. The value of this field will be used to look up the app/platform in the specified application mapping",
|
|
24
|
+
"default": "business_service",
|
|
25
|
+
"pattern": "^(business_service|cmdb_ci)$",
|
|
26
|
+
"examples": [
|
|
27
|
+
"business_service",
|
|
28
|
+
"cmdb_ci"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"default_severity": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"title": "Default Severity",
|
|
34
|
+
"description": "A default severity category if not present",
|
|
35
|
+
"pattern": "^(Sev[1-5])?(Custom)?$",
|
|
36
|
+
"examples": [
|
|
37
|
+
"Sev1",
|
|
38
|
+
"Sev2",
|
|
39
|
+
"Sev3",
|
|
40
|
+
"Sev4",
|
|
41
|
+
"Sev5",
|
|
42
|
+
"Custom"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"default_priority": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"title": "Default Priority",
|
|
48
|
+
"description": "A default priority category if not present",
|
|
49
|
+
"pattern": "^(Critical|High|Medium|Low|Custom)$",
|
|
50
|
+
"examples": [
|
|
51
|
+
"Critical",
|
|
52
|
+
"High",
|
|
53
|
+
"Medium",
|
|
54
|
+
"Low",
|
|
55
|
+
"Custom"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"store_current_incidents_associations": {
|
|
59
|
+
"type": "boolean",
|
|
60
|
+
"title": "Only store current incidents associations",
|
|
61
|
+
"description": "Only store current incidents associations in the graph.",
|
|
62
|
+
"default": false
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"order": 9,
|
|
3
|
+
"type": "object",
|
|
4
|
+
"title": "Source-specific configs",
|
|
5
|
+
"description": "Configuration options that apply to specific sources.",
|
|
6
|
+
"oneOf": [
|
|
7
|
+
{
|
|
8
|
+
"type": "object",
|
|
9
|
+
"title": "Configurations",
|
|
10
|
+
"properties": {
|
|
11
|
+
"agileaccelerator": {
|
|
12
|
+
"$ref": "agileaccelerator.json"
|
|
13
|
+
},
|
|
14
|
+
"azurepipeline": {
|
|
15
|
+
"$ref": "azurepipeline.json"
|
|
16
|
+
},
|
|
17
|
+
"backlog": {
|
|
18
|
+
"$ref": "backlog.json"
|
|
19
|
+
},
|
|
20
|
+
"bamboohr": {
|
|
21
|
+
"$ref": "bamboohr.json"
|
|
22
|
+
},
|
|
23
|
+
"bitbucket": {
|
|
24
|
+
"$ref": "bitbucket.json"
|
|
25
|
+
},
|
|
26
|
+
"clickup": {
|
|
27
|
+
"$ref": "clickup.json"
|
|
28
|
+
},
|
|
29
|
+
"datadog": {
|
|
30
|
+
"$ref": "datadog.json"
|
|
31
|
+
},
|
|
32
|
+
"docker": {
|
|
33
|
+
"$ref": "docker.json"
|
|
34
|
+
},
|
|
35
|
+
"firehydrant": {
|
|
36
|
+
"$ref": "firehydrant.json"
|
|
37
|
+
},
|
|
38
|
+
"jenkins": {
|
|
39
|
+
"$ref": "jenkins.json"
|
|
40
|
+
},
|
|
41
|
+
"jira": {
|
|
42
|
+
"$ref": "jira.json"
|
|
43
|
+
},
|
|
44
|
+
"notion": {
|
|
45
|
+
"$ref": "notion.json"
|
|
46
|
+
},
|
|
47
|
+
"opsgenie": {
|
|
48
|
+
"$ref": "opsgenie.json"
|
|
49
|
+
},
|
|
50
|
+
"pagerduty": {
|
|
51
|
+
"$ref": "pagerduty.json"
|
|
52
|
+
},
|
|
53
|
+
"phabricator": {
|
|
54
|
+
"$ref": "phabricator.json"
|
|
55
|
+
},
|
|
56
|
+
"servicenow": {
|
|
57
|
+
"$ref": "servicenow.json"
|
|
58
|
+
},
|
|
59
|
+
"squadcast": {
|
|
60
|
+
"$ref": "squadcast.json"
|
|
61
|
+
},
|
|
62
|
+
"statuspage": {
|
|
63
|
+
"$ref": "statuspage.json"
|
|
64
|
+
},
|
|
65
|
+
"victorops": {
|
|
66
|
+
"$ref": "victorops.json"
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
]
|
|
71
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "SquadCast",
|
|
3
|
+
"description": "Configuration options that apply to records generated by the SquadCast Source.",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"oneOf": [
|
|
6
|
+
{
|
|
7
|
+
"type": "object",
|
|
8
|
+
"title": "Configuration",
|
|
9
|
+
"properties": {
|
|
10
|
+
"application_mapping": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"title": "Application Mapping",
|
|
13
|
+
"description": "JSON map of SquadCast service(s) name, to compute platform specific app name and platform name. Used to reference compute_Application object, from an ims_Incident object.",
|
|
14
|
+
"multiline": true,
|
|
15
|
+
"default": "{}",
|
|
16
|
+
"examples": [
|
|
17
|
+
"{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Statuspage",
|
|
3
|
+
"description": "Configuration options that apply to records generated by the Statuspage Source.",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"oneOf": [
|
|
6
|
+
{
|
|
7
|
+
"type": "object",
|
|
8
|
+
"title": "Configuration",
|
|
9
|
+
"properties": {
|
|
10
|
+
"application_mapping": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"title": "Application Mapping",
|
|
13
|
+
"description": "JSON map of Statuspage service(s) name, to compute platform specific app name and platform name. Used to reference compute_Application object, from an ims_Incident object.",
|
|
14
|
+
"multiline": true,
|
|
15
|
+
"default": "{}",
|
|
16
|
+
"examples": [
|
|
17
|
+
"{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "VictorOps",
|
|
3
|
+
"description": "Configuration options that apply to records generated by the VictorOps Source.",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"oneOf": [
|
|
6
|
+
{
|
|
7
|
+
"type": "object",
|
|
8
|
+
"title": "Configuration",
|
|
9
|
+
"properties": {
|
|
10
|
+
"application_mapping": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"title": "Application Mapping",
|
|
13
|
+
"description": "JSON map of VictorOps service(s) name, to compute a Faros Application and Platform name. Used to reference compute_Application object, from an ims_Incident object. If specified, and such service exists, the feed will write a compute_Application object.",
|
|
14
|
+
"multiline": true,
|
|
15
|
+
"default": "{}",
|
|
16
|
+
"examples": [
|
|
17
|
+
"{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"application_field": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"title": "Application Field",
|
|
23
|
+
"description": "Field name in a VictorOps incident, to compute a Faros Application name. The value of this field will be used to look up the app/platform in the specified application mapping",
|
|
24
|
+
"default": "service",
|
|
25
|
+
"examples": [
|
|
26
|
+
"routing_key"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|