Here is a collection of entity-relationship diagrams I created for the Azure Load Test service based on the Key Concepts in the public documentation.
erDiagram
TEST {
string name
string description
integer num_engines
}
TEST ||--|| JMETER-SCRIPT : contains
TEST ||--|{ CONFIGURATION-FILE : contains
TEST ||--|{ ENV-VARIABLE : contains
TEST ||--|{ APP-COMPONENT : contains
TEST ||--|{ METRIC : defines
erDiagram
TEST {
string name
}
TEST ||--|{ TEST-RUN : "one execution of"
TEST-RUN ||--|{ JMETER-LOG : contains
TEST-RUN ||--|{ YAML-CONFIGURATION : contains
TEST-RUN ||--|{ APP-COMPONENT : contains
TEST-RUN ||--|{ RESULT : contains
erDiagram
TEST {
string name
}
TEST ||--|{ APP-COMPONENT : contains
TEST ||--|{ TEST-RUN : "one execution of"
TEST-RUN ||--|{ APP-COMPONENT : contains
APP-COMPONENT {
object metrics
}