Skip to content
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

Add flow specification with traderx examples #1

Closed
wants to merge 9 commits into from
5 changes: 5 additions & 0 deletions .github/workflows/cve-scanning-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
- '**/pom.xml'
- '.github/workflows/maven-cve-ignore-list.xml'
- '.github/workflows/cve-scanning-maven.yml'
pull_request:
paths:
- '**/pom.xml'
- '.github/workflows/maven-cve-ignore-list.xml'
- '.github/workflows/cve-scanning-maven.yml'

jobs:
depchecktest:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/cve-scanning-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ on:
- '**/package-lock.json'
- '.github/workflows/node-cve-ignore-list.xml'
- '.github/workflows/cve-scanning-node.yml'
pull_request:
paths:
- '**/package.json'
- '**/package-lock.json'
- '.github/workflows/node-cve-ignore-list.xml'
- '.github/workflows/cve-scanning-node.yml'

jobs:
node-modules-scan:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spectral-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ jobs:
with:
node-version: v20
- run: npm install @stoplight/spectral-cli
- run: npx spectral lint --ruleset spectral/instantiation/validation-rules.yaml 'calm/samples/**/*(*.json|*.yaml)'
- run: npx spectral lint --ruleset spectral/instantiation/validation-rules.yaml 'calm/samples/api-gateway-instantiation(*.json|*.yaml)'

82 changes: 82 additions & 0 deletions calm/draft/2024-10/meta/flow.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://calm.finos.org/draft/2024-10/meta/flow.json",
"title": "Business Flow Model",
"description": "Defines business flows that relate to technical architectures, allowing mapping of flows to technical components and attaching control requirements.",
"type": "object",
"properties": {
"unique-id": {
"type": "string",
"description": "Unique identifier for the flow"
},
"name": {
"type": "string",
"description": "Descriptive name for the business flow"
},
"description": {
"type": "string",
"description": "Detailed description of the flow's purpose"
},
"requirement-url": {
"type": "string",
"description": "Link to a detailed requirement document"
},
"transitions": {
"type": "array",
"items": {
"$ref": "#/defs/transition"
}
},
"controls": {
"$ref": "https://calm.finos.org/draft/2024-10/meta/control.json#/defs/controls"
},
"metadata": {
"$ref": "#/defs/metadata"
}
},
"required": [
"unique-id",
"name",
"description",
"transitions"
],
"defs": {
"transition": {
"type": "object",
"properties": {
"relationship-unique-id": {
"type": "string",
"description": "Unique identifier for the relationship in the architecture"
},
"sequence-number": {
"type": "integer",
"description": "Indicates the sequence of the relationship in the flow"
},
"summary": {
"type": "string",
"description": "Functional summary of what is happening in the transition"
},
"direction": {
"enum": [
"source-to-destination",
"destination-to-source"
],
"default": "source-to-destination"
},
"required": [
"relationship-unique-id",
"sequence-number",
"summary"
]
},
"minItems": 1
},
"metadata": {
"type": "array",
"items": {
"type": "object"
}
}
}
}

