diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-24 16:41:13 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-02 16:08:07 +0200 |
commit | 44a34aca80bb01c3a7689fe02d34f17718bf9293 (patch) | |
tree | b12af552ec4036c534ea975045ddf4a8cd93c30e /sonar-batch-protocol/src/main/protobuf | |
parent | 534bda208505d82734a41f44791ccd50ea928432 (diff) | |
download | sonarqube-44a34aca80bb01c3a7689fe02d34f17718bf9293.tar.gz sonarqube-44a34aca80bb01c3a7689fe02d34f17718bf9293.zip |
SONAR-6588 integrate issues to Compute Engine
Diffstat (limited to 'sonar-batch-protocol/src/main/protobuf')
-rw-r--r-- | sonar-batch-protocol/src/main/protobuf/batch_report.proto | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/batch_report.proto b/sonar-batch-protocol/src/main/protobuf/batch_report.proto index 0ecee214e93..361c0419fff 100644 --- a/sonar-batch-protocol/src/main/protobuf/batch_report.proto +++ b/sonar-batch-protocol/src/main/protobuf/batch_report.proto @@ -45,6 +45,13 @@ message Metadata { optional string project_key = 2; optional string branch = 3; optional int32 root_component_ref = 4; + + /* + Keys of the rules that were enabled in Quality profiles. + A key is a string composed of the repository and the subKey, specific to the repository. Format is + "{repository}:{subKey}", for instance "java:NullDereference". + */ + repeated string active_rule_key = 5; } message ComponentLink { @@ -84,15 +91,11 @@ message Measure { // temporary fields during development of computation stack optional string description = 9; - optional string rule_key = 10; - optional string alert_status = 12; - optional string alert_text = 13; optional double variation_value_1 = 14; optional double variation_value_2 = 15; optional double variation_value_3 = 16; optional double variation_value_4 = 17; optional double variation_value_5 = 18; - optional int32 characteric_id = 19; optional int32 person_id = 20; } |