the-algorithm/navi/navi/proto/tensorflow_serving/config/logging_config.proto
twitter-team ef4c5eb65e Twitter Recommendation Algorithm
Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
2023-03-31 17:36:31 -05:00

19 lines
458 B
Protocol Buffer

syntax = "proto3";
package tensorflow.serving;
option cc_enable_arenas = true;
import "tensorflow_serving/config/log_collector_config.proto";
message SamplingConfig {
// Requests will be logged uniformly at random with this probability. Valid
// range: [0, 1.0].
double sampling_rate = 1;
}
// Configuration for logging query/responses.
message LoggingConfig {
LogCollectorConfig log_collector_config = 1;
SamplingConfig sampling_config = 2;
}