182 changes: 182 additions & 0 deletions calm/samples/traderx/controls/flow-sla-control-requirement.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://calm.finos.org/traderx/controls/flow-sla-control-requirement.json",
"title": "Flow SLA Control",
"type": "object",
"allOf": [
{
"$ref": "https://calm.finos.org/draft/2024-10/meta/control-requirement.json"
}
],
"properties": {
"control-id": {
"const": "flow-sla-001"
},
"name": {
"const": "Flow SLA Control"
},
"description": {
"const": "Ensure that each flow meets the defined Service Level Agreement (SLA)"
},
"latency": {
"type": "object",
"properties": {
"expected-latency": {
"$ref": "https://calm.finos.org/draft/2024-10/meta/units.json#/defs/time-unit",
"description": "The expected latency for completion of flow"
},
"alert-threshold": {
"$ref": "https://calm.finos.org/draft/2024-10/meta/units.json#/defs/time-unit",
"description": "If latency exceeds this threshold, an alert will be triggered."
}
},
"required": [
"expected-latency",
"alert-threshold"
]
},
"throughput": {
"type": "object",
"properties": {
"expected-message-rate": {
"$ref": "https://calm.finos.org/draft/2024-10/meta/units.json#/defs/time-unit",
"description": "Define the expected message rate that the flow should handle e.g. 1000 per second"
}
},
"required": [
"expected-message-rate"
]
},
"availability": {
"type": "object",
"properties": {
"uptime-guarantee": {
"type": "number",
"description": "Percentage of availability required (e.g., 99.9%).",
"minimum": 0,
"maximum": 100
}
},
"required": [
"uptime-guarantee"
]
},
"data-integrity": {
"type": "object",
"properties": {
"message-reliability": {
"enum": [
"atLeastOnce",
"atMostOnce",
"exactlyOnce"
],
"description": "Guarantee that messages are delivered in the correct order and without duplication."
},
"loss-tolerance": {
"type": "number",
"description": "Specify acceptable levels of message loss as a percentage (e.g., 0 to 100).",
"minimum": 0,
"maximum": 100
}
},
"required": [
"message-reliability",
"loss-tolerance"
]
},
"error-handling": {
"type": "object",
"properties": {
"retry-logic": {
"type": "object",
"properties": {
"max-retries": {
"type": "integer",
"description": "Specify the maximum number of retries in case of failures."
},
"retry-interval": {
"$ref": "https://calm.finos.org/draft/2024-10/meta/units.json#/defs/time-unit",
"description": "Define the interval between retries."
}
},
"required": ["max-retries", "retry-interval"]
}
},
"required": [
"retry-logic"
]
},
"monitoring": {
"type": "object",
"properties": {
"real-time-monitoring": {
"type": "string",
"description": "Define the monitoring systems for tracking performance against the SLA."
},
"consumer-reporting": {
"$ref": "https://calm.finos.org/draft/2024-10/meta/units.json#/defs/time-unit",
"description": "Specify the reporting frequency for the consumer, e.g., daily, weekly, or monthly."
}
},
"required": [
"real-time-monitoring",
"consumer-reporting"
]
},
"incident-response": {
"type": "object",
"properties": {
"incident-resolution-time": {
"$ref": "https://calm.finos.org/draft/2024-10/meta/units.json#/defs/time-unit",
"description": "Define timeframes for responding to SLA-impacting issues."
},
"escalation-protocols": {
"type": "object",
"properties": {
"incident-start-time-post-alert": {
"$ref": "https://calm.finos.org/draft/2024-10/meta/units.json#/defs/time-unit",
"description": "Timeframe for initiating incident response after an alert."
},
"escalation-path": {
"type": "string",
"description": "Specify the escalation path for SLA violations."
}
},
"required": [
"incident-start-time-post-alert",
"escalation-path"
]
}
},
"required": [
"incident-resolution-time",
"escalation-protocols"
]
},
"review-adjustments": {
"type": "object",
"properties": {
"sla-review": {
"$ref": "https://calm.finos.org/draft/2024-10/meta/units.json#/defs/time-unit",
"description": "Outline a schedule for regularly reviewing the SLA."
}
},
"required": [
"sla-review"
]
}
},
"required": [
"control-id",
"name",
"description",
"latency",
"throughput",
"availability",
"data-integrity",
"error-handling",
"monitoring",
"incident-response",
"review-adjustments"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"$schema": "https://calm.finos.org/traderx/controls/flow-sla-control-requirement.json",
"$id": "https://calm.finos.org/traderx/flows/add-update-account/add-update-account-control-configuration.json",
"control-id": "flow-sla-001",
"name": "Flow SLA Control for Add or Update Account",
"description": "Ensure that the Add or Update Account flow meets the defined Service Level Agreement (SLA).",
"latency": {
"expected-latency": {
"value": 100,
"unit": "milliseconds"
},
"alert-threshold": {
"value": 150,
"unit": "milliseconds"
}
},
"throughput": {
"expected-message-rate": {
"value": 500,
"unit": "seconds"
}
},
"availability": {
"uptime-guarantee": 99.9
},
"data-integrity": {
"message-reliability": "atLeastOnce",
"loss-tolerance": 0
},
"error-handling": {
"retry-logic": {
"max-retries": 3,
"retry-interval": {
"value": 10,
"unit": "seconds"
}
}
},
"monitoring": {
"real-time-monitoring": "Use of monitoring tools like Prometheus or Grafana for SLA tracking.",
"consumer-reporting": {
"value": 1,
"unit": "days"
}
},
"incident-response": {
"incident-resolution-time": {
"value": 30,
"unit": "minutes"
},
"escalation-protocols": {
"incident-start-time-post-alert": {
"value": 5,
"unit": "minutes"
},
"escalation-path": "Notify the incident response team via the dedicated Slack channel."
}
},
"review-adjustments": {
"sla-review": {
"value": 1,
"unit": "months"
}
}
}
Loading
Loading