You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
661 B
35 lines
661 B
{ |
|
"nodes": [ |
|
{ |
|
"id": "webserver", |
|
"type": "webserver", |
|
"position": { "x": 0, "y": 0 }, |
|
"props": { |
|
"label": "Web Server", |
|
"rpsCapacity": 100 |
|
} |
|
}, |
|
{ |
|
"id": "database", |
|
"type": "database", |
|
"position": { "x": 100, "y": 0 }, |
|
"props": { |
|
"label": "Primary DB", |
|
"replication": 2, |
|
"maxRPS": 500, |
|
"baseLatencyMs": 15 |
|
} |
|
} |
|
], |
|
"connections": [ |
|
{ |
|
"source": "webserver", |
|
"target": "database", |
|
"label": "DB Queries", |
|
"direction": "forward", |
|
"protocol": "TCP", |
|
"tls": true, |
|
"capacity": 1000 |
|
} |
|
] |
|
}
|
|
|