├── .asf.yaml ├── .github ├── file-filters.txt ├── scripts │ ├── entrypoint.sh │ └── post-entrypoint.sh └── workflows │ ├── CI.yaml │ └── publish-docker.yaml ├── .gitignore ├── .golangci.yml ├── .graphqlconfig ├── .licenserc.yaml ├── CHANGES.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── action.yaml ├── actions └── setup │ └── action.yaml ├── assets ├── assets.go ├── assets_test.go ├── cr │ ├── oap.yaml │ └── ui.yaml ├── graphqls │ ├── alarm │ │ ├── alarms.graphql │ │ ├── tagAutocompleteKeys.graphql │ │ └── tagAutocompleteValues.graphql │ ├── common │ │ └── version.graphql │ ├── dependency │ │ ├── EndpointDependency.graphql │ │ ├── GlobalTopology.graphql │ │ ├── GlobalTopologyWithoutLayer.graphql │ │ ├── InstanceTopology.graphql │ │ ├── ProcessTopology.graphql │ │ └── ServiceTopology.graphql │ ├── event │ │ └── events.graphql │ ├── healthcheck │ │ └── healthcheck.graphql │ ├── hierarchy │ │ ├── InstanceHierarchy.graphql │ │ ├── ListLayerLevels.graphql │ │ └── ServiceHierarchy.graphql │ ├── logs │ │ ├── BrowserLogs.graphql │ │ └── Logs.graphql │ ├── menu │ │ └── GetItems.graphql │ ├── metadata │ │ ├── v1 │ │ │ ├── AllBrowserServices.graphql │ │ │ ├── AllServices.graphql │ │ │ ├── Instances.graphql │ │ │ ├── SearchBrowserService.graphql │ │ │ ├── SearchEndpoints.graphql │ │ │ ├── SearchService.graphql │ │ │ └── ServerTimeInfo.graphql │ │ └── v2 │ │ │ ├── AllBrowserServices.graphql │ │ │ ├── AllServices.graphql │ │ │ ├── EstimateProcessScale.graphql │ │ │ ├── FindEndpointsWithDuration.graphql │ │ │ ├── FindEndpointsWithoutDuration.graphql │ │ │ ├── FindService.graphql │ │ │ ├── GetEndpointInfo.graphql │ │ │ ├── GetInstance.graphql │ │ │ ├── GetProcess.graphql │ │ │ ├── Instances.graphql │ │ │ ├── ListLayers.graphql │ │ │ ├── ListService.graphql │ │ │ ├── Processes.graphql │ │ │ ├── SearchBrowserService.graphql │ │ │ └── ServerTimeInfo.graphql │ ├── metrics │ │ ├── ExecuteExpression.graphql │ │ ├── HeatMap.graphql │ │ ├── LabeledMetricsValues.graphql │ │ ├── ListMetrics.graphql │ │ ├── MetricsValue.graphql │ │ ├── MetricsValues.graphql │ │ ├── NullableMetricsValue.graphql │ │ ├── ReadRecords.graphql │ │ ├── SampledRecords.graphql │ │ └── SortMetrics.graphql │ ├── profiling │ │ ├── asyncprofiler │ │ │ ├── CreateTask.graphql │ │ │ ├── GetAnalysis.graphql │ │ │ ├── GetTaskList.graphql │ │ │ └── GetTaskProgress.graphql │ │ ├── continuous │ │ │ ├── QueryContinuousProfilingMonitoringInstances.graphql │ │ │ ├── QueryContinuousProfilingServiceTargets.graphql │ │ │ └── SetContinuousProfilingPolicy.graphql │ │ ├── ebpf │ │ │ ├── AnalysisEBPFProfilingResult.graphql │ │ │ ├── CreateEBPFNetworkProfilingTask.graphql │ │ │ ├── CreateEBPFProfilingFixedTimeTask.graphql │ │ │ ├── KeepNetworkProfilingTask.graphql │ │ │ ├── QueryEBPFProfilingScheduleList.graphql │ │ │ ├── QueryEBPFProfilingTaskList.graphql │ │ │ └── QueryPrepareCreateEBPFProfilingTaskData.graphql │ │ ├── pprof │ │ │ ├── CreateTask.graphql │ │ │ ├── GetAnalysis.graphql │ │ │ ├── GetTaskList.graphql │ │ │ └── GetTaskProgress.graphql │ │ └── trace │ │ │ ├── CreateTask.graphql │ │ │ ├── GetProfileTaskLogs.graphql │ │ │ ├── GetProfiledSegment.graphql │ │ │ ├── GetSegmentsProfileAnalyze.graphql │ │ │ ├── GetTaskList.graphql │ │ │ └── GetTaskSegmentsList.graphql │ ├── trace │ │ ├── Trace.graphql │ │ ├── TraceWithoutDuration.graphql │ │ └── Traces.graphql │ └── tracev2 │ │ └── Traces.graphql └── templates │ └── dashboard │ └── global.yml ├── cmd └── swctl │ └── main.go ├── dist ├── LICENSE ├── LICENSE.tpl ├── NOTICE └── licenses │ ├── license-dario.cat-mergo.txt │ ├── license-github.com-BurntSushi-toml.txt │ ├── license-github.com-Masterminds-goutils.txt │ ├── license-github.com-Masterminds-semver-v3.txt │ ├── license-github.com-Masterminds-sprig-v3.txt │ ├── license-github.com-apache-skywalking-swck-operator.txt │ ├── license-github.com-beorn7-perks.txt │ ├── license-github.com-cespare-xxhash-v2.txt │ ├── license-github.com-cpuguy83-go-md2man-v2.txt │ ├── license-github.com-davecgh-go-spew.txt │ ├── license-github.com-emicklei-go-restful-v3.txt │ ├── license-github.com-evanphx-json-patch-v5.txt │ ├── license-github.com-evanphx-json-patch.txt │ ├── license-github.com-fsnotify-fsnotify.txt │ ├── license-github.com-fxamacker-cbor-v2.txt │ ├── license-github.com-ghodss-yaml.txt │ ├── license-github.com-gizak-termui-v3.txt │ ├── license-github.com-go-logr-logr.txt │ ├── license-github.com-go-openapi-jsonpointer.txt │ ├── license-github.com-go-openapi-jsonreference.txt │ ├── license-github.com-go-openapi-swag.txt │ ├── license-github.com-gogo-protobuf.txt │ ├── license-github.com-golang-groupcache.txt │ ├── license-github.com-golang-protobuf.txt │ ├── license-github.com-google-btree.txt │ ├── license-github.com-google-gnostic-models.txt │ ├── license-github.com-google-go-cmp.txt │ ├── license-github.com-google-gofuzz.txt │ ├── license-github.com-google-uuid.txt │ ├── license-github.com-googleapis-gnostic.txt │ ├── license-github.com-hashicorp-hcl.txt │ ├── license-github.com-huandu-xstrings.txt │ ├── license-github.com-imdario-mergo.txt │ ├── license-github.com-josharian-intern.txt │ ├── license-github.com-json-iterator-go.txt │ ├── license-github.com-machinebox-graphql.txt │ ├── license-github.com-magiconair-properties.txt │ ├── license-github.com-mailru-easyjson.txt │ ├── license-github.com-matryer-is.txt │ ├── license-github.com-mattn-go-runewidth.txt │ ├── license-github.com-matttproud-golang-protobuf-extensions.txt │ ├── license-github.com-mitchellh-copystructure.txt │ ├── license-github.com-mitchellh-go-wordwrap.txt │ ├── license-github.com-mitchellh-mapstructure.txt │ ├── license-github.com-mitchellh-reflectwalk.txt │ ├── license-github.com-modern-go-concurrent.txt │ ├── license-github.com-modern-go-reflect2.txt │ ├── license-github.com-mum4k-termdash.txt │ ├── license-github.com-munnerz-goautoneg.txt │ ├── license-github.com-nsf-termbox-go.txt │ ├── license-github.com-olekukonko-tablewriter.txt │ ├── license-github.com-pelletier-go-toml.txt │ ├── license-github.com-pkg-errors.txt │ ├── license-github.com-prometheus-client-golang.txt │ ├── license-github.com-prometheus-client-model.txt │ ├── license-github.com-prometheus-common.txt │ ├── license-github.com-prometheus-procfs.txt │ ├── license-github.com-russross-blackfriday-v2.txt │ ├── license-github.com-shopspring-decimal.txt │ ├── license-github.com-sirupsen-logrus.txt │ ├── license-github.com-spf13-afero.txt │ ├── license-github.com-spf13-cast.txt │ ├── license-github.com-spf13-jwalterweatherman.txt │ ├── license-github.com-spf13-pflag.txt │ ├── license-github.com-spf13-viper.txt │ ├── license-github.com-subosito-gotenv.txt │ ├── license-github.com-urfave-cli-v2.txt │ ├── license-github.com-x448-float16.txt │ ├── license-golang.org-x-crypto.txt │ ├── license-golang.org-x-net.txt │ ├── license-golang.org-x-oauth2.txt │ ├── license-golang.org-x-sync.txt │ ├── license-golang.org-x-sys.txt │ ├── license-golang.org-x-term.txt │ ├── license-golang.org-x-text.txt │ ├── license-golang.org-x-time.txt │ ├── license-gomodules.xyz-jsonpatch-v2.txt │ ├── license-google.golang.org-appengine.txt │ ├── license-google.golang.org-genproto-googleapis-rpc.txt │ ├── license-google.golang.org-genproto.txt │ ├── license-google.golang.org-grpc.txt │ ├── license-google.golang.org-protobuf.txt │ ├── license-gopkg.in-evanphx-json-patch.v4.txt │ ├── license-gopkg.in-inf.v0.txt │ ├── license-gopkg.in-ini.v1.txt │ ├── license-gopkg.in-yaml.v2.txt │ ├── license-gopkg.in-yaml.v3.txt │ ├── license-k8s.io-api.txt │ ├── license-k8s.io-apiextensions-apiserver.txt │ ├── license-k8s.io-apimachinery.txt │ ├── license-k8s.io-client-go.txt │ ├── license-k8s.io-component-base.txt │ ├── license-k8s.io-klog-v2.txt │ ├── license-k8s.io-kube-openapi.txt │ ├── license-k8s.io-utils.txt │ ├── license-sigs.k8s.io-controller-runtime.txt │ ├── license-sigs.k8s.io-json.txt │ ├── license-sigs.k8s.io-randfill.txt │ ├── license-sigs.k8s.io-structured-merge-diff-v4.txt │ ├── license-sigs.k8s.io-yaml.txt │ └── license-skywalking.apache.org-repo-goapi.txt ├── docs └── How-to-release.md ├── examples ├── .skywalking.yaml ├── assets.go ├── continuous-profiling.yaml ├── global.yml └── network-sampling.yaml ├── go.mod ├── go.sum ├── internal ├── commands │ ├── alarm │ │ ├── alarm.go │ │ ├── autopleteKeys.go │ │ ├── autopleteValues.go │ │ └── list.go │ ├── browser │ │ ├── browser.go │ │ ├── logs │ │ │ ├── list.go │ │ │ └── log.go │ │ ├── page │ │ │ ├── list.go │ │ │ └── page.go │ │ ├── service │ │ │ ├── list.go │ │ │ └── service.go │ │ └── version │ │ │ ├── list.go │ │ │ └── version.go │ ├── completion │ │ ├── bash.go │ │ ├── completion.go │ │ ├── fish.go │ │ ├── powershell.go │ │ └── zsh.go │ ├── dashboard │ │ ├── dashboard.go │ │ └── global │ │ │ ├── global.go │ │ │ └── metrics.go │ ├── dependency │ │ ├── dependency.go │ │ ├── endpoint.go │ │ ├── global.go │ │ ├── instance.go │ │ ├── process.go │ │ └── service.go │ ├── endpoint │ │ ├── endpoint.go │ │ ├── get.go │ │ └── list.go │ ├── event │ │ ├── event.go │ │ ├── list.go │ │ └── report.go │ ├── healthcheck │ │ └── healthcheck.go │ ├── hierarchy │ │ ├── hierarchy.go │ │ ├── instance.go │ │ ├── layers.go │ │ └── service.go │ ├── install │ │ ├── install.go │ │ └── manifest │ │ │ ├── manifest.go │ │ │ ├── oap.go │ │ │ └── ui.go │ ├── instance │ │ ├── get.go │ │ ├── instance.go │ │ ├── list.go │ │ └── search.go │ ├── interceptor │ │ ├── duration.go │ │ ├── duration_test.go │ │ ├── endpoint.go │ │ ├── entity.go │ │ ├── event.go │ │ ├── event_test.go │ │ ├── instance.go │ │ ├── interceptor.go │ │ ├── page.go │ │ ├── process.go │ │ ├── service.go │ │ ├── timezone.go │ │ └── version.go │ ├── layer │ │ ├── layer.go │ │ └── list.go │ ├── logs │ │ ├── list.go │ │ └── log.go │ ├── menu │ │ ├── get.go │ │ └── menu.go │ ├── metrics │ │ ├── aggregation │ │ │ ├── metrics.go │ │ │ ├── sampled-record.go │ │ │ ├── sorted-condition.go │ │ │ └── topn.go │ │ ├── expression │ │ │ └── exec.go │ │ ├── linear │ │ │ ├── linear-metrics.go │ │ │ └── multiple-linear-metrics.go │ │ ├── list │ │ │ └── list-metrics.go │ │ ├── metrics.go │ │ ├── single │ │ │ ├── nullable-metrics.go │ │ │ └── single-metrics.go │ │ └── thermodynamic │ │ │ └── thermodynamic.go │ ├── process │ │ ├── estimate │ │ │ ├── estimate.go │ │ │ └── scale.go │ │ ├── get.go │ │ ├── list.go │ │ └── process.go │ ├── profiling │ │ ├── asyncprofiler │ │ │ ├── asyncprofiler.go │ │ │ ├── create.go │ │ │ ├── getAnalyze.go │ │ │ ├── getTaskList.go │ │ │ └── getTaskProgress.go │ │ ├── continuous │ │ │ ├── continuous.go │ │ │ ├── list.go │ │ │ ├── monitoring.go │ │ │ └── set.go │ │ ├── ebpf │ │ │ ├── analysis.go │ │ │ ├── create │ │ │ │ ├── create.go │ │ │ │ ├── createByFixedTime.go │ │ │ │ ├── network.go │ │ │ │ └── prepareCreate.go │ │ │ ├── ebpf.go │ │ │ ├── keep │ │ │ │ ├── keep.go │ │ │ │ └── network.go │ │ │ ├── list.go │ │ │ └── schedules.go │ │ ├── pprof │ │ │ ├── create.go │ │ │ ├── getAnalyze.go │ │ │ ├── getTaskList.go │ │ │ ├── getTaskProgress.go │ │ │ └── pprof.go │ │ ├── profiling.go │ │ └── trace │ │ │ ├── create.go │ │ │ ├── getProfileAnalyze.go │ │ │ ├── getTaskList.go │ │ │ ├── getTaskLogs.go │ │ │ ├── getTaskSegmentList.go │ │ │ └── trace.go │ ├── records │ │ ├── list.go │ │ └── records.go │ ├── service │ │ ├── layer.go │ │ ├── list.go │ │ └── service.go │ ├── trace │ │ ├── list.go │ │ └── trace.go │ └── tracev2 │ │ ├── list.go │ │ └── tracev2.go ├── display │ └── display.go ├── flags │ ├── duration.go │ ├── endpoint.go │ ├── flags.go │ ├── instance.go │ ├── metrics.go │ ├── page.go │ ├── process.go │ ├── search.go │ ├── service.go │ └── version.go ├── model │ ├── asyncprofiler │ │ ├── asyncProfilerEventType.go │ │ └── jfrEventType.go │ ├── ebpf │ │ ├── profilingAnalyzeAggregateType.go │ │ ├── profilingTargetType.go │ │ └── profilingTriggerType.go │ ├── order.go │ ├── pprof │ │ └── pprofEventType.go │ ├── scope.go │ ├── step.go │ └── type.go └── util │ ├── commandNotFound.go │ └── commandNotFound_test.go ├── pkg ├── contextkey │ └── contextkey.go ├── display │ ├── display.go │ ├── displayable │ │ ├── MetricValue.go │ │ └── displayable.go │ ├── graph │ │ ├── dashboard │ │ │ └── global.go │ │ ├── flamegraph │ │ │ ├── adapter.go │ │ │ ├── flamegraph.go │ │ │ ├── flamegraph.html │ │ │ └── render.go │ │ ├── gauge │ │ │ └── gauge.go │ │ ├── graph.go │ │ ├── heatmap │ │ │ └── heatmap.go │ │ ├── linear │ │ │ └── linear.go │ │ └── tree │ │ │ ├── adapter.go │ │ │ ├── list.go │ │ │ └── tree.go │ ├── json │ │ ├── json.go │ │ └── json_test.go │ ├── table │ │ ├── table.go │ │ └── table_test.go │ └── yaml │ │ ├── yaml.go │ │ └── yaml_test.go ├── graphql │ ├── alarm │ │ └── alarm.go │ ├── client │ │ └── client.go │ ├── common │ │ └── common.go │ ├── dashboard │ │ └── global.go │ ├── dependency │ │ └── dependency.go │ ├── event │ │ └── event.go │ ├── healthcheck │ │ └── healthcheck.go │ ├── hierarchy │ │ └── hierarchy.go │ ├── log │ │ └── log.go │ ├── menu │ │ └── menu.go │ ├── metadata │ │ └── metadata.go │ ├── metrics │ │ └── metrics.go │ ├── profiling │ │ ├── asyncprofiler.go │ │ ├── continuous.go │ │ ├── ebpf.go │ │ ├── pprof.go │ │ └── trace.go │ ├── trace │ │ └── trace.go │ ├── tracev2 │ │ └── trace.go │ └── utils │ │ ├── adapter.go │ │ ├── adapter_test.go │ │ ├── constants.go │ │ ├── parser.go │ │ └── parser_test.go ├── grpc │ └── grpc.go ├── healthcheck │ └── grpc.go ├── heatmap │ ├── axes │ │ ├── axes.go │ │ └── label.go │ ├── heatmap.go │ └── options.go ├── logger │ └── log.go └── util │ ├── io.go │ ├── lang.go │ ├── math.go │ └── template.go ├── scripts ├── boilerplate.go.txt ├── build-header.sh ├── install.bat ├── install.sh ├── install_protoc.sh ├── pre-release.sh └── release.sh └── test ├── base ├── docker-compose.yml └── services │ ├── consumer.py │ └── provider.py └── cases └── basic ├── docker-compose.yml ├── expected ├── dashboard-global-metrics.yml ├── dashboard-global.yml ├── dependency-endpoint.yml ├── dependency-instance.yml ├── dependency-service.yml ├── empty-array.yml ├── endpoint-get.yml ├── endpoint-list.yml ├── instance-get.yml ├── instance-list.yml ├── layer-list.yml ├── metrics-has-value.yml ├── metrics-top-endpoint-sla-provider.yml ├── metrics-top-service-sla.yml ├── service-endpoint.yml ├── service-provider.yml ├── service.yml ├── trace-users-detail.yml ├── traces-list.yml └── value.yml └── test.yaml /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.github/file-filters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/.github/file-filters.txt -------------------------------------------------------------------------------- /.github/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/.github/scripts/entrypoint.sh -------------------------------------------------------------------------------- /.github/scripts/post-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/.github/scripts/post-entrypoint.sh -------------------------------------------------------------------------------- /.github/workflows/CI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/.github/workflows/CI.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/.github/workflows/publish-docker.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | bin 4 | coverage.txt 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.graphqlconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/.graphqlconfig -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/action.yaml -------------------------------------------------------------------------------- /actions/setup/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/actions/setup/action.yaml -------------------------------------------------------------------------------- /assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/assets.go -------------------------------------------------------------------------------- /assets/assets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/assets_test.go -------------------------------------------------------------------------------- /assets/cr/oap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/cr/oap.yaml -------------------------------------------------------------------------------- /assets/cr/ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/cr/ui.yaml -------------------------------------------------------------------------------- /assets/graphqls/alarm/alarms.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/alarm/alarms.graphql -------------------------------------------------------------------------------- /assets/graphqls/alarm/tagAutocompleteKeys.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/alarm/tagAutocompleteKeys.graphql -------------------------------------------------------------------------------- /assets/graphqls/alarm/tagAutocompleteValues.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/alarm/tagAutocompleteValues.graphql -------------------------------------------------------------------------------- /assets/graphqls/common/version.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/common/version.graphql -------------------------------------------------------------------------------- /assets/graphqls/dependency/EndpointDependency.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/dependency/EndpointDependency.graphql -------------------------------------------------------------------------------- /assets/graphqls/dependency/GlobalTopology.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/dependency/GlobalTopology.graphql -------------------------------------------------------------------------------- /assets/graphqls/dependency/GlobalTopologyWithoutLayer.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/dependency/GlobalTopologyWithoutLayer.graphql -------------------------------------------------------------------------------- /assets/graphqls/dependency/InstanceTopology.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/dependency/InstanceTopology.graphql -------------------------------------------------------------------------------- /assets/graphqls/dependency/ProcessTopology.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/dependency/ProcessTopology.graphql -------------------------------------------------------------------------------- /assets/graphqls/dependency/ServiceTopology.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/dependency/ServiceTopology.graphql -------------------------------------------------------------------------------- /assets/graphqls/event/events.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/event/events.graphql -------------------------------------------------------------------------------- /assets/graphqls/healthcheck/healthcheck.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/healthcheck/healthcheck.graphql -------------------------------------------------------------------------------- /assets/graphqls/hierarchy/InstanceHierarchy.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/hierarchy/InstanceHierarchy.graphql -------------------------------------------------------------------------------- /assets/graphqls/hierarchy/ListLayerLevels.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/hierarchy/ListLayerLevels.graphql -------------------------------------------------------------------------------- /assets/graphqls/hierarchy/ServiceHierarchy.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/hierarchy/ServiceHierarchy.graphql -------------------------------------------------------------------------------- /assets/graphqls/logs/BrowserLogs.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/logs/BrowserLogs.graphql -------------------------------------------------------------------------------- /assets/graphqls/logs/Logs.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/logs/Logs.graphql -------------------------------------------------------------------------------- /assets/graphqls/menu/GetItems.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/menu/GetItems.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v1/AllBrowserServices.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v1/AllBrowserServices.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v1/AllServices.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v1/AllServices.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v1/Instances.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v1/Instances.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v1/SearchBrowserService.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v1/SearchBrowserService.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v1/SearchEndpoints.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v1/SearchEndpoints.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v1/SearchService.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v1/SearchService.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v1/ServerTimeInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v1/ServerTimeInfo.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/AllBrowserServices.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/AllBrowserServices.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/AllServices.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/AllServices.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/EstimateProcessScale.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/EstimateProcessScale.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/FindEndpointsWithDuration.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/FindEndpointsWithDuration.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/FindEndpointsWithoutDuration.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/FindEndpointsWithoutDuration.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/FindService.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/FindService.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/GetEndpointInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/GetEndpointInfo.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/GetInstance.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/GetInstance.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/GetProcess.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/GetProcess.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/Instances.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/Instances.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/ListLayers.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/ListLayers.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/ListService.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/ListService.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/Processes.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/Processes.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/SearchBrowserService.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/SearchBrowserService.graphql -------------------------------------------------------------------------------- /assets/graphqls/metadata/v2/ServerTimeInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metadata/v2/ServerTimeInfo.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/ExecuteExpression.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/ExecuteExpression.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/HeatMap.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/HeatMap.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/LabeledMetricsValues.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/LabeledMetricsValues.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/ListMetrics.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/ListMetrics.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/MetricsValue.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/MetricsValue.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/MetricsValues.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/MetricsValues.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/NullableMetricsValue.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/NullableMetricsValue.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/ReadRecords.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/ReadRecords.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/SampledRecords.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/SampledRecords.graphql -------------------------------------------------------------------------------- /assets/graphqls/metrics/SortMetrics.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/metrics/SortMetrics.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/asyncprofiler/CreateTask.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/asyncprofiler/CreateTask.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/asyncprofiler/GetAnalysis.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/asyncprofiler/GetAnalysis.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/asyncprofiler/GetTaskList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/asyncprofiler/GetTaskList.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/asyncprofiler/GetTaskProgress.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/asyncprofiler/GetTaskProgress.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/continuous/QueryContinuousProfilingMonitoringInstances.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/continuous/QueryContinuousProfilingMonitoringInstances.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/continuous/QueryContinuousProfilingServiceTargets.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/continuous/QueryContinuousProfilingServiceTargets.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/continuous/SetContinuousProfilingPolicy.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/continuous/SetContinuousProfilingPolicy.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/ebpf/AnalysisEBPFProfilingResult.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/ebpf/AnalysisEBPFProfilingResult.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/ebpf/CreateEBPFNetworkProfilingTask.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/ebpf/CreateEBPFNetworkProfilingTask.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/ebpf/CreateEBPFProfilingFixedTimeTask.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/ebpf/CreateEBPFProfilingFixedTimeTask.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/ebpf/KeepNetworkProfilingTask.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/ebpf/KeepNetworkProfilingTask.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/ebpf/QueryEBPFProfilingScheduleList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/ebpf/QueryEBPFProfilingScheduleList.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/ebpf/QueryEBPFProfilingTaskList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/ebpf/QueryEBPFProfilingTaskList.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/ebpf/QueryPrepareCreateEBPFProfilingTaskData.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/ebpf/QueryPrepareCreateEBPFProfilingTaskData.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/pprof/CreateTask.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/pprof/CreateTask.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/pprof/GetAnalysis.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/pprof/GetAnalysis.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/pprof/GetTaskList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/pprof/GetTaskList.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/pprof/GetTaskProgress.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/pprof/GetTaskProgress.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/trace/CreateTask.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/trace/CreateTask.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/trace/GetProfileTaskLogs.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/trace/GetProfileTaskLogs.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/trace/GetProfiledSegment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/trace/GetProfiledSegment.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/trace/GetSegmentsProfileAnalyze.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/trace/GetSegmentsProfileAnalyze.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/trace/GetTaskList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/trace/GetTaskList.graphql -------------------------------------------------------------------------------- /assets/graphqls/profiling/trace/GetTaskSegmentsList.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/profiling/trace/GetTaskSegmentsList.graphql -------------------------------------------------------------------------------- /assets/graphqls/trace/Trace.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/trace/Trace.graphql -------------------------------------------------------------------------------- /assets/graphqls/trace/TraceWithoutDuration.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/trace/TraceWithoutDuration.graphql -------------------------------------------------------------------------------- /assets/graphqls/trace/Traces.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/trace/Traces.graphql -------------------------------------------------------------------------------- /assets/graphqls/tracev2/Traces.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/graphqls/tracev2/Traces.graphql -------------------------------------------------------------------------------- /assets/templates/dashboard/global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/assets/templates/dashboard/global.yml -------------------------------------------------------------------------------- /cmd/swctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/cmd/swctl/main.go -------------------------------------------------------------------------------- /dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/LICENSE -------------------------------------------------------------------------------- /dist/LICENSE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/LICENSE.tpl -------------------------------------------------------------------------------- /dist/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/NOTICE -------------------------------------------------------------------------------- /dist/licenses/license-dario.cat-mergo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-dario.cat-mergo.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-BurntSushi-toml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-BurntSushi-toml.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-Masterminds-goutils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-Masterminds-goutils.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-Masterminds-semver-v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-Masterminds-semver-v3.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-Masterminds-sprig-v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-Masterminds-sprig-v3.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-apache-skywalking-swck-operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-apache-skywalking-swck-operator.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-beorn7-perks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-beorn7-perks.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-cespare-xxhash-v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-cespare-xxhash-v2.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-cpuguy83-go-md2man-v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-cpuguy83-go-md2man-v2.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-davecgh-go-spew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-davecgh-go-spew.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-emicklei-go-restful-v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-emicklei-go-restful-v3.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-evanphx-json-patch-v5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-evanphx-json-patch-v5.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-evanphx-json-patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-evanphx-json-patch.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-fsnotify-fsnotify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-fsnotify-fsnotify.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-fxamacker-cbor-v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-fxamacker-cbor-v2.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-ghodss-yaml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-ghodss-yaml.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-gizak-termui-v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-gizak-termui-v3.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-go-logr-logr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-go-logr-logr.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-go-openapi-jsonpointer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-go-openapi-jsonpointer.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-go-openapi-jsonreference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-go-openapi-jsonreference.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-go-openapi-swag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-go-openapi-swag.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-gogo-protobuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-gogo-protobuf.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-golang-groupcache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-golang-groupcache.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-golang-protobuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-golang-protobuf.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-google-btree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-google-btree.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-google-gnostic-models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-google-gnostic-models.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-google-go-cmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-google-go-cmp.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-google-gofuzz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-google-gofuzz.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-google-uuid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-google-uuid.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-googleapis-gnostic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-googleapis-gnostic.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-hashicorp-hcl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-hashicorp-hcl.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-huandu-xstrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-huandu-xstrings.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-imdario-mergo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-imdario-mergo.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-josharian-intern.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-josharian-intern.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-json-iterator-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-json-iterator-go.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-machinebox-graphql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-machinebox-graphql.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-magiconair-properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-magiconair-properties.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-mailru-easyjson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-mailru-easyjson.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-matryer-is.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-matryer-is.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-mattn-go-runewidth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-mattn-go-runewidth.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-matttproud-golang-protobuf-extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-matttproud-golang-protobuf-extensions.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-mitchellh-copystructure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-mitchellh-copystructure.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-mitchellh-go-wordwrap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-mitchellh-go-wordwrap.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-mitchellh-mapstructure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-mitchellh-mapstructure.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-mitchellh-reflectwalk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-mitchellh-reflectwalk.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-modern-go-concurrent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-modern-go-concurrent.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-modern-go-reflect2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-modern-go-reflect2.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-mum4k-termdash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-mum4k-termdash.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-munnerz-goautoneg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-munnerz-goautoneg.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-nsf-termbox-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-nsf-termbox-go.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-olekukonko-tablewriter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-olekukonko-tablewriter.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-pelletier-go-toml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-pelletier-go-toml.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-pkg-errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-pkg-errors.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-prometheus-client-golang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-prometheus-client-golang.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-prometheus-client-model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-prometheus-client-model.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-prometheus-common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-prometheus-common.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-prometheus-procfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-prometheus-procfs.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-russross-blackfriday-v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-russross-blackfriday-v2.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-shopspring-decimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-shopspring-decimal.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-sirupsen-logrus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-sirupsen-logrus.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-spf13-afero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-spf13-afero.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-spf13-cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-spf13-cast.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-spf13-jwalterweatherman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-spf13-jwalterweatherman.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-spf13-pflag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-spf13-pflag.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-spf13-viper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-spf13-viper.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-subosito-gotenv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-subosito-gotenv.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-urfave-cli-v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-urfave-cli-v2.txt -------------------------------------------------------------------------------- /dist/licenses/license-github.com-x448-float16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-github.com-x448-float16.txt -------------------------------------------------------------------------------- /dist/licenses/license-golang.org-x-crypto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-golang.org-x-crypto.txt -------------------------------------------------------------------------------- /dist/licenses/license-golang.org-x-net.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-golang.org-x-net.txt -------------------------------------------------------------------------------- /dist/licenses/license-golang.org-x-oauth2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-golang.org-x-oauth2.txt -------------------------------------------------------------------------------- /dist/licenses/license-golang.org-x-sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-golang.org-x-sync.txt -------------------------------------------------------------------------------- /dist/licenses/license-golang.org-x-sys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-golang.org-x-sys.txt -------------------------------------------------------------------------------- /dist/licenses/license-golang.org-x-term.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-golang.org-x-term.txt -------------------------------------------------------------------------------- /dist/licenses/license-golang.org-x-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-golang.org-x-text.txt -------------------------------------------------------------------------------- /dist/licenses/license-golang.org-x-time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-golang.org-x-time.txt -------------------------------------------------------------------------------- /dist/licenses/license-gomodules.xyz-jsonpatch-v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-gomodules.xyz-jsonpatch-v2.txt -------------------------------------------------------------------------------- /dist/licenses/license-google.golang.org-appengine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-google.golang.org-appengine.txt -------------------------------------------------------------------------------- /dist/licenses/license-google.golang.org-genproto-googleapis-rpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-google.golang.org-genproto-googleapis-rpc.txt -------------------------------------------------------------------------------- /dist/licenses/license-google.golang.org-genproto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-google.golang.org-genproto.txt -------------------------------------------------------------------------------- /dist/licenses/license-google.golang.org-grpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-google.golang.org-grpc.txt -------------------------------------------------------------------------------- /dist/licenses/license-google.golang.org-protobuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-google.golang.org-protobuf.txt -------------------------------------------------------------------------------- /dist/licenses/license-gopkg.in-evanphx-json-patch.v4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-gopkg.in-evanphx-json-patch.v4.txt -------------------------------------------------------------------------------- /dist/licenses/license-gopkg.in-inf.v0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-gopkg.in-inf.v0.txt -------------------------------------------------------------------------------- /dist/licenses/license-gopkg.in-ini.v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-gopkg.in-ini.v1.txt -------------------------------------------------------------------------------- /dist/licenses/license-gopkg.in-yaml.v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-gopkg.in-yaml.v2.txt -------------------------------------------------------------------------------- /dist/licenses/license-gopkg.in-yaml.v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-gopkg.in-yaml.v3.txt -------------------------------------------------------------------------------- /dist/licenses/license-k8s.io-api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-k8s.io-api.txt -------------------------------------------------------------------------------- /dist/licenses/license-k8s.io-apiextensions-apiserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-k8s.io-apiextensions-apiserver.txt -------------------------------------------------------------------------------- /dist/licenses/license-k8s.io-apimachinery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-k8s.io-apimachinery.txt -------------------------------------------------------------------------------- /dist/licenses/license-k8s.io-client-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-k8s.io-client-go.txt -------------------------------------------------------------------------------- /dist/licenses/license-k8s.io-component-base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-k8s.io-component-base.txt -------------------------------------------------------------------------------- /dist/licenses/license-k8s.io-klog-v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-k8s.io-klog-v2.txt -------------------------------------------------------------------------------- /dist/licenses/license-k8s.io-kube-openapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-k8s.io-kube-openapi.txt -------------------------------------------------------------------------------- /dist/licenses/license-k8s.io-utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-k8s.io-utils.txt -------------------------------------------------------------------------------- /dist/licenses/license-sigs.k8s.io-controller-runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-sigs.k8s.io-controller-runtime.txt -------------------------------------------------------------------------------- /dist/licenses/license-sigs.k8s.io-json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-sigs.k8s.io-json.txt -------------------------------------------------------------------------------- /dist/licenses/license-sigs.k8s.io-randfill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-sigs.k8s.io-randfill.txt -------------------------------------------------------------------------------- /dist/licenses/license-sigs.k8s.io-structured-merge-diff-v4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-sigs.k8s.io-structured-merge-diff-v4.txt -------------------------------------------------------------------------------- /dist/licenses/license-sigs.k8s.io-yaml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-sigs.k8s.io-yaml.txt -------------------------------------------------------------------------------- /dist/licenses/license-skywalking.apache.org-repo-goapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/dist/licenses/license-skywalking.apache.org-repo-goapi.txt -------------------------------------------------------------------------------- /docs/How-to-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/docs/How-to-release.md -------------------------------------------------------------------------------- /examples/.skywalking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/examples/.skywalking.yaml -------------------------------------------------------------------------------- /examples/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/examples/assets.go -------------------------------------------------------------------------------- /examples/continuous-profiling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/examples/continuous-profiling.yaml -------------------------------------------------------------------------------- /examples/global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/examples/global.yml -------------------------------------------------------------------------------- /examples/network-sampling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/examples/network-sampling.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/go.sum -------------------------------------------------------------------------------- /internal/commands/alarm/alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/alarm/alarm.go -------------------------------------------------------------------------------- /internal/commands/alarm/autopleteKeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/alarm/autopleteKeys.go -------------------------------------------------------------------------------- /internal/commands/alarm/autopleteValues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/alarm/autopleteValues.go -------------------------------------------------------------------------------- /internal/commands/alarm/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/alarm/list.go -------------------------------------------------------------------------------- /internal/commands/browser/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/browser/browser.go -------------------------------------------------------------------------------- /internal/commands/browser/logs/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/browser/logs/list.go -------------------------------------------------------------------------------- /internal/commands/browser/logs/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/browser/logs/log.go -------------------------------------------------------------------------------- /internal/commands/browser/page/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/browser/page/list.go -------------------------------------------------------------------------------- /internal/commands/browser/page/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/browser/page/page.go -------------------------------------------------------------------------------- /internal/commands/browser/service/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/browser/service/list.go -------------------------------------------------------------------------------- /internal/commands/browser/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/browser/service/service.go -------------------------------------------------------------------------------- /internal/commands/browser/version/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/browser/version/list.go -------------------------------------------------------------------------------- /internal/commands/browser/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/browser/version/version.go -------------------------------------------------------------------------------- /internal/commands/completion/bash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/completion/bash.go -------------------------------------------------------------------------------- /internal/commands/completion/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/completion/completion.go -------------------------------------------------------------------------------- /internal/commands/completion/fish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/completion/fish.go -------------------------------------------------------------------------------- /internal/commands/completion/powershell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/completion/powershell.go -------------------------------------------------------------------------------- /internal/commands/completion/zsh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/completion/zsh.go -------------------------------------------------------------------------------- /internal/commands/dashboard/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/dashboard/dashboard.go -------------------------------------------------------------------------------- /internal/commands/dashboard/global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/dashboard/global/global.go -------------------------------------------------------------------------------- /internal/commands/dashboard/global/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/dashboard/global/metrics.go -------------------------------------------------------------------------------- /internal/commands/dependency/dependency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/dependency/dependency.go -------------------------------------------------------------------------------- /internal/commands/dependency/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/dependency/endpoint.go -------------------------------------------------------------------------------- /internal/commands/dependency/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/dependency/global.go -------------------------------------------------------------------------------- /internal/commands/dependency/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/dependency/instance.go -------------------------------------------------------------------------------- /internal/commands/dependency/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/dependency/process.go -------------------------------------------------------------------------------- /internal/commands/dependency/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/dependency/service.go -------------------------------------------------------------------------------- /internal/commands/endpoint/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/endpoint/endpoint.go -------------------------------------------------------------------------------- /internal/commands/endpoint/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/endpoint/get.go -------------------------------------------------------------------------------- /internal/commands/endpoint/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/endpoint/list.go -------------------------------------------------------------------------------- /internal/commands/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/event/event.go -------------------------------------------------------------------------------- /internal/commands/event/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/event/list.go -------------------------------------------------------------------------------- /internal/commands/event/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/event/report.go -------------------------------------------------------------------------------- /internal/commands/healthcheck/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/healthcheck/healthcheck.go -------------------------------------------------------------------------------- /internal/commands/hierarchy/hierarchy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/hierarchy/hierarchy.go -------------------------------------------------------------------------------- /internal/commands/hierarchy/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/hierarchy/instance.go -------------------------------------------------------------------------------- /internal/commands/hierarchy/layers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/hierarchy/layers.go -------------------------------------------------------------------------------- /internal/commands/hierarchy/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/hierarchy/service.go -------------------------------------------------------------------------------- /internal/commands/install/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/install/install.go -------------------------------------------------------------------------------- /internal/commands/install/manifest/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/install/manifest/manifest.go -------------------------------------------------------------------------------- /internal/commands/install/manifest/oap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/install/manifest/oap.go -------------------------------------------------------------------------------- /internal/commands/install/manifest/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/install/manifest/ui.go -------------------------------------------------------------------------------- /internal/commands/instance/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/instance/get.go -------------------------------------------------------------------------------- /internal/commands/instance/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/instance/instance.go -------------------------------------------------------------------------------- /internal/commands/instance/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/instance/list.go -------------------------------------------------------------------------------- /internal/commands/instance/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/instance/search.go -------------------------------------------------------------------------------- /internal/commands/interceptor/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/duration.go -------------------------------------------------------------------------------- /internal/commands/interceptor/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/duration_test.go -------------------------------------------------------------------------------- /internal/commands/interceptor/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/endpoint.go -------------------------------------------------------------------------------- /internal/commands/interceptor/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/entity.go -------------------------------------------------------------------------------- /internal/commands/interceptor/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/event.go -------------------------------------------------------------------------------- /internal/commands/interceptor/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/event_test.go -------------------------------------------------------------------------------- /internal/commands/interceptor/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/instance.go -------------------------------------------------------------------------------- /internal/commands/interceptor/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/interceptor.go -------------------------------------------------------------------------------- /internal/commands/interceptor/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/page.go -------------------------------------------------------------------------------- /internal/commands/interceptor/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/process.go -------------------------------------------------------------------------------- /internal/commands/interceptor/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/service.go -------------------------------------------------------------------------------- /internal/commands/interceptor/timezone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/timezone.go -------------------------------------------------------------------------------- /internal/commands/interceptor/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/interceptor/version.go -------------------------------------------------------------------------------- /internal/commands/layer/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/layer/layer.go -------------------------------------------------------------------------------- /internal/commands/layer/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/layer/list.go -------------------------------------------------------------------------------- /internal/commands/logs/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/logs/list.go -------------------------------------------------------------------------------- /internal/commands/logs/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/logs/log.go -------------------------------------------------------------------------------- /internal/commands/menu/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/menu/get.go -------------------------------------------------------------------------------- /internal/commands/menu/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/menu/menu.go -------------------------------------------------------------------------------- /internal/commands/metrics/aggregation/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/aggregation/metrics.go -------------------------------------------------------------------------------- /internal/commands/metrics/aggregation/sampled-record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/aggregation/sampled-record.go -------------------------------------------------------------------------------- /internal/commands/metrics/aggregation/sorted-condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/aggregation/sorted-condition.go -------------------------------------------------------------------------------- /internal/commands/metrics/aggregation/topn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/aggregation/topn.go -------------------------------------------------------------------------------- /internal/commands/metrics/expression/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/expression/exec.go -------------------------------------------------------------------------------- /internal/commands/metrics/linear/linear-metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/linear/linear-metrics.go -------------------------------------------------------------------------------- /internal/commands/metrics/linear/multiple-linear-metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/linear/multiple-linear-metrics.go -------------------------------------------------------------------------------- /internal/commands/metrics/list/list-metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/list/list-metrics.go -------------------------------------------------------------------------------- /internal/commands/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/metrics.go -------------------------------------------------------------------------------- /internal/commands/metrics/single/nullable-metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/single/nullable-metrics.go -------------------------------------------------------------------------------- /internal/commands/metrics/single/single-metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/single/single-metrics.go -------------------------------------------------------------------------------- /internal/commands/metrics/thermodynamic/thermodynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/metrics/thermodynamic/thermodynamic.go -------------------------------------------------------------------------------- /internal/commands/process/estimate/estimate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/process/estimate/estimate.go -------------------------------------------------------------------------------- /internal/commands/process/estimate/scale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/process/estimate/scale.go -------------------------------------------------------------------------------- /internal/commands/process/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/process/get.go -------------------------------------------------------------------------------- /internal/commands/process/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/process/list.go -------------------------------------------------------------------------------- /internal/commands/process/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/process/process.go -------------------------------------------------------------------------------- /internal/commands/profiling/asyncprofiler/asyncprofiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/asyncprofiler/asyncprofiler.go -------------------------------------------------------------------------------- /internal/commands/profiling/asyncprofiler/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/asyncprofiler/create.go -------------------------------------------------------------------------------- /internal/commands/profiling/asyncprofiler/getAnalyze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/asyncprofiler/getAnalyze.go -------------------------------------------------------------------------------- /internal/commands/profiling/asyncprofiler/getTaskList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/asyncprofiler/getTaskList.go -------------------------------------------------------------------------------- /internal/commands/profiling/asyncprofiler/getTaskProgress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/asyncprofiler/getTaskProgress.go -------------------------------------------------------------------------------- /internal/commands/profiling/continuous/continuous.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/continuous/continuous.go -------------------------------------------------------------------------------- /internal/commands/profiling/continuous/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/continuous/list.go -------------------------------------------------------------------------------- /internal/commands/profiling/continuous/monitoring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/continuous/monitoring.go -------------------------------------------------------------------------------- /internal/commands/profiling/continuous/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/continuous/set.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/analysis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/analysis.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/create/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/create/create.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/create/createByFixedTime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/create/createByFixedTime.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/create/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/create/network.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/create/prepareCreate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/create/prepareCreate.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/ebpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/ebpf.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/keep/keep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/keep/keep.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/keep/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/keep/network.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/list.go -------------------------------------------------------------------------------- /internal/commands/profiling/ebpf/schedules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/ebpf/schedules.go -------------------------------------------------------------------------------- /internal/commands/profiling/pprof/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/pprof/create.go -------------------------------------------------------------------------------- /internal/commands/profiling/pprof/getAnalyze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/pprof/getAnalyze.go -------------------------------------------------------------------------------- /internal/commands/profiling/pprof/getTaskList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/pprof/getTaskList.go -------------------------------------------------------------------------------- /internal/commands/profiling/pprof/getTaskProgress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/pprof/getTaskProgress.go -------------------------------------------------------------------------------- /internal/commands/profiling/pprof/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/pprof/pprof.go -------------------------------------------------------------------------------- /internal/commands/profiling/profiling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/profiling.go -------------------------------------------------------------------------------- /internal/commands/profiling/trace/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/trace/create.go -------------------------------------------------------------------------------- /internal/commands/profiling/trace/getProfileAnalyze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/trace/getProfileAnalyze.go -------------------------------------------------------------------------------- /internal/commands/profiling/trace/getTaskList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/trace/getTaskList.go -------------------------------------------------------------------------------- /internal/commands/profiling/trace/getTaskLogs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/trace/getTaskLogs.go -------------------------------------------------------------------------------- /internal/commands/profiling/trace/getTaskSegmentList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/trace/getTaskSegmentList.go -------------------------------------------------------------------------------- /internal/commands/profiling/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/profiling/trace/trace.go -------------------------------------------------------------------------------- /internal/commands/records/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/records/list.go -------------------------------------------------------------------------------- /internal/commands/records/records.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/records/records.go -------------------------------------------------------------------------------- /internal/commands/service/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/service/layer.go -------------------------------------------------------------------------------- /internal/commands/service/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/service/list.go -------------------------------------------------------------------------------- /internal/commands/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/service/service.go -------------------------------------------------------------------------------- /internal/commands/trace/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/trace/list.go -------------------------------------------------------------------------------- /internal/commands/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/trace/trace.go -------------------------------------------------------------------------------- /internal/commands/tracev2/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/tracev2/list.go -------------------------------------------------------------------------------- /internal/commands/tracev2/tracev2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/commands/tracev2/tracev2.go -------------------------------------------------------------------------------- /internal/display/display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/display/display.go -------------------------------------------------------------------------------- /internal/flags/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/duration.go -------------------------------------------------------------------------------- /internal/flags/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/endpoint.go -------------------------------------------------------------------------------- /internal/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/flags.go -------------------------------------------------------------------------------- /internal/flags/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/instance.go -------------------------------------------------------------------------------- /internal/flags/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/metrics.go -------------------------------------------------------------------------------- /internal/flags/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/page.go -------------------------------------------------------------------------------- /internal/flags/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/process.go -------------------------------------------------------------------------------- /internal/flags/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/search.go -------------------------------------------------------------------------------- /internal/flags/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/service.go -------------------------------------------------------------------------------- /internal/flags/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/flags/version.go -------------------------------------------------------------------------------- /internal/model/asyncprofiler/asyncProfilerEventType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/asyncprofiler/asyncProfilerEventType.go -------------------------------------------------------------------------------- /internal/model/asyncprofiler/jfrEventType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/asyncprofiler/jfrEventType.go -------------------------------------------------------------------------------- /internal/model/ebpf/profilingAnalyzeAggregateType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/ebpf/profilingAnalyzeAggregateType.go -------------------------------------------------------------------------------- /internal/model/ebpf/profilingTargetType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/ebpf/profilingTargetType.go -------------------------------------------------------------------------------- /internal/model/ebpf/profilingTriggerType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/ebpf/profilingTriggerType.go -------------------------------------------------------------------------------- /internal/model/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/order.go -------------------------------------------------------------------------------- /internal/model/pprof/pprofEventType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/pprof/pprofEventType.go -------------------------------------------------------------------------------- /internal/model/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/scope.go -------------------------------------------------------------------------------- /internal/model/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/step.go -------------------------------------------------------------------------------- /internal/model/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/model/type.go -------------------------------------------------------------------------------- /internal/util/commandNotFound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/util/commandNotFound.go -------------------------------------------------------------------------------- /internal/util/commandNotFound_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/internal/util/commandNotFound_test.go -------------------------------------------------------------------------------- /pkg/contextkey/contextkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/contextkey/contextkey.go -------------------------------------------------------------------------------- /pkg/display/display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/display.go -------------------------------------------------------------------------------- /pkg/display/displayable/MetricValue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/displayable/MetricValue.go -------------------------------------------------------------------------------- /pkg/display/displayable/displayable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/displayable/displayable.go -------------------------------------------------------------------------------- /pkg/display/graph/dashboard/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/dashboard/global.go -------------------------------------------------------------------------------- /pkg/display/graph/flamegraph/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/flamegraph/adapter.go -------------------------------------------------------------------------------- /pkg/display/graph/flamegraph/flamegraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/flamegraph/flamegraph.go -------------------------------------------------------------------------------- /pkg/display/graph/flamegraph/flamegraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/flamegraph/flamegraph.html -------------------------------------------------------------------------------- /pkg/display/graph/flamegraph/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/flamegraph/render.go -------------------------------------------------------------------------------- /pkg/display/graph/gauge/gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/gauge/gauge.go -------------------------------------------------------------------------------- /pkg/display/graph/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/graph.go -------------------------------------------------------------------------------- /pkg/display/graph/heatmap/heatmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/heatmap/heatmap.go -------------------------------------------------------------------------------- /pkg/display/graph/linear/linear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/linear/linear.go -------------------------------------------------------------------------------- /pkg/display/graph/tree/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/tree/adapter.go -------------------------------------------------------------------------------- /pkg/display/graph/tree/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/tree/list.go -------------------------------------------------------------------------------- /pkg/display/graph/tree/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/graph/tree/tree.go -------------------------------------------------------------------------------- /pkg/display/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/json/json.go -------------------------------------------------------------------------------- /pkg/display/json/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/json/json_test.go -------------------------------------------------------------------------------- /pkg/display/table/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/table/table.go -------------------------------------------------------------------------------- /pkg/display/table/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/table/table_test.go -------------------------------------------------------------------------------- /pkg/display/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/yaml/yaml.go -------------------------------------------------------------------------------- /pkg/display/yaml/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/display/yaml/yaml_test.go -------------------------------------------------------------------------------- /pkg/graphql/alarm/alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/alarm/alarm.go -------------------------------------------------------------------------------- /pkg/graphql/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/client/client.go -------------------------------------------------------------------------------- /pkg/graphql/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/common/common.go -------------------------------------------------------------------------------- /pkg/graphql/dashboard/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/dashboard/global.go -------------------------------------------------------------------------------- /pkg/graphql/dependency/dependency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/dependency/dependency.go -------------------------------------------------------------------------------- /pkg/graphql/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/event/event.go -------------------------------------------------------------------------------- /pkg/graphql/healthcheck/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/healthcheck/healthcheck.go -------------------------------------------------------------------------------- /pkg/graphql/hierarchy/hierarchy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/hierarchy/hierarchy.go -------------------------------------------------------------------------------- /pkg/graphql/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/log/log.go -------------------------------------------------------------------------------- /pkg/graphql/menu/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/menu/menu.go -------------------------------------------------------------------------------- /pkg/graphql/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/metadata/metadata.go -------------------------------------------------------------------------------- /pkg/graphql/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/graphql/profiling/asyncprofiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/profiling/asyncprofiler.go -------------------------------------------------------------------------------- /pkg/graphql/profiling/continuous.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/profiling/continuous.go -------------------------------------------------------------------------------- /pkg/graphql/profiling/ebpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/profiling/ebpf.go -------------------------------------------------------------------------------- /pkg/graphql/profiling/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/profiling/pprof.go -------------------------------------------------------------------------------- /pkg/graphql/profiling/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/profiling/trace.go -------------------------------------------------------------------------------- /pkg/graphql/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/trace/trace.go -------------------------------------------------------------------------------- /pkg/graphql/tracev2/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/tracev2/trace.go -------------------------------------------------------------------------------- /pkg/graphql/utils/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/utils/adapter.go -------------------------------------------------------------------------------- /pkg/graphql/utils/adapter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/utils/adapter_test.go -------------------------------------------------------------------------------- /pkg/graphql/utils/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/utils/constants.go -------------------------------------------------------------------------------- /pkg/graphql/utils/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/utils/parser.go -------------------------------------------------------------------------------- /pkg/graphql/utils/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/graphql/utils/parser_test.go -------------------------------------------------------------------------------- /pkg/grpc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/grpc/grpc.go -------------------------------------------------------------------------------- /pkg/healthcheck/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/healthcheck/grpc.go -------------------------------------------------------------------------------- /pkg/heatmap/axes/axes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/heatmap/axes/axes.go -------------------------------------------------------------------------------- /pkg/heatmap/axes/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/heatmap/axes/label.go -------------------------------------------------------------------------------- /pkg/heatmap/heatmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/heatmap/heatmap.go -------------------------------------------------------------------------------- /pkg/heatmap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/heatmap/options.go -------------------------------------------------------------------------------- /pkg/logger/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/logger/log.go -------------------------------------------------------------------------------- /pkg/util/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/util/io.go -------------------------------------------------------------------------------- /pkg/util/lang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/util/lang.go -------------------------------------------------------------------------------- /pkg/util/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/util/math.go -------------------------------------------------------------------------------- /pkg/util/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/pkg/util/template.go -------------------------------------------------------------------------------- /scripts/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/scripts/boilerplate.go.txt -------------------------------------------------------------------------------- /scripts/build-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/scripts/build-header.sh -------------------------------------------------------------------------------- /scripts/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/scripts/install.bat -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/install_protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/scripts/install_protoc.sh -------------------------------------------------------------------------------- /scripts/pre-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/scripts/pre-release.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /test/base/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/base/docker-compose.yml -------------------------------------------------------------------------------- /test/base/services/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/base/services/consumer.py -------------------------------------------------------------------------------- /test/base/services/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/base/services/provider.py -------------------------------------------------------------------------------- /test/cases/basic/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/docker-compose.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/dashboard-global-metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/dashboard-global-metrics.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/dashboard-global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/dashboard-global.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/dependency-endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/dependency-endpoint.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/dependency-instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/dependency-instance.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/dependency-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/dependency-service.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/empty-array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/empty-array.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/endpoint-get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/endpoint-get.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/endpoint-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/endpoint-list.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/instance-get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/instance-get.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/instance-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/instance-list.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/layer-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/layer-list.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/metrics-has-value.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/metrics-has-value.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/metrics-top-endpoint-sla-provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/metrics-top-endpoint-sla-provider.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/metrics-top-service-sla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/metrics-top-service-sla.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/service-endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/service-endpoint.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/service-provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/service-provider.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/service.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/trace-users-detail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/trace-users-detail.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/traces-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/traces-list.yml -------------------------------------------------------------------------------- /test/cases/basic/expected/value.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/expected/value.yml -------------------------------------------------------------------------------- /test/cases/basic/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-cli/HEAD/test/cases/basic/test.yaml --------------------------------------------------------------------------------