Skip to content

Commit

Permalink
dashboards: increase max length of test plan name from 30 to 255
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Jun 28, 2022
1 parent d0c015b commit ecb5c01
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion locust_plugins/dashboards/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
postgres:
image: cyberw/locust-timescale:3
image: cyberw/locust-timescale:4
networks:
- timenet
expose:
Expand Down
2 changes: 1 addition & 1 deletion locust_plugins/dashboards/locust-timescale/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TAG=3
TAG=4
IMAGE_NAME=cyberw/locust-timescale:$(TAG)

build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ CREATE TABLE public.request (
response_length integer,
response_time double precision,
success smallint NOT NULL,
testplan character varying(30) NOT NULL,
testplan character varying(255) NOT NULL,
pid integer,
context jsonb,
url character varying(255)
Expand Down Expand Up @@ -1664,7 +1664,7 @@ ALTER TABLE _timescaledb_internal._hyper_3_98_chunk OWNER TO postgres;
--

CREATE TABLE public.user_count (
testplan character varying(30) NOT NULL,
testplan character varying(255) NOT NULL,
user_count integer NOT NULL,
"time" timestamp with time zone NOT NULL,
run_id timestamp with time zone
Expand Down

0 comments on commit ecb5c01

Please sign in to comment.