├── .asf.yaml ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── collect ├── agent │ └── configuration │ │ └── v3 │ │ ├── ConfigurationDiscoveryService.pb.go │ │ └── ConfigurationDiscoveryService_grpc.pb.go ├── common │ └── v3 │ │ ├── Command.pb.go │ │ └── Common.pb.go ├── ebpf │ ├── accesslog │ │ └── v3 │ │ │ ├── accesslog.pb.go │ │ │ └── accesslog_grpc.pb.go │ └── profiling │ │ ├── process │ │ └── v3 │ │ │ ├── Process.pb.go │ │ │ └── Process_grpc.pb.go │ │ └── v3 │ │ ├── Continuous.pb.go │ │ ├── Continuous_grpc.pb.go │ │ ├── Profile.pb.go │ │ └── Profile_grpc.pb.go ├── event │ └── v3 │ │ ├── Event.pb.go │ │ └── Event_grpc.pb.go ├── language │ ├── agent │ │ └── v3 │ │ │ ├── BrowserPerf.pb.go │ │ │ ├── BrowserPerf_grpc.pb.go │ │ │ ├── CLRMetric.pb.go │ │ │ ├── CLRMetric_grpc.pb.go │ │ │ ├── JVMMetric.pb.go │ │ │ ├── JVMMetric_grpc.pb.go │ │ │ ├── Meter.pb.go │ │ │ ├── Meter_grpc.pb.go │ │ │ ├── Tracing.pb.go │ │ │ ├── Tracing_grpc.pb.go │ │ │ └── compat │ │ │ ├── BrowserPerfCompat.pb.go │ │ │ ├── BrowserPerfCompat_grpc.pb.go │ │ │ ├── CLRMetricCompat.pb.go │ │ │ ├── CLRMetricCompat_grpc.pb.go │ │ │ ├── JVMMetricCompat.pb.go │ │ │ ├── JVMMetricCompat_grpc.pb.go │ │ │ ├── MeterCompat.pb.go │ │ │ ├── MeterCompat_grpc.pb.go │ │ │ ├── TracingCompat.pb.go │ │ │ └── TracingCompat_grpc.pb.go │ ├── asyncprofiler │ │ └── v10 │ │ │ ├── AsyncProfiler.pb.go │ │ │ └── AsyncProfiler_grpc.pb.go │ └── profile │ │ └── v3 │ │ ├── Profile.pb.go │ │ ├── Profile_grpc.pb.go │ │ └── compat │ │ ├── ProfileCompat.pb.go │ │ └── ProfileCompat_grpc.pb.go ├── logging │ └── v3 │ │ ├── Logging.pb.go │ │ └── Logging_grpc.pb.go ├── management │ └── v3 │ │ ├── Management.pb.go │ │ ├── Management_grpc.pb.go │ │ └── compat │ │ ├── ManagementCompat.pb.go │ │ └── ManagementCompat_grpc.pb.go ├── pprof │ └── v10 │ │ ├── Pprof.pb.go │ │ └── Pprof_grpc.pb.go └── servicemesh │ └── v3 │ ├── service-mesh.pb.go │ └── service-mesh_grpc.pb.go ├── dependencies.sh ├── go.mod ├── go.sum ├── gqlgen.yml ├── proto ├── envoy │ ├── annotations │ │ └── deprecation.pb.go │ ├── api │ │ └── v2 │ │ │ └── core │ │ │ ├── address.pb.go │ │ │ ├── backoff.pb.go │ │ │ ├── base.pb.go │ │ │ ├── config_source.pb.go │ │ │ ├── event_service_config.pb.go │ │ │ ├── grpc_method_list.pb.go │ │ │ ├── grpc_service.pb.go │ │ │ ├── http_uri.pb.go │ │ │ └── socket_option.pb.go │ ├── config │ │ └── core │ │ │ └── v3 │ │ │ ├── address.pb.go │ │ │ ├── backoff.pb.go │ │ │ ├── base.pb.go │ │ │ ├── http_uri.pb.go │ │ │ └── socket_option.pb.go │ ├── data │ │ └── accesslog │ │ │ ├── v2 │ │ │ └── accesslog.pb.go │ │ │ └── v3 │ │ │ └── accesslog.pb.go │ ├── service │ │ ├── accesslog │ │ │ ├── v2 │ │ │ │ ├── als.pb.go │ │ │ │ └── als_grpc.pb.go │ │ │ └── v3 │ │ │ │ ├── als.pb.go │ │ │ │ └── als_grpc.pb.go │ │ └── metrics │ │ │ ├── v2 │ │ │ ├── metrics_service.pb.go │ │ │ └── metrics_service_grpc.pb.go │ │ │ └── v3 │ │ │ ├── metrics_service.pb.go │ │ │ └── metrics_service_grpc.pb.go │ └── type │ │ ├── percent.pb.go │ │ ├── semantic_version.pb.go │ │ └── v3 │ │ ├── percent.pb.go │ │ └── semantic_version.pb.go ├── io │ └── prometheus │ │ └── client │ │ └── metrics.pb.go ├── opentelemetry │ └── proto │ │ ├── collector │ │ └── metrics │ │ │ └── v1 │ │ │ ├── metrics_service.pb.go │ │ │ └── metrics_service_grpc.pb.go │ │ ├── common │ │ └── v1 │ │ │ └── common.pb.go │ │ ├── metrics │ │ └── v1 │ │ │ └── metrics.pb.go │ │ └── resource │ │ └── v1 │ │ └── resource.pb.go ├── udpa │ └── annotations │ │ ├── migrate.pb.go │ │ ├── sensitive.pb.go │ │ ├── status.pb.go │ │ └── versioning.pb.go ├── validate │ └── validate.pb.go └── xds │ └── core │ └── v3 │ └── context_params.pb.go ├── query └── schema.go ├── satellite ├── data │ └── v1 │ │ ├── SniffData.pb.go │ │ └── SniffData.proto └── envoy │ └── accesslog │ └── v3 │ ├── alsv3.pb.go │ ├── alsv3.proto │ └── alsv3_grpc.pb.go └── scripts ├── protoc.sh ├── third-proto-import.sh ├── update.sh ├── update_query_protocol.sh └── update_sniff_protocol.sh /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/README.md -------------------------------------------------------------------------------- /collect/agent/configuration/v3/ConfigurationDiscoveryService.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/agent/configuration/v3/ConfigurationDiscoveryService.pb.go -------------------------------------------------------------------------------- /collect/agent/configuration/v3/ConfigurationDiscoveryService_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/agent/configuration/v3/ConfigurationDiscoveryService_grpc.pb.go -------------------------------------------------------------------------------- /collect/common/v3/Command.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/common/v3/Command.pb.go -------------------------------------------------------------------------------- /collect/common/v3/Common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/common/v3/Common.pb.go -------------------------------------------------------------------------------- /collect/ebpf/accesslog/v3/accesslog.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/ebpf/accesslog/v3/accesslog.pb.go -------------------------------------------------------------------------------- /collect/ebpf/accesslog/v3/accesslog_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/ebpf/accesslog/v3/accesslog_grpc.pb.go -------------------------------------------------------------------------------- /collect/ebpf/profiling/process/v3/Process.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/ebpf/profiling/process/v3/Process.pb.go -------------------------------------------------------------------------------- /collect/ebpf/profiling/process/v3/Process_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/ebpf/profiling/process/v3/Process_grpc.pb.go -------------------------------------------------------------------------------- /collect/ebpf/profiling/v3/Continuous.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/ebpf/profiling/v3/Continuous.pb.go -------------------------------------------------------------------------------- /collect/ebpf/profiling/v3/Continuous_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/ebpf/profiling/v3/Continuous_grpc.pb.go -------------------------------------------------------------------------------- /collect/ebpf/profiling/v3/Profile.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/ebpf/profiling/v3/Profile.pb.go -------------------------------------------------------------------------------- /collect/ebpf/profiling/v3/Profile_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/ebpf/profiling/v3/Profile_grpc.pb.go -------------------------------------------------------------------------------- /collect/event/v3/Event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/event/v3/Event.pb.go -------------------------------------------------------------------------------- /collect/event/v3/Event_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/event/v3/Event_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/BrowserPerf.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/BrowserPerf.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/BrowserPerf_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/BrowserPerf_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/CLRMetric.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/CLRMetric.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/CLRMetric_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/CLRMetric_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/JVMMetric.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/JVMMetric.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/JVMMetric_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/JVMMetric_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/Meter.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/Meter.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/Meter_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/Meter_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/Tracing.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/Tracing.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/Tracing_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/Tracing_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/BrowserPerfCompat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/BrowserPerfCompat.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/BrowserPerfCompat_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/BrowserPerfCompat_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/CLRMetricCompat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/CLRMetricCompat.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/CLRMetricCompat_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/CLRMetricCompat_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/JVMMetricCompat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/JVMMetricCompat.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/JVMMetricCompat_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/JVMMetricCompat_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/MeterCompat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/MeterCompat.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/MeterCompat_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/MeterCompat_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/TracingCompat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/TracingCompat.pb.go -------------------------------------------------------------------------------- /collect/language/agent/v3/compat/TracingCompat_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/agent/v3/compat/TracingCompat_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/asyncprofiler/v10/AsyncProfiler.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/asyncprofiler/v10/AsyncProfiler.pb.go -------------------------------------------------------------------------------- /collect/language/asyncprofiler/v10/AsyncProfiler_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/asyncprofiler/v10/AsyncProfiler_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/profile/v3/Profile.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/profile/v3/Profile.pb.go -------------------------------------------------------------------------------- /collect/language/profile/v3/Profile_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/profile/v3/Profile_grpc.pb.go -------------------------------------------------------------------------------- /collect/language/profile/v3/compat/ProfileCompat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/profile/v3/compat/ProfileCompat.pb.go -------------------------------------------------------------------------------- /collect/language/profile/v3/compat/ProfileCompat_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/language/profile/v3/compat/ProfileCompat_grpc.pb.go -------------------------------------------------------------------------------- /collect/logging/v3/Logging.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/logging/v3/Logging.pb.go -------------------------------------------------------------------------------- /collect/logging/v3/Logging_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/logging/v3/Logging_grpc.pb.go -------------------------------------------------------------------------------- /collect/management/v3/Management.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/management/v3/Management.pb.go -------------------------------------------------------------------------------- /collect/management/v3/Management_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/management/v3/Management_grpc.pb.go -------------------------------------------------------------------------------- /collect/management/v3/compat/ManagementCompat.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/management/v3/compat/ManagementCompat.pb.go -------------------------------------------------------------------------------- /collect/management/v3/compat/ManagementCompat_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/management/v3/compat/ManagementCompat_grpc.pb.go -------------------------------------------------------------------------------- /collect/pprof/v10/Pprof.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/pprof/v10/Pprof.pb.go -------------------------------------------------------------------------------- /collect/pprof/v10/Pprof_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/pprof/v10/Pprof_grpc.pb.go -------------------------------------------------------------------------------- /collect/servicemesh/v3/service-mesh.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/servicemesh/v3/service-mesh.pb.go -------------------------------------------------------------------------------- /collect/servicemesh/v3/service-mesh_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/collect/servicemesh/v3/service-mesh_grpc.pb.go -------------------------------------------------------------------------------- /dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/dependencies.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/go.sum -------------------------------------------------------------------------------- /gqlgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/gqlgen.yml -------------------------------------------------------------------------------- /proto/envoy/annotations/deprecation.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/annotations/deprecation.pb.go -------------------------------------------------------------------------------- /proto/envoy/api/v2/core/address.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/api/v2/core/address.pb.go -------------------------------------------------------------------------------- /proto/envoy/api/v2/core/backoff.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/api/v2/core/backoff.pb.go -------------------------------------------------------------------------------- /proto/envoy/api/v2/core/base.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/api/v2/core/base.pb.go -------------------------------------------------------------------------------- /proto/envoy/api/v2/core/config_source.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/api/v2/core/config_source.pb.go -------------------------------------------------------------------------------- /proto/envoy/api/v2/core/event_service_config.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/api/v2/core/event_service_config.pb.go -------------------------------------------------------------------------------- /proto/envoy/api/v2/core/grpc_method_list.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/api/v2/core/grpc_method_list.pb.go -------------------------------------------------------------------------------- /proto/envoy/api/v2/core/grpc_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/api/v2/core/grpc_service.pb.go -------------------------------------------------------------------------------- /proto/envoy/api/v2/core/http_uri.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/api/v2/core/http_uri.pb.go -------------------------------------------------------------------------------- /proto/envoy/api/v2/core/socket_option.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/api/v2/core/socket_option.pb.go -------------------------------------------------------------------------------- /proto/envoy/config/core/v3/address.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/config/core/v3/address.pb.go -------------------------------------------------------------------------------- /proto/envoy/config/core/v3/backoff.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/config/core/v3/backoff.pb.go -------------------------------------------------------------------------------- /proto/envoy/config/core/v3/base.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/config/core/v3/base.pb.go -------------------------------------------------------------------------------- /proto/envoy/config/core/v3/http_uri.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/config/core/v3/http_uri.pb.go -------------------------------------------------------------------------------- /proto/envoy/config/core/v3/socket_option.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/config/core/v3/socket_option.pb.go -------------------------------------------------------------------------------- /proto/envoy/data/accesslog/v2/accesslog.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/data/accesslog/v2/accesslog.pb.go -------------------------------------------------------------------------------- /proto/envoy/data/accesslog/v3/accesslog.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/data/accesslog/v3/accesslog.pb.go -------------------------------------------------------------------------------- /proto/envoy/service/accesslog/v2/als.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/service/accesslog/v2/als.pb.go -------------------------------------------------------------------------------- /proto/envoy/service/accesslog/v2/als_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/service/accesslog/v2/als_grpc.pb.go -------------------------------------------------------------------------------- /proto/envoy/service/accesslog/v3/als.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/service/accesslog/v3/als.pb.go -------------------------------------------------------------------------------- /proto/envoy/service/accesslog/v3/als_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/service/accesslog/v3/als_grpc.pb.go -------------------------------------------------------------------------------- /proto/envoy/service/metrics/v2/metrics_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/service/metrics/v2/metrics_service.pb.go -------------------------------------------------------------------------------- /proto/envoy/service/metrics/v2/metrics_service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/service/metrics/v2/metrics_service_grpc.pb.go -------------------------------------------------------------------------------- /proto/envoy/service/metrics/v3/metrics_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/service/metrics/v3/metrics_service.pb.go -------------------------------------------------------------------------------- /proto/envoy/service/metrics/v3/metrics_service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/service/metrics/v3/metrics_service_grpc.pb.go -------------------------------------------------------------------------------- /proto/envoy/type/percent.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/type/percent.pb.go -------------------------------------------------------------------------------- /proto/envoy/type/semantic_version.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/type/semantic_version.pb.go -------------------------------------------------------------------------------- /proto/envoy/type/v3/percent.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/type/v3/percent.pb.go -------------------------------------------------------------------------------- /proto/envoy/type/v3/semantic_version.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/envoy/type/v3/semantic_version.pb.go -------------------------------------------------------------------------------- /proto/io/prometheus/client/metrics.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/io/prometheus/client/metrics.pb.go -------------------------------------------------------------------------------- /proto/opentelemetry/proto/collector/metrics/v1/metrics_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/opentelemetry/proto/collector/metrics/v1/metrics_service.pb.go -------------------------------------------------------------------------------- /proto/opentelemetry/proto/collector/metrics/v1/metrics_service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/opentelemetry/proto/collector/metrics/v1/metrics_service_grpc.pb.go -------------------------------------------------------------------------------- /proto/opentelemetry/proto/common/v1/common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/opentelemetry/proto/common/v1/common.pb.go -------------------------------------------------------------------------------- /proto/opentelemetry/proto/metrics/v1/metrics.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/opentelemetry/proto/metrics/v1/metrics.pb.go -------------------------------------------------------------------------------- /proto/opentelemetry/proto/resource/v1/resource.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/opentelemetry/proto/resource/v1/resource.pb.go -------------------------------------------------------------------------------- /proto/udpa/annotations/migrate.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/udpa/annotations/migrate.pb.go -------------------------------------------------------------------------------- /proto/udpa/annotations/sensitive.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/udpa/annotations/sensitive.pb.go -------------------------------------------------------------------------------- /proto/udpa/annotations/status.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/udpa/annotations/status.pb.go -------------------------------------------------------------------------------- /proto/udpa/annotations/versioning.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/udpa/annotations/versioning.pb.go -------------------------------------------------------------------------------- /proto/validate/validate.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/validate/validate.pb.go -------------------------------------------------------------------------------- /proto/xds/core/v3/context_params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/proto/xds/core/v3/context_params.pb.go -------------------------------------------------------------------------------- /query/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/query/schema.go -------------------------------------------------------------------------------- /satellite/data/v1/SniffData.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/satellite/data/v1/SniffData.pb.go -------------------------------------------------------------------------------- /satellite/data/v1/SniffData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/satellite/data/v1/SniffData.proto -------------------------------------------------------------------------------- /satellite/envoy/accesslog/v3/alsv3.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/satellite/envoy/accesslog/v3/alsv3.pb.go -------------------------------------------------------------------------------- /satellite/envoy/accesslog/v3/alsv3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/satellite/envoy/accesslog/v3/alsv3.proto -------------------------------------------------------------------------------- /satellite/envoy/accesslog/v3/alsv3_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/satellite/envoy/accesslog/v3/alsv3_grpc.pb.go -------------------------------------------------------------------------------- /scripts/protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/scripts/protoc.sh -------------------------------------------------------------------------------- /scripts/third-proto-import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/scripts/third-proto-import.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /scripts/update_query_protocol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/scripts/update_query_protocol.sh -------------------------------------------------------------------------------- /scripts/update_sniff_protocol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-goapi/HEAD/scripts/update_sniff_protocol.sh --------------------------------------------------------------------------------