aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageapi/mbusprot/protobuf/inspect.proto
blob: 817aafc3d58e63990c1d5502fcf93a8b1bcded34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

syntax = "proto3";

option cc_enable_arenas = true;

package storage.mbusprot.protobuf;

import "common.proto";

message StatBucketRequest {
    Bucket bucket             = 1;
    bytes  document_selection = 2;
}

message StatBucketResponse {
    BucketId remapped_bucket_id = 1;
    bytes    results            = 2;
}