diff options
Diffstat (limited to 'yardstick/cmd/commands/env.py')
-rw-r--r-- | yardstick/cmd/commands/env.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yardstick/cmd/commands/env.py b/yardstick/cmd/commands/env.py index d9c0c0a3f..ed46b84c4 100644 --- a/yardstick/cmd/commands/env.py +++ b/yardstick/cmd/commands/env.py @@ -15,3 +15,8 @@ class EnvCommand(object): url = 'http://localhost:5000/yardstick/env/action' data = {'action': 'createInfluxDBContainer'} HttpClient().post(url, data) + + def do_grafana(self, args): + url = 'http://localhost:5000/yardstick/env/action' + data = {'action': 'createGrafanaContainer'} + HttpClient().post(url, data) |