blob: 1e74426379640346590996439411b50ee867a22c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
syntax = "proto3";
package yandex.cloud.loadtesting.api.v1.test;
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/loadtesting/api/v1/test;test";
option java_package = "yandex.cloud.api.loadtesting.api.v1.test";
enum Status {
// Status is unspecified.
STATUS_UNSPECIFIED = 0;
// Test has been created, but not started by any agent.
CREATED = 1;
// Execution stage: initialization.
INITIATED = 2;
// Execution stage: data preparation and warm-up.
PREPARING = 3;
// Execution stage: load generation.
RUNNING = 4;
// Execution stage: termination.
FINISHING = 5;
// Test is done.
DONE = 6;
// Execution stage: results post-processing.
POST_PROCESSING = 7;
// Test has failed due to some error.
FAILED = 8;
// Test is being stopped.
STOPPING = 9;
// Test has been stopped.
STOPPED = 10;
// Test has been stopped automatically by satisfying autostop condition.
AUTOSTOPPED = 11;
// Execution stage: waiting for a trigger to start.
WAITING = 12;
// Test is being deleted.
DELETING = 13;
// Test status has not been reported in a while during execution stage.
//
// Means that either an agent is too busy to send it, got offline, or failed without
// reporting a final status.
LOST = 14;
}
|