Skip to content

Instantly share code, notes, and snippets.

@MichaelDrogalis
Created November 2, 2023 18:11
Show Gist options
  • Save MichaelDrogalis/b08f5ed24ea07b1c47c19d03459b1bcc to your computer and use it in GitHub Desktop.
Save MichaelDrogalis/b08f5ed24ea07b1c47c19d03459b1bcc to your computer and use it in GitHub Desktop.
{
"generators": [
{
"table": "posts",
"vars": {
"delay": {
"_gen": "normalDistribution",
"mean": 500,
"sd": 40
}
},
"row": {
"poster": {
"_gen": "weightedOneOf",
"choices": [
{ "weight": 7,
"value": {
"_gen": "lookup",
"table": "posts",
"path": ["poster"]
}
},
{
"weight": 3,
"value": {
"_gen": "string",
"expr": "#{Name.firstName}"
}
}
]
},
"delay": {
"_gen": "var",
"var": "delay"
}
},
"localConfigs": {
"throttle": {
"ms": {
"_gen": "var",
"var": "delay"
}
},
"events": {
"exactly": 3
}
}
}
],
"connections": {
"pg": {
"kind": "postgres",
"connectionConfigs": {
"host": "localhost",
"port": 5432,
"db": "mydb"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment