config.proto 383 B

12345678910111213
  1. syntax = "proto3";
  2. package xray.app.metrics;
  3. option csharp_namespace = "Xray.App.Metrics";
  4. option go_package = "github.com/xtls/xray-core/app/metrics";
  5. option java_package = "com.xray.app.metrics";
  6. option java_multiple_files = true;
  7. // Config is the settings for metrics.
  8. message Config {
  9. // Tag of the outbound handler that handles metrics http connections.
  10. string tag = 1;
  11. }