├── .config ├── .cprc.json ├── .eslintrc ├── .prettierrc.js ├── Dockerfile ├── README.md ├── docker-compose-base.yaml ├── entrypoint.sh ├── jest-setup.js ├── jest.config.js ├── jest │ ├── mocks │ │ └── react-inlinesvg.tsx │ └── utils.js ├── supervisord │ └── supervisord.conf ├── tsconfig.json ├── types │ └── custom.d.ts └── webpack │ ├── BuildModeWebpackPlugin.ts │ ├── constants.ts │ ├── utils.ts │ └── webpack.config.ts ├── .cprc.json ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.yml ├── pull_request_template.md └── workflows │ ├── docs.yaml │ ├── pr-checks-backend.yml │ ├── pr-checks-frontend.yml │ ├── pr-checks-plugin.yml │ ├── pr-codeql-backend.yml │ ├── pr-codeql-frontend.yml │ ├── pr-merge.yml │ ├── pr-test-build.yaml │ └── release.yaml ├── .gitignore ├── .golangci.yml ├── .nvmrc ├── .prettierrc.js ├── .vscode └── launch.json ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── Magefile.go ├── Makefile ├── README.md ├── compose.yaml ├── docs └── assets │ ├── explore.webp │ └── provision_datasources.webp ├── eslint.config.mjs ├── go.mod ├── go.sum ├── jest-setup.js ├── jest.config.js ├── mise.toml ├── package.json ├── pkg ├── main.go ├── plugin │ ├── datasource.go │ ├── datasource_test.go │ ├── fields_query.go │ ├── query.go │ ├── query_test.go │ ├── response.go │ ├── response_test.go │ └── test-data │ │ ├── ANSI_chars │ │ ├── bug_with_empty_message_field │ │ ├── correct_response │ │ ├── different_labels │ │ ├── double_labels │ │ ├── empty │ │ ├── empty_stream │ │ ├── empty_stream_with_empty_msg_field │ │ ├── incorrect_response │ │ ├── incorrect_time │ │ ├── invalid_stream │ │ ├── large_msg_response_2MB │ │ ├── no_message_and_time_field_one_stream_is_empty │ │ ├── no_standard_fields │ │ ├── only_one_label │ │ ├── stats_empty │ │ ├── stats_empty_value_in_the_response │ │ ├── stats_incorrect_response │ │ ├── stats_nil_value_in_the_response │ │ ├── stats_range_response │ │ ├── stats_response │ │ ├── stats_response_milliseconds │ │ ├── stream_and_free_field │ │ ├── stream_fields_with_slashes_names │ │ ├── stream_fields_with_spaces_in_names │ │ ├── time_field_empty │ │ └── unicode_present └── utils │ ├── pointer.go │ ├── pointer_test.go │ ├── stream_fields_parser.go │ ├── stream_fields_parser_test.go │ ├── utils.go │ └── utils_test.go ├── plugincheck.yaml ├── provisioning ├── README.md └── datasources │ ├── .gitkeep │ └── datasources.yml ├── src ├── LogsQL │ ├── regExpOperator.test.ts │ ├── regExpOperator.ts │ └── statsPipeFunctions.ts ├── README.md ├── __mocks__ │ └── datasource.ts ├── _index.md ├── backendResultTransformer.test.ts ├── backendResultTransformer.ts ├── components │ ├── CompatibleAsyncSelect.tsx │ ├── CompatibleSelect.tsx │ ├── QueryEditor │ │ ├── EditorField.tsx │ │ ├── EditorHeader.tsx │ │ ├── EditorRow.tsx │ │ ├── QueryBuilder │ │ │ ├── QueryBuilder.tsx │ │ │ ├── QueryBuilderContainer.tsx │ │ │ ├── QueryEditorModeToggle.tsx │ │ │ ├── components │ │ │ │ ├── QueryBuilderAddFilter.tsx │ │ │ │ ├── QueryBuilderFilters │ │ │ │ │ └── QueryBuilderFieldFilter.tsx │ │ │ │ └── QueryBuilderOperators │ │ │ │ │ └── QueryBuilderSelectOperator.tsx │ │ │ └── utils │ │ │ │ ├── modifyFilterVisualQuery │ │ │ │ ├── deleteByIndexPath.test.ts │ │ │ │ ├── deleteByIndexPath.ts │ │ │ │ ├── updateByIndexPath.test.ts │ │ │ │ └── updateByIndexPath.ts │ │ │ │ ├── parseFromString.ts │ │ │ │ ├── parseToString.ts │ │ │ │ ├── parsing.test.ts │ │ │ │ └── parsing.ts │ │ ├── QueryCodeEditor.tsx │ │ ├── QueryEditor.tsx │ │ ├── QueryEditorByApp.tsx │ │ ├── QueryEditorForAlerting.tsx │ │ ├── QueryEditorHelp.tsx │ │ ├── QueryEditorOptions.tsx │ │ ├── QueryEditorOptionsGroup.tsx │ │ ├── QueryEditorVariableRegexpError.tsx │ │ ├── QueryField.tsx │ │ ├── VmuiLink.tsx │ │ ├── constants.ts │ │ ├── hooks │ │ │ └── useDefaultExploreGraph.ts │ │ └── state.ts │ ├── QueryEditorStatsWarn.tsx │ ├── VariableQueryEditor │ │ └── VariableQueryEditor.tsx │ └── monaco-query-field │ │ ├── MonacoQueryField.tsx │ │ ├── MonacoQueryFieldLazy.tsx │ │ ├── MonacoQueryFieldProps.ts │ │ └── MonacoQueryFieldWrapper.tsx ├── configuration │ ├── AlertingSettings.tsx │ ├── ConfigEditor.tsx │ ├── DebugSection.tsx │ ├── DerivedField.tsx │ ├── DerivedFields.tsx │ ├── HelpfulLinks.tsx │ ├── LimitSettings.tsx │ ├── LogLevelRules │ │ ├── LogLevelRulesEditor.tsx │ │ ├── const.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── LogsSettings.tsx │ ├── QuerySettings.tsx │ ├── TenantSettings.tsx │ └── utils.ts ├── constants.ts ├── datasource.test.ts ├── datasource.ts ├── getDerivedFields.ts ├── img │ ├── alerting.png │ ├── dashboard.png │ ├── datasource.png │ ├── derived_fields_cfg.png │ ├── derived_fields_explore.png │ ├── explore.png │ ├── logo.svg │ ├── multitenancy_configuration.png │ ├── panel_logs.png │ ├── panel_stat.png │ ├── panel_table.png │ ├── panel_table_transformation.png │ ├── panel_time_series.png │ └── trace_to_logs.png ├── languageUtils.ts ├── language_provider.ts ├── logsVolumeLegacy.ts ├── makeTableFrames.ts ├── modifyQuery.test.ts ├── modifyQuery.ts ├── module.ts ├── parsing.test.ts ├── parsing.ts ├── parsingUtils.test.ts ├── parsingUtils.ts ├── plugin.json ├── queryUtils.ts ├── regexUtils.ts ├── responseUtils.ts ├── store │ ├── constants.ts │ └── store.ts ├── types.ts ├── utils │ ├── replaceAllOptionInQuery.test.ts │ ├── replaceAllOptionInQuery.ts │ ├── timeUtils.test.ts │ └── timeUtils.ts └── variableSupport │ └── VariableSupport.ts ├── tsconfig.json ├── vendor ├── github.com │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── internal │ │ │ └── tz.go │ │ │ ├── lex.go │ │ │ ├── meta.go │ │ │ ├── parse.go │ │ │ ├── type_fields.go │ │ │ └── type_toml.go │ ├── VictoriaMetrics │ │ ├── metrics │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── counter.go │ │ │ ├── floatcounter.go │ │ │ ├── gauge.go │ │ │ ├── go_metrics.go │ │ │ ├── histogram.go │ │ │ ├── metrics.go │ │ │ ├── process_metrics_linux.go │ │ │ ├── process_metrics_other.go │ │ │ ├── process_metrics_windows.go │ │ │ ├── push.go │ │ │ ├── set.go │ │ │ ├── summary.go │ │ │ └── validator.go │ │ └── metricsql │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aggr.go │ │ │ ├── binary_op.go │ │ │ ├── binaryop │ │ │ └── funcs.go │ │ │ ├── doc.go │ │ │ ├── lexer.go │ │ │ ├── optimizer.go │ │ │ ├── parser.go │ │ │ ├── prettifier.go │ │ │ ├── regexp_cache.go │ │ │ ├── rollup.go │ │ │ ├── transform.go │ │ │ └── utils.go │ ├── apache │ │ └── arrow-go │ │ │ └── v18 │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── arrow │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── Makefile │ │ │ ├── array.go │ │ │ ├── array │ │ │ │ ├── array.go │ │ │ │ ├── binary.go │ │ │ │ ├── binarybuilder.go │ │ │ │ ├── boolean.go │ │ │ │ ├── booleanbuilder.go │ │ │ │ ├── bufferbuilder.go │ │ │ │ ├── bufferbuilder_byte.go │ │ │ │ ├── bufferbuilder_numeric.gen.go │ │ │ │ ├── bufferbuilder_numeric.gen.go.tmpl │ │ │ │ ├── builder.go │ │ │ │ ├── compare.go │ │ │ │ ├── concat.go │ │ │ │ ├── data.go │ │ │ │ ├── decimal.go │ │ │ │ ├── dictionary.go │ │ │ │ ├── diff.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoded.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_builder.go │ │ │ │ ├── fixed_size_list.go │ │ │ │ ├── fixedsize_binary.go │ │ │ │ ├── fixedsize_binarybuilder.go │ │ │ │ ├── float16.go │ │ │ │ ├── float16_builder.go │ │ │ │ ├── interval.go │ │ │ │ ├── json_reader.go │ │ │ │ ├── list.go │ │ │ │ ├── map.go │ │ │ │ ├── null.go │ │ │ │ ├── numeric.gen.go │ │ │ │ ├── numeric.gen.go.tmpl │ │ │ │ ├── numericbuilder.gen.go │ │ │ │ ├── numericbuilder.gen.go.tmpl │ │ │ │ ├── numericbuilder.gen_test.go.tmpl │ │ │ │ ├── record.go │ │ │ │ ├── string.go │ │ │ │ ├── struct.go │ │ │ │ ├── table.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── union.go │ │ │ │ └── util.go │ │ │ ├── arrio │ │ │ │ └── arrio.go │ │ │ ├── bitutil │ │ │ │ ├── Makefile │ │ │ │ ├── bitmap_ops.go │ │ │ │ ├── bitmap_ops_amd64.go │ │ │ │ ├── bitmap_ops_arm64.go │ │ │ │ ├── bitmap_ops_avx2_amd64.go │ │ │ │ ├── bitmap_ops_avx2_amd64.s │ │ │ │ ├── bitmap_ops_noasm.go │ │ │ │ ├── bitmap_ops_ppc64le.go │ │ │ │ ├── bitmap_ops_s390x.go │ │ │ │ ├── bitmap_ops_sse4_amd64.go │ │ │ │ ├── bitmap_ops_sse4_amd64.s │ │ │ │ ├── bitmaps.go │ │ │ │ ├── bitutil.go │ │ │ │ ├── bitutil_bytes.go │ │ │ │ ├── endian_default.go │ │ │ │ └── endian_s390x.go │ │ │ ├── compare.go │ │ │ ├── datatype.go │ │ │ ├── datatype_binary.go │ │ │ ├── datatype_encoded.go │ │ │ ├── datatype_extension.go │ │ │ ├── datatype_fixedwidth.go │ │ │ ├── datatype_nested.go │ │ │ ├── datatype_null.go │ │ │ ├── datatype_numeric.gen.go │ │ │ ├── datatype_numeric.gen.go.tmpl │ │ │ ├── datatype_numeric.gen.go.tmpldata │ │ │ ├── datatype_viewheader.go │ │ │ ├── datatype_viewheader_inline.go │ │ │ ├── datatype_viewheader_inline_go1.19.go │ │ │ ├── datatype_viewheader_inline_tinygo.go │ │ │ ├── decimal │ │ │ │ ├── decimal.go │ │ │ │ └── traits.go │ │ │ ├── decimal128 │ │ │ │ └── decimal128.go │ │ │ ├── decimal256 │ │ │ │ └── decimal256.go │ │ │ ├── doc.go │ │ │ ├── encoded │ │ │ │ └── ree_utils.go │ │ │ ├── endian │ │ │ │ ├── big.go │ │ │ │ ├── endian.go │ │ │ │ └── little.go │ │ │ ├── errors.go │ │ │ ├── float16 │ │ │ │ └── float16.go │ │ │ ├── internal │ │ │ │ ├── debug │ │ │ │ │ ├── assert_off.go │ │ │ │ │ ├── assert_on.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── log_off.go │ │ │ │ │ ├── log_on.go │ │ │ │ │ └── util.go │ │ │ │ ├── dictutils │ │ │ │ │ └── dict.go │ │ │ │ ├── flatbuf │ │ │ │ │ ├── Binary.go │ │ │ │ │ ├── BinaryView.go │ │ │ │ │ ├── Block.go │ │ │ │ │ ├── BodyCompression.go │ │ │ │ │ ├── BodyCompressionMethod.go │ │ │ │ │ ├── Bool.go │ │ │ │ │ ├── Buffer.go │ │ │ │ │ ├── CompressionType.go │ │ │ │ │ ├── Date.go │ │ │ │ │ ├── DateUnit.go │ │ │ │ │ ├── Decimal.go │ │ │ │ │ ├── DictionaryBatch.go │ │ │ │ │ ├── DictionaryEncoding.go │ │ │ │ │ ├── DictionaryKind.go │ │ │ │ │ ├── Duration.go │ │ │ │ │ ├── Endianness.go │ │ │ │ │ ├── Feature.go │ │ │ │ │ ├── Field.go │ │ │ │ │ ├── FieldNode.go │ │ │ │ │ ├── FixedSizeBinary.go │ │ │ │ │ ├── FixedSizeList.go │ │ │ │ │ ├── FloatingPoint.go │ │ │ │ │ ├── Footer.go │ │ │ │ │ ├── Int.go │ │ │ │ │ ├── Interval.go │ │ │ │ │ ├── IntervalUnit.go │ │ │ │ │ ├── KeyValue.go │ │ │ │ │ ├── LargeBinary.go │ │ │ │ │ ├── LargeList.go │ │ │ │ │ ├── LargeListView.go │ │ │ │ │ ├── LargeUtf8.go │ │ │ │ │ ├── List.go │ │ │ │ │ ├── ListView.go │ │ │ │ │ ├── Map.go │ │ │ │ │ ├── Message.go │ │ │ │ │ ├── MessageHeader.go │ │ │ │ │ ├── MetadataVersion.go │ │ │ │ │ ├── Null.go │ │ │ │ │ ├── Precision.go │ │ │ │ │ ├── RecordBatch.go │ │ │ │ │ ├── RunEndEncoded.go │ │ │ │ │ ├── RunLengthEncoded.go │ │ │ │ │ ├── Schema.go │ │ │ │ │ ├── SparseMatrixCompressedAxis.go │ │ │ │ │ ├── SparseMatrixIndexCSR.go │ │ │ │ │ ├── SparseMatrixIndexCSX.go │ │ │ │ │ ├── SparseTensor.go │ │ │ │ │ ├── SparseTensorIndex.go │ │ │ │ │ ├── SparseTensorIndexCOO.go │ │ │ │ │ ├── SparseTensorIndexCSF.go │ │ │ │ │ ├── Struct_.go │ │ │ │ │ ├── Tensor.go │ │ │ │ │ ├── TensorDim.go │ │ │ │ │ ├── Time.go │ │ │ │ │ ├── TimeUnit.go │ │ │ │ │ ├── Timestamp.go │ │ │ │ │ ├── Type.go │ │ │ │ │ ├── Union.go │ │ │ │ │ ├── UnionMode.go │ │ │ │ │ ├── Utf8.go │ │ │ │ │ └── Utf8View.go │ │ │ │ └── utils.go │ │ │ ├── ipc │ │ │ │ ├── compression.go │ │ │ │ ├── endian_swap.go │ │ │ │ ├── file_reader.go │ │ │ │ ├── file_writer.go │ │ │ │ ├── ipc.go │ │ │ │ ├── message.go │ │ │ │ ├── metadata.go │ │ │ │ ├── reader.go │ │ │ │ └── writer.go │ │ │ ├── memory │ │ │ │ ├── Makefile │ │ │ │ ├── allocator.go │ │ │ │ ├── buffer.go │ │ │ │ ├── cgo_allocator.go │ │ │ │ ├── cgo_allocator_defaults.go │ │ │ │ ├── cgo_allocator_logging.go │ │ │ │ ├── checked_allocator.go │ │ │ │ ├── default_allocator.go │ │ │ │ ├── default_mallocator.go │ │ │ │ ├── doc.go │ │ │ │ ├── go_allocator.go │ │ │ │ ├── internal │ │ │ │ │ └── cgoalloc │ │ │ │ │ │ ├── allocator.cc │ │ │ │ │ │ ├── allocator.go │ │ │ │ │ │ ├── allocator.h │ │ │ │ │ │ └── helpers.h │ │ │ │ ├── mallocator │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── mallocator.go │ │ │ │ │ └── mallocator_util.go │ │ │ │ ├── memory.go │ │ │ │ ├── memory_amd64.go │ │ │ │ ├── memory_arm64.go │ │ │ │ ├── memory_avx2_amd64.go │ │ │ │ ├── memory_avx2_amd64.s │ │ │ │ ├── memory_js_wasm.go │ │ │ │ ├── memory_neon_arm64.go │ │ │ │ ├── memory_neon_arm64.s │ │ │ │ ├── memory_noasm.go │ │ │ │ ├── memory_sse4_amd64.go │ │ │ │ ├── memory_sse4_amd64.s │ │ │ │ └── util.go │ │ │ ├── numeric.schema.json │ │ │ ├── numeric.tmpldata │ │ │ ├── record.go │ │ │ ├── schema.go │ │ │ ├── table.go │ │ │ ├── tools.go │ │ │ ├── type_string.go │ │ │ ├── type_traits.go │ │ │ ├── type_traits_boolean.go │ │ │ ├── type_traits_decimal128.go │ │ │ ├── type_traits_decimal256.go │ │ │ ├── type_traits_decimal32.go │ │ │ ├── type_traits_decimal64.go │ │ │ ├── type_traits_float16.go │ │ │ ├── type_traits_interval.go │ │ │ ├── type_traits_numeric.gen.go │ │ │ ├── type_traits_numeric.gen.go.tmpl │ │ │ ├── type_traits_numeric.gen_test.go.tmpl │ │ │ ├── type_traits_timestamp.go │ │ │ ├── type_traits_view.go │ │ │ └── unionmode_string.go │ │ │ └── internal │ │ │ ├── bitutils │ │ │ ├── bit_block_counter.go │ │ │ ├── bit_run_reader.go │ │ │ ├── bit_set_run_reader.go │ │ │ └── bitmap_generate.go │ │ │ ├── hashing │ │ │ ├── hash_funcs.go │ │ │ ├── hash_string.go │ │ │ ├── types.tmpldata │ │ │ ├── xxh3_memo_table.gen.go │ │ │ ├── xxh3_memo_table.gen.go.tmpl │ │ │ └── xxh3_memo_table.go │ │ │ ├── json │ │ │ ├── json.go │ │ │ └── json_stdlib.go │ │ │ └── utils │ │ │ ├── Makefile │ │ │ ├── buf_reader.go │ │ │ ├── endians_default.go │ │ │ ├── endians_s390x.go │ │ │ ├── math.go │ │ │ ├── min_max.go │ │ │ ├── min_max_amd64.go │ │ │ ├── min_max_arm64.go │ │ │ ├── min_max_avx2_amd64.go │ │ │ ├── min_max_avx2_amd64.s │ │ │ ├── min_max_neon_arm64.go │ │ │ ├── min_max_neon_arm64.s │ │ │ ├── min_max_noasm.go │ │ │ ├── min_max_ppc64le.go │ │ │ ├── min_max_s390x.go │ │ │ ├── min_max_sse4_amd64.go │ │ │ ├── min_max_sse4_amd64.s │ │ │ ├── recovery.go │ │ │ ├── ref_count.go │ │ │ ├── transpose_ints.go │ │ │ ├── transpose_ints.go.tmpl │ │ │ ├── transpose_ints.tmpldata │ │ │ ├── transpose_ints_amd64.go │ │ │ ├── transpose_ints_amd64.go.tmpl │ │ │ ├── transpose_ints_arm64.go │ │ │ ├── transpose_ints_avx2_amd64.go │ │ │ ├── transpose_ints_avx2_amd64.s │ │ │ ├── transpose_ints_def.go │ │ │ ├── transpose_ints_noasm.go │ │ │ ├── transpose_ints_noasm.go.tmpl │ │ │ ├── transpose_ints_ppc64le.go │ │ │ ├── transpose_ints_s390x.go │ │ │ ├── transpose_ints_s390x.go.tmpl │ │ │ ├── transpose_ints_simd.go.tmpl │ │ │ ├── transpose_ints_sse4_amd64.go │ │ │ └── transpose_ints_sse4_amd64.s │ ├── beorn7 │ │ └── perks │ │ │ ├── LICENSE │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── cenkalti │ │ └── backoff │ │ │ └── v4 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ ├── context.go │ │ │ ├── exponential.go │ │ │ ├── retry.go │ │ │ ├── ticker.go │ │ │ ├── timer.go │ │ │ └── tries.go │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── testall.sh │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ ├── xxhash_safe.go │ │ │ └── xxhash_unsafe.go │ ├── cheekybits │ │ └── genny │ │ │ ├── LICENSE │ │ │ └── generic │ │ │ ├── doc.go │ │ │ └── generic.go │ ├── chromedp │ │ └── cdproto │ │ │ ├── LICENSE │ │ │ └── har │ │ │ ├── easyjson.go │ │ │ ├── har.go │ │ │ └── types.go │ ├── cpuguy83 │ │ └── go-md2man │ │ │ └── v2 │ │ │ ├── LICENSE.md │ │ │ └── md2man │ │ │ ├── debug.go │ │ │ ├── md2man.go │ │ │ └── roff.go │ ├── elazarl │ │ └── goproxy │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── actions.go │ │ │ ├── all.bash │ │ │ ├── ca.pem │ │ │ ├── certs.go │ │ │ ├── chunked.go │ │ │ ├── ctx.go │ │ │ ├── dispatcher.go │ │ │ ├── doc.go │ │ │ ├── h2.go │ │ │ ├── http.go │ │ │ ├── https.go │ │ │ ├── internal │ │ │ ├── http1parser │ │ │ │ ├── header.go │ │ │ │ └── request.go │ │ │ └── signer │ │ │ │ ├── counterecryptor.go │ │ │ │ └── signer.go │ │ │ ├── key.pem │ │ │ ├── logger.go │ │ │ ├── proxy.go │ │ │ ├── responses.go │ │ │ ├── transport │ │ │ ├── roundtripper.go │ │ │ ├── transport.go │ │ │ └── util.go │ │ │ └── websocket.go │ ├── fatih │ │ └── color │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ ├── color_windows.go │ │ │ └── doc.go │ ├── getkin │ │ └── kin-openapi │ │ │ ├── LICENSE │ │ │ ├── openapi3 │ │ │ ├── callback.go │ │ │ ├── components.go │ │ │ ├── contact.go │ │ │ ├── content.go │ │ │ ├── discriminator.go │ │ │ ├── doc.go │ │ │ ├── encoding.go │ │ │ ├── errors.go │ │ │ ├── example.go │ │ │ ├── example_validation.go │ │ │ ├── extension.go │ │ │ ├── external_docs.go │ │ │ ├── header.go │ │ │ ├── helpers.go │ │ │ ├── info.go │ │ │ ├── internalize_refs.go │ │ │ ├── license.go │ │ │ ├── link.go │ │ │ ├── loader.go │ │ │ ├── loader_uri_reader.go │ │ │ ├── maplike.go │ │ │ ├── marsh.go │ │ │ ├── media_type.go │ │ │ ├── openapi3.go │ │ │ ├── operation.go │ │ │ ├── origin.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── ref.go │ │ │ ├── refs.go │ │ │ ├── refs.tmpl │ │ │ ├── refs_test.tmpl │ │ │ ├── request_body.go │ │ │ ├── response.go │ │ │ ├── schema.go │ │ │ ├── schema_formats.go │ │ │ ├── schema_pattern.go │ │ │ ├── schema_validation_settings.go │ │ │ ├── security_requirements.go │ │ │ ├── security_scheme.go │ │ │ ├── serialization_method.go │ │ │ ├── server.go │ │ │ ├── stringmap.go │ │ │ ├── tag.go │ │ │ ├── validation_options.go │ │ │ ├── visited.go │ │ │ └── xml.go │ │ │ └── routers │ │ │ ├── gorillamux │ │ │ └── router.go │ │ │ └── types.go │ ├── go-logr │ │ ├── logr │ │ │ ├── .golangci.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── context.go │ │ │ ├── context_noslog.go │ │ │ ├── context_slog.go │ │ │ ├── discard.go │ │ │ ├── funcr │ │ │ │ ├── funcr.go │ │ │ │ └── slogsink.go │ │ │ ├── logr.go │ │ │ ├── sloghandler.go │ │ │ ├── slogr.go │ │ │ └── slogsink.go │ │ └── stdr │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── stdr.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pointer.go │ │ └── swag │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── BENCHMARK.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── doc.go │ │ │ ├── file.go │ │ │ ├── initialism_index.go │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── name_lexem.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ ├── split.go │ │ │ ├── string_bytes.go │ │ │ ├── util.go │ │ │ └── yaml.go │ ├── goccy │ │ └── go-json │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ ├── decode.go │ │ │ ├── docker-compose.yml │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── internal │ │ │ ├── decoder │ │ │ │ ├── anonymous_field.go │ │ │ │ ├── array.go │ │ │ │ ├── assign.go │ │ │ │ ├── bool.go │ │ │ │ ├── bytes.go │ │ │ │ ├── compile.go │ │ │ │ ├── compile_norace.go │ │ │ │ ├── compile_race.go │ │ │ │ ├── context.go │ │ │ │ ├── float.go │ │ │ │ ├── func.go │ │ │ │ ├── int.go │ │ │ │ ├── interface.go │ │ │ │ ├── invalid.go │ │ │ │ ├── map.go │ │ │ │ ├── number.go │ │ │ │ ├── option.go │ │ │ │ ├── path.go │ │ │ │ ├── ptr.go │ │ │ │ ├── slice.go │ │ │ │ ├── stream.go │ │ │ │ ├── string.go │ │ │ │ ├── struct.go │ │ │ │ ├── type.go │ │ │ │ ├── uint.go │ │ │ │ ├── unmarshal_json.go │ │ │ │ ├── unmarshal_text.go │ │ │ │ └── wrapped_string.go │ │ │ ├── encoder │ │ │ │ ├── code.go │ │ │ │ ├── compact.go │ │ │ │ ├── compiler.go │ │ │ │ ├── compiler_norace.go │ │ │ │ ├── compiler_race.go │ │ │ │ ├── context.go │ │ │ │ ├── decode_rune.go │ │ │ │ ├── encoder.go │ │ │ │ ├── indent.go │ │ │ │ ├── int.go │ │ │ │ ├── map112.go │ │ │ │ ├── map113.go │ │ │ │ ├── opcode.go │ │ │ │ ├── option.go │ │ │ │ ├── optype.go │ │ │ │ ├── query.go │ │ │ │ ├── string.go │ │ │ │ ├── string_table.go │ │ │ │ ├── vm │ │ │ │ │ ├── debug_vm.go │ │ │ │ │ ├── hack.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── vm.go │ │ │ │ ├── vm_color │ │ │ │ │ ├── debug_vm.go │ │ │ │ │ ├── hack.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── vm.go │ │ │ │ ├── vm_color_indent │ │ │ │ │ ├── debug_vm.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── vm.go │ │ │ │ └── vm_indent │ │ │ │ │ ├── debug_vm.go │ │ │ │ │ ├── hack.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── vm.go │ │ │ ├── errors │ │ │ │ └── error.go │ │ │ └── runtime │ │ │ │ ├── rtype.go │ │ │ │ ├── struct_field.go │ │ │ │ └── type.go │ │ │ ├── json.go │ │ │ ├── option.go │ │ │ ├── path.go │ │ │ └── query.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── jsonpb │ │ │ └── jsonpb.go │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── custom_gogo.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── table_marshal.go │ │ │ ├── table_marshal_gogo.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── table_unmarshal_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gogo.go │ │ │ ├── protoc-gen-gogo │ │ │ └── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.go │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ └── helper.go │ │ │ ├── sortkeys │ │ │ └── sortkeys.go │ │ │ └── types │ │ │ ├── any.go │ │ │ ├── any.pb.go │ │ │ ├── api.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration.pb.go │ │ │ ├── duration_gogo.go │ │ │ ├── empty.pb.go │ │ │ ├── field_mask.pb.go │ │ │ ├── protosize.go │ │ │ ├── source_context.pb.go │ │ │ ├── struct.pb.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp.pb.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── type.pb.go │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers_gogo.go │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── ptypes │ │ │ └── empty │ │ │ └── empty.pb.go │ ├── google │ │ ├── flatbuffers │ │ │ ├── LICENSE │ │ │ └── go │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── builder.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── grpc.go │ │ │ │ ├── lib.go │ │ │ │ ├── sizes.go │ │ │ │ ├── struct.go │ │ │ │ └── table.go │ │ ├── go-cmp │ │ │ ├── LICENSE │ │ │ └── cmp │ │ │ │ ├── cmpopts │ │ │ │ ├── equate.go │ │ │ │ ├── ignore.go │ │ │ │ ├── sort.go │ │ │ │ ├── struct_filter.go │ │ │ │ └── xform.go │ │ │ │ ├── compare.go │ │ │ │ ├── export.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── flags │ │ │ │ │ └── flags.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── name.go │ │ │ │ │ ├── pointer.go │ │ │ │ │ └── sort.go │ │ │ │ ├── options.go │ │ │ │ ├── path.go │ │ │ │ ├── report.go │ │ │ │ ├── report_compare.go │ │ │ │ ├── report_references.go │ │ │ │ ├── report_reflect.go │ │ │ │ ├── report_slices.go │ │ │ │ ├── report_text.go │ │ │ │ └── report_value.go │ │ └── uuid │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── null.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ ├── version4.go │ │ │ ├── version6.go │ │ │ └── version7.go │ ├── gorilla │ │ └── mux │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── middleware.go │ │ │ ├── mux.go │ │ │ ├── regexp.go │ │ │ ├── route.go │ │ │ └── test_helpers.go │ ├── grafana │ │ ├── grafana-plugin-sdk-go │ │ │ ├── LICENSE │ │ │ ├── backend │ │ │ │ ├── admission.go │ │ │ │ ├── admission_adapter.go │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_adapter.go │ │ │ │ ├── convert_from_protobuf.go │ │ │ │ ├── convert_to_protobuf.go │ │ │ │ ├── data.go │ │ │ │ ├── data_adapter.go │ │ │ │ ├── datasource │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── instance_provider.go │ │ │ │ │ ├── manage.go │ │ │ │ │ ├── query_type_mux.go │ │ │ │ │ └── serve.go │ │ │ │ ├── diagnostics.go │ │ │ │ ├── diagnostics_adapter.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── error_source.go │ │ │ │ ├── error_source_middleware.go │ │ │ │ ├── framer.go │ │ │ │ ├── grpcplugin │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── grpc_admission.go │ │ │ │ │ ├── grpc_conversion.go │ │ │ │ │ ├── grpc_data.go │ │ │ │ │ ├── grpc_diagnostics.go │ │ │ │ │ ├── grpc_resource.go │ │ │ │ │ ├── grpc_stream.go │ │ │ │ │ ├── handshake.go │ │ │ │ │ └── serve.go │ │ │ │ ├── gtime │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gtime.go │ │ │ │ │ └── time_range.go │ │ │ │ ├── handler.go │ │ │ │ ├── handler_middleware.go │ │ │ │ ├── http_headers.go │ │ │ │ ├── http_settings.go │ │ │ │ ├── httpclient │ │ │ │ │ ├── basic_auth_middleware.go │ │ │ │ │ ├── contextual_middleware.go │ │ │ │ │ ├── count_bytes_reader.go │ │ │ │ │ ├── custom_headers_middleware.go │ │ │ │ │ ├── datasource_metrics_middleware.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── error_source_middleware.go │ │ │ │ │ ├── http_client.go │ │ │ │ │ ├── max_bytes_reader.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── provider.go │ │ │ │ │ ├── response_limit_middleware.go │ │ │ │ │ └── tracing_middleware.go │ │ │ │ ├── instancemgmt │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── instance_manager.go │ │ │ │ │ └── locker.go │ │ │ │ ├── internal │ │ │ │ │ └── endpointctx │ │ │ │ │ │ └── endpointctx.go │ │ │ │ ├── json.go │ │ │ │ ├── log.go │ │ │ │ ├── log │ │ │ │ │ ├── context.go │ │ │ │ │ ├── context_grpc.go │ │ │ │ │ └── log.go │ │ │ │ ├── logger_middleware.go │ │ │ │ ├── metrics_middleware.go │ │ │ │ ├── proxy │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── env.go │ │ │ │ │ ├── options.go │ │ │ │ │ └── secure_socks_proxy.go │ │ │ │ ├── query_conversion.go │ │ │ │ ├── request_status.go │ │ │ │ ├── resource.go │ │ │ │ ├── resource │ │ │ │ │ └── httpadapter │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ └── response_writer.go │ │ │ │ ├── resource_adapter.go │ │ │ │ ├── serve.go │ │ │ │ ├── setup.go │ │ │ │ ├── status.go │ │ │ │ ├── stream.go │ │ │ │ ├── stream_adapter.go │ │ │ │ ├── tenant_middleware.go │ │ │ │ ├── tracing │ │ │ │ │ ├── contextual_tracer.go │ │ │ │ │ └── tracing.go │ │ │ │ ├── tracing_middleware.go │ │ │ │ └── useragent │ │ │ │ │ └── user_agent.go │ │ │ ├── build │ │ │ │ ├── README.md │ │ │ │ ├── common.go │ │ │ │ ├── common_unix.go │ │ │ │ ├── doc.go │ │ │ │ ├── info.go │ │ │ │ ├── tmpl │ │ │ │ │ └── bra.toml │ │ │ │ ├── types.go │ │ │ │ └── utils │ │ │ │ │ ├── copy.go │ │ │ │ │ ├── exists.go │ │ │ │ │ └── manifest.go │ │ │ ├── data │ │ │ │ ├── README.md │ │ │ │ ├── arrow.go │ │ │ │ ├── arrow_column_builders.go │ │ │ │ ├── constants.go │ │ │ │ ├── conversion_input.go │ │ │ │ ├── field.go │ │ │ │ ├── field_config.go │ │ │ │ ├── field_type.go │ │ │ │ ├── field_type_enum.go │ │ │ │ ├── frame.go │ │ │ │ ├── frame_json.gen.go │ │ │ │ ├── frame_json.go │ │ │ │ ├── frame_meta.go │ │ │ │ ├── frame_type.go │ │ │ │ ├── framer.go │ │ │ │ ├── gen.go │ │ │ │ ├── generic_nullable_vector.go │ │ │ │ ├── generic_vector.go │ │ │ │ ├── labels.go │ │ │ │ ├── nullable_vector.gen.go │ │ │ │ ├── time_series.go │ │ │ │ ├── time_series_errors.go │ │ │ │ ├── utils │ │ │ │ │ └── jsoniter │ │ │ │ │ │ └── jsoniter.go │ │ │ │ ├── value_mapping.go │ │ │ │ ├── vector.gen.go │ │ │ │ └── vector.go │ │ │ ├── experimental │ │ │ │ ├── e2e │ │ │ │ │ ├── README.md │ │ │ │ │ ├── certificate_authority │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── ca.go │ │ │ │ │ │ ├── generate-ca-keypair.sh │ │ │ │ │ │ ├── grafana-e2e-ca.key.pem │ │ │ │ │ │ ├── grafana-e2e-ca.pem │ │ │ │ │ │ └── openssl.cnf │ │ │ │ │ ├── config │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── fixture │ │ │ │ │ │ └── fixture.go │ │ │ │ │ ├── har.gif │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── proxy.png │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── har.go │ │ │ │ │ │ ├── openapi.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── utils │ │ │ │ │ │ └── http.go │ │ │ │ ├── featuretoggles │ │ │ │ │ └── featuretoggles.go │ │ │ │ └── status │ │ │ │ │ ├── doc.go │ │ │ │ │ └── status_source.go │ │ │ ├── genproto │ │ │ │ └── pluginv2 │ │ │ │ │ ├── backend.pb.go │ │ │ │ │ ├── backend_grpc.pb.go │ │ │ │ │ └── doc.go │ │ │ └── internal │ │ │ │ ├── automanagement │ │ │ │ └── manager.go │ │ │ │ ├── buildinfo │ │ │ │ └── buildinfo.go │ │ │ │ ├── standalone │ │ │ │ └── standalone.go │ │ │ │ ├── tenant │ │ │ │ └── tenant.go │ │ │ │ ├── tracerprovider │ │ │ │ ├── profiling_tracerprovider.go │ │ │ │ ├── propagator.go │ │ │ │ ├── sampler.go │ │ │ │ └── tracerprovider.go │ │ │ │ └── utils.go │ │ ├── otel-profiling-go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── deprecated.go │ │ │ └── otelpyroscope.go │ │ └── pyroscope-go │ │ │ └── godeltaprof │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── heap.go │ │ │ ├── http │ │ │ └── pprof │ │ │ │ ├── pprof.go │ │ │ │ ├── pprof_go21.go │ │ │ │ └── pprof_go22.go │ │ │ ├── internal │ │ │ └── pprof │ │ │ │ ├── builder.go │ │ │ │ ├── delta_heap.go │ │ │ │ ├── delta_mutex.go │ │ │ │ ├── elf.go │ │ │ │ ├── gzip_go16.go │ │ │ │ ├── gzip_go17.go │ │ │ │ ├── map.go │ │ │ │ ├── mutex_scale_go19.go │ │ │ │ ├── mutex_scale_go20.go │ │ │ │ ├── proto.go │ │ │ │ ├── protobuf.go │ │ │ │ ├── stub.go │ │ │ │ ├── stub_go20.go │ │ │ │ ├── stub_go22.go │ │ │ │ └── stub_go23.go │ │ │ └── proto.go │ ├── grpc-ecosystem │ │ ├── go-grpc-middleware │ │ │ ├── providers │ │ │ │ └── prometheus │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── client_metrics.go │ │ │ │ │ ├── client_options.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── reporter.go │ │ │ │ │ ├── server_metrics.go │ │ │ │ │ └── server_options.go │ │ │ └── v2 │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── LICENSE │ │ │ │ └── interceptors │ │ │ │ ├── callmeta.go │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── recovery │ │ │ │ ├── doc.go │ │ │ │ ├── interceptors.go │ │ │ │ └── options.go │ │ │ │ ├── reporter.go │ │ │ │ └── server.go │ │ └── grpc-gateway │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── httprule │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── compile.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── parse.go │ │ │ │ └── types.go │ │ │ ├── runtime │ │ │ ├── BUILD.bazel │ │ │ ├── context.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── fieldmask.go │ │ │ ├── handler.go │ │ │ ├── marshal_httpbodyproto.go │ │ │ ├── marshal_json.go │ │ │ ├── marshal_jsonpb.go │ │ │ ├── marshal_proto.go │ │ │ ├── marshaler.go │ │ │ ├── marshaler_registry.go │ │ │ ├── mux.go │ │ │ ├── pattern.go │ │ │ ├── proto2_convert.go │ │ │ └── query.go │ │ │ └── utilities │ │ │ ├── BUILD.bazel │ │ │ ├── doc.go │ │ │ ├── pattern.go │ │ │ ├── readerfactory.go │ │ │ ├── string_array_flag.go │ │ │ └── trie.go │ ├── hashicorp │ │ ├── go-hclog │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorize_unix.go │ │ │ ├── colorize_windows.go │ │ │ ├── context.go │ │ │ ├── exclude.go │ │ │ ├── global.go │ │ │ ├── interceptlogger.go │ │ │ ├── intlogger.go │ │ │ ├── logger.go │ │ │ ├── nulllogger.go │ │ │ ├── stacktrace.go │ │ │ ├── stdlog.go │ │ │ └── writer.go │ │ ├── go-plugin │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── buf.gen.yaml │ │ │ ├── buf.yaml │ │ │ ├── client.go │ │ │ ├── constants.go │ │ │ ├── discover.go │ │ │ ├── error.go │ │ │ ├── grpc_broker.go │ │ │ ├── grpc_client.go │ │ │ ├── grpc_controller.go │ │ │ ├── grpc_server.go │ │ │ ├── grpc_stdio.go │ │ │ ├── internal │ │ │ │ ├── cmdrunner │ │ │ │ │ ├── addr_translator.go │ │ │ │ │ ├── cmd_reattach.go │ │ │ │ │ ├── cmd_runner.go │ │ │ │ │ ├── notes_unix.go │ │ │ │ │ ├── notes_windows.go │ │ │ │ │ ├── process.go │ │ │ │ │ ├── process_posix.go │ │ │ │ │ └── process_windows.go │ │ │ │ ├── grpcmux │ │ │ │ │ ├── blocked_client_listener.go │ │ │ │ │ ├── blocked_server_listener.go │ │ │ │ │ ├── grpc_client_muxer.go │ │ │ │ │ ├── grpc_muxer.go │ │ │ │ │ └── grpc_server_muxer.go │ │ │ │ └── plugin │ │ │ │ │ ├── grpc_broker.pb.go │ │ │ │ │ ├── grpc_broker.proto │ │ │ │ │ ├── grpc_broker_grpc.pb.go │ │ │ │ │ ├── grpc_controller.pb.go │ │ │ │ │ ├── grpc_controller.proto │ │ │ │ │ ├── grpc_controller_grpc.pb.go │ │ │ │ │ ├── grpc_stdio.pb.go │ │ │ │ │ ├── grpc_stdio.proto │ │ │ │ │ └── grpc_stdio_grpc.pb.go │ │ │ ├── log_entry.go │ │ │ ├── mtls.go │ │ │ ├── mux_broker.go │ │ │ ├── plugin.go │ │ │ ├── process.go │ │ │ ├── protocol.go │ │ │ ├── rpc_client.go │ │ │ ├── rpc_server.go │ │ │ ├── runner │ │ │ │ └── runner.go │ │ │ ├── server.go │ │ │ ├── server_mux.go │ │ │ ├── stream.go │ │ │ └── testing.go │ │ └── yamux │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── addr.go │ │ │ ├── const.go │ │ │ ├── mux.go │ │ │ ├── session.go │ │ │ ├── spec.md │ │ │ ├── stream.go │ │ │ └── util.go │ ├── josharian │ │ └── intern │ │ │ ├── README.md │ │ │ ├── intern.go │ │ │ └── license.md │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── jszwedko │ │ └── go-datemath │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── datemath.go │ │ │ ├── datemath.l │ │ │ ├── datemath.l.go │ │ │ ├── datemath.y │ │ │ └── datemath.y.go │ ├── klauspost │ │ ├── compress │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── compressible.go │ │ │ ├── flate │ │ │ │ ├── deflate.go │ │ │ │ ├── dict_decoder.go │ │ │ │ ├── fast_encoder.go │ │ │ │ ├── huffman_bit_writer.go │ │ │ │ ├── huffman_code.go │ │ │ │ ├── huffman_sortByFreq.go │ │ │ │ ├── huffman_sortByLiteral.go │ │ │ │ ├── inflate.go │ │ │ │ ├── inflate_gen.go │ │ │ │ ├── level1.go │ │ │ │ ├── level2.go │ │ │ │ ├── level3.go │ │ │ │ ├── level4.go │ │ │ │ ├── level5.go │ │ │ │ ├── level6.go │ │ │ │ ├── matchlen_generic.go │ │ │ │ ├── regmask_amd64.go │ │ │ │ ├── regmask_other.go │ │ │ │ ├── stateless.go │ │ │ │ └── token.go │ │ │ ├── fse │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── bytereader.go │ │ │ │ ├── compress.go │ │ │ │ ├── decompress.go │ │ │ │ └── fse.go │ │ │ ├── gen.sh │ │ │ ├── gzip │ │ │ │ ├── gunzip.go │ │ │ │ └── gzip.go │ │ │ ├── huff0 │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── compress.go │ │ │ │ ├── decompress.go │ │ │ │ ├── decompress_amd64.go │ │ │ │ ├── decompress_amd64.s │ │ │ │ ├── decompress_generic.go │ │ │ │ └── huff0.go │ │ │ ├── internal │ │ │ │ ├── cpuinfo │ │ │ │ │ ├── cpuinfo.go │ │ │ │ │ ├── cpuinfo_amd64.go │ │ │ │ │ └── cpuinfo_amd64.s │ │ │ │ ├── le │ │ │ │ │ ├── le.go │ │ │ │ │ ├── unsafe_disabled.go │ │ │ │ │ └── unsafe_enabled.go │ │ │ │ └── snapref │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_other.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_other.go │ │ │ │ │ └── snappy.go │ │ │ ├── s2sx.mod │ │ │ ├── s2sx.sum │ │ │ └── zstd │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── blockdec.go │ │ │ │ ├── blockenc.go │ │ │ │ ├── blocktype_string.go │ │ │ │ ├── bytebuf.go │ │ │ │ ├── bytereader.go │ │ │ │ ├── decodeheader.go │ │ │ │ ├── decoder.go │ │ │ │ ├── decoder_options.go │ │ │ │ ├── dict.go │ │ │ │ ├── enc_base.go │ │ │ │ ├── enc_best.go │ │ │ │ ├── enc_better.go │ │ │ │ ├── enc_dfast.go │ │ │ │ ├── enc_fast.go │ │ │ │ ├── encoder.go │ │ │ │ ├── encoder_options.go │ │ │ │ ├── framedec.go │ │ │ │ ├── frameenc.go │ │ │ │ ├── fse_decoder.go │ │ │ │ ├── fse_decoder_amd64.go │ │ │ │ ├── fse_decoder_amd64.s │ │ │ │ ├── fse_decoder_generic.go │ │ │ │ ├── fse_encoder.go │ │ │ │ ├── fse_predefined.go │ │ │ │ ├── hash.go │ │ │ │ ├── history.go │ │ │ │ ├── internal │ │ │ │ └── xxhash │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── xxhash.go │ │ │ │ │ ├── xxhash_amd64.s │ │ │ │ │ ├── xxhash_arm64.s │ │ │ │ │ ├── xxhash_asm.go │ │ │ │ │ ├── xxhash_other.go │ │ │ │ │ └── xxhash_safe.go │ │ │ │ ├── matchlen_amd64.go │ │ │ │ ├── matchlen_amd64.s │ │ │ │ ├── matchlen_generic.go │ │ │ │ ├── seqdec.go │ │ │ │ ├── seqdec_amd64.go │ │ │ │ ├── seqdec_amd64.s │ │ │ │ ├── seqdec_generic.go │ │ │ │ ├── seqenc.go │ │ │ │ ├── snappy.go │ │ │ │ ├── zip.go │ │ │ │ └── zstd.go │ │ └── cpuid │ │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── CONTRIBUTING.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cpuid.go │ │ │ ├── cpuid_386.s │ │ │ ├── cpuid_amd64.s │ │ │ ├── cpuid_arm64.s │ │ │ ├── detect_arm64.go │ │ │ ├── detect_ref.go │ │ │ ├── detect_x86.go │ │ │ ├── featureid_string.go │ │ │ ├── os_darwin_arm64.go │ │ │ ├── os_linux_arm64.go │ │ │ ├── os_other_arm64.go │ │ │ ├── os_safe_linux_arm64.go │ │ │ ├── os_unsafe_linux_arm64.go │ │ │ └── test-architectures.sh │ ├── magefile │ │ └── mage │ │ │ ├── LICENSE │ │ │ ├── mg │ │ │ ├── color.go │ │ │ ├── color_string.go │ │ │ ├── deps.go │ │ │ ├── errors.go │ │ │ ├── fn.go │ │ │ └── runtime.go │ │ │ └── sh │ │ │ ├── cmd.go │ │ │ └── helpers.go │ ├── mailru │ │ └── easyjson │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── helpers.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ ├── jwriter │ │ │ └── writer.go │ │ │ ├── raw.go │ │ │ └── unknown_fields.go │ ├── mattetti │ │ └── filebuffer │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── filebuffer.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_appengine.go │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ ├── go.test.sh │ │ │ └── noncolorable.go │ │ ├── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ └── isatty_windows.go │ │ └── go-runewidth │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── runewidth.go │ │ │ ├── runewidth_appengine.go │ │ │ ├── runewidth_js.go │ │ │ ├── runewidth_posix.go │ │ │ ├── runewidth_table.go │ │ │ └── runewidth_windows.go │ ├── modern-go │ │ ├── concurrent │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── executor.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_19.go │ │ │ ├── log.go │ │ │ ├── test.sh │ │ │ └── unbounded_executor.go │ │ └── reflect2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go_above_118.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_118.go │ │ │ ├── reflect2.go │ │ │ ├── reflect2_amd64.s │ │ │ ├── reflect2_kind.go │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── safe_field.go │ │ │ ├── safe_map.go │ │ │ ├── safe_slice.go │ │ │ ├── safe_struct.go │ │ │ ├── safe_type.go │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ ├── mohae │ │ └── deepcopy │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── deepcopy.go │ ├── munnerz │ │ └── goautoneg │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── autoneg.go │ ├── oasdiff │ │ ├── yaml │ │ │ ├── .gitignore │ │ │ ├── .golangci.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ └── yaml.go │ │ └── yaml3 │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── origin.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ ├── oklog │ │ └── run │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── actors.go │ │ │ └── group.go │ ├── olekukonko │ │ └── tablewriter │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── csv.go │ │ │ ├── table.go │ │ │ ├── table_with_color.go │ │ │ ├── util.go │ │ │ └── wrap.go │ ├── perimeterx │ │ └── marshmallow │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cache.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── options.go │ │ │ ├── reflection.go │ │ │ ├── unmarshal.go │ │ │ └── unmarshal_from_json_map.go │ ├── pierrec │ │ └── lz4 │ │ │ └── v4 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compressing_reader.go │ │ │ ├── internal │ │ │ ├── lz4block │ │ │ │ ├── block.go │ │ │ │ ├── blocks.go │ │ │ │ ├── decode_amd64.s │ │ │ │ ├── decode_arm.s │ │ │ │ ├── decode_arm64.s │ │ │ │ ├── decode_asm.go │ │ │ │ └── decode_other.go │ │ │ ├── lz4errors │ │ │ │ └── errors.go │ │ │ ├── lz4stream │ │ │ │ ├── block.go │ │ │ │ ├── frame.go │ │ │ │ └── frame_gen.go │ │ │ └── xxh32 │ │ │ │ ├── xxh32zero.go │ │ │ │ ├── xxh32zero_arm.go │ │ │ │ ├── xxh32zero_arm.s │ │ │ │ └── xxh32zero_other.go │ │ │ ├── lz4.go │ │ │ ├── options.go │ │ │ ├── options_gen.go │ │ │ ├── reader.go │ │ │ ├── state.go │ │ │ ├── state_gen.go │ │ │ └── writer.go │ ├── prometheus │ │ ├── client_golang │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── internal │ │ │ │ └── github.com │ │ │ │ │ └── golang │ │ │ │ │ └── gddo │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── httputil │ │ │ │ │ ├── header │ │ │ │ │ └── header.go │ │ │ │ │ └── negotiate.go │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── build_info_collector.go │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── get_pid.go │ │ │ │ ├── get_pid_gopherjs.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── go_collector_go116.go │ │ │ │ ├── go_collector_latest.go │ │ │ │ ├── histogram.go │ │ │ │ ├── internal │ │ │ │ ├── almost_equal.go │ │ │ │ ├── difflib.go │ │ │ │ ├── go_collector_options.go │ │ │ │ ├── go_runtime_metrics.go │ │ │ │ └── metric.go │ │ │ │ ├── labels.go │ │ │ │ ├── metric.go │ │ │ │ ├── num_threads.go │ │ │ │ ├── num_threads_gopherjs.go │ │ │ │ ├── observer.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── process_collector_js.go │ │ │ │ ├── process_collector_other.go │ │ │ │ ├── process_collector_wasip1.go │ │ │ │ ├── process_collector_windows.go │ │ │ │ ├── promauto │ │ │ │ └── auto.go │ │ │ │ ├── promhttp │ │ │ │ ├── delegator.go │ │ │ │ ├── http.go │ │ │ │ ├── instrument_client.go │ │ │ │ ├── instrument_server.go │ │ │ │ └── option.go │ │ │ │ ├── registry.go │ │ │ │ ├── summary.go │ │ │ │ ├── timer.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.go │ │ │ │ ├── vnext.go │ │ │ │ └── wrap.go │ │ ├── client_model │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── go │ │ │ │ └── metrics.pb.go │ │ ├── common │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── expfmt │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── openmetrics_create.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ └── model │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── labelset_string.go │ │ │ │ ├── metadata.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ ├── value.go │ │ │ │ ├── value_float.go │ │ │ │ ├── value_histogram.go │ │ │ │ └── value_type.go │ │ └── procfs │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── Makefile.common │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── arp.go │ │ │ ├── buddyinfo.go │ │ │ ├── cmdline.go │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_armx.go │ │ │ ├── cpuinfo_loong64.go │ │ │ ├── cpuinfo_mipsx.go │ │ │ ├── cpuinfo_others.go │ │ │ ├── cpuinfo_ppcx.go │ │ │ ├── cpuinfo_riscvx.go │ │ │ ├── cpuinfo_s390x.go │ │ │ ├── cpuinfo_x86.go │ │ │ ├── crypto.go │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── fs_statfs_notype.go │ │ │ ├── fs_statfs_type.go │ │ │ ├── fscache.go │ │ │ ├── internal │ │ │ ├── fs │ │ │ │ └── fs.go │ │ │ └── util │ │ │ │ ├── parse.go │ │ │ │ ├── readfile.go │ │ │ │ ├── sysreadfile.go │ │ │ │ ├── sysreadfile_compat.go │ │ │ │ └── valueparser.go │ │ │ ├── ipvs.go │ │ │ ├── kernel_random.go │ │ │ ├── loadavg.go │ │ │ ├── mdstat.go │ │ │ ├── meminfo.go │ │ │ ├── mountinfo.go │ │ │ ├── mountstats.go │ │ │ ├── net_conntrackstat.go │ │ │ ├── net_dev.go │ │ │ ├── net_ip_socket.go │ │ │ ├── net_protocols.go │ │ │ ├── net_route.go │ │ │ ├── net_sockstat.go │ │ │ ├── net_softnet.go │ │ │ ├── net_tcp.go │ │ │ ├── net_tls_stat.go │ │ │ ├── net_udp.go │ │ │ ├── net_unix.go │ │ │ ├── net_wireless.go │ │ │ ├── net_xfrm.go │ │ │ ├── netstat.go │ │ │ ├── proc.go │ │ │ ├── proc_cgroup.go │ │ │ ├── proc_cgroups.go │ │ │ ├── proc_environ.go │ │ │ ├── proc_fdinfo.go │ │ │ ├── proc_interrupts.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_maps.go │ │ │ ├── proc_netstat.go │ │ │ ├── proc_ns.go │ │ │ ├── proc_psi.go │ │ │ ├── proc_smaps.go │ │ │ ├── proc_snmp.go │ │ │ ├── proc_snmp6.go │ │ │ ├── proc_stat.go │ │ │ ├── proc_status.go │ │ │ ├── proc_sys.go │ │ │ ├── schedstat.go │ │ │ ├── slab.go │ │ │ ├── softirqs.go │ │ │ ├── stat.go │ │ │ ├── swaps.go │ │ │ ├── thread.go │ │ │ ├── ttar │ │ │ ├── vm.go │ │ │ └── zoneinfo.go │ ├── rivo │ │ └── uniseg │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── eastasianwidth.go │ │ │ ├── emojipresentation.go │ │ │ ├── gen_breaktest.go │ │ │ ├── gen_properties.go │ │ │ ├── grapheme.go │ │ │ ├── graphemeproperties.go │ │ │ ├── graphemerules.go │ │ │ ├── line.go │ │ │ ├── lineproperties.go │ │ │ ├── linerules.go │ │ │ ├── properties.go │ │ │ ├── sentence.go │ │ │ ├── sentenceproperties.go │ │ │ ├── sentencerules.go │ │ │ ├── step.go │ │ │ ├── width.go │ │ │ ├── word.go │ │ │ ├── wordproperties.go │ │ │ └── wordrules.go │ ├── russross │ │ └── blackfriday │ │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── doc.go │ │ │ ├── entities.go │ │ │ ├── esc.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── markdown.go │ │ │ ├── node.go │ │ │ └── smartypants.go │ ├── unknwon │ │ ├── bra │ │ │ ├── LICENSE │ │ │ ├── cmd │ │ │ │ ├── cmd.go │ │ │ │ ├── init.go │ │ │ │ ├── run.go │ │ │ │ └── sync.go │ │ │ └── internal │ │ │ │ ├── bindata │ │ │ │ └── bindata.go │ │ │ │ └── setting │ │ │ │ └── setting.go │ │ ├── com │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cmd.go │ │ │ ├── convert.go │ │ │ ├── dir.go │ │ │ ├── file.go │ │ │ ├── html.go │ │ │ ├── http.go │ │ │ ├── math.go │ │ │ ├── path.go │ │ │ ├── regex.go │ │ │ ├── slice.go │ │ │ ├── string.go │ │ │ ├── time.go │ │ │ └── url.go │ │ └── log │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── log.go │ ├── urfave │ │ └── cli │ │ │ ├── .flake8 │ │ │ ├── .gitignore │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── category.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── context.go │ │ │ ├── docs.go │ │ │ ├── errors.go │ │ │ ├── fish.go │ │ │ ├── flag.go │ │ │ ├── flag_bool.go │ │ │ ├── flag_bool_t.go │ │ │ ├── flag_duration.go │ │ │ ├── flag_float64.go │ │ │ ├── flag_generic.go │ │ │ ├── flag_int.go │ │ │ ├── flag_int64.go │ │ │ ├── flag_int64_slice.go │ │ │ ├── flag_int_slice.go │ │ │ ├── flag_string.go │ │ │ ├── flag_string_slice.go │ │ │ ├── flag_uint.go │ │ │ ├── flag_uint64.go │ │ │ ├── funcs.go │ │ │ ├── help.go │ │ │ ├── parse.go │ │ │ ├── sort.go │ │ │ └── template.go │ ├── valyala │ │ ├── fastjson │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arena.go │ │ │ ├── doc.go │ │ │ ├── fastfloat │ │ │ │ └── parse.go │ │ │ ├── fuzz.go │ │ │ ├── handy.go │ │ │ ├── parser.go │ │ │ ├── pool.go │ │ │ ├── scanner.go │ │ │ ├── update.go │ │ │ ├── util.go │ │ │ └── validate.go │ │ ├── fastrand │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── fastrand.go │ │ └── histogram │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── histogram.go │ └── zeebo │ │ └── xxh3 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── _compat.c │ │ ├── accum_generic.go │ │ ├── accum_stubs_amd64.go │ │ ├── accum_stubs_other.go │ │ ├── accum_vector_avx512_amd64.s │ │ ├── accum_vector_avx_amd64.s │ │ ├── accum_vector_sse_amd64.s │ │ ├── consts.go │ │ ├── hash128.go │ │ ├── hash128_seed.go │ │ ├── hash64.go │ │ ├── hash64_seed.go │ │ ├── hasher.go │ │ └── utils.go ├── go.opentelemetry.io │ ├── auto │ │ └── sdk │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── VERSIONING.md │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ └── telemetry │ │ │ │ ├── attr.go │ │ │ │ ├── doc.go │ │ │ │ ├── id.go │ │ │ │ ├── number.go │ │ │ │ ├── resource.go │ │ │ │ ├── scope.go │ │ │ │ ├── span.go │ │ │ │ ├── status.go │ │ │ │ ├── traces.go │ │ │ │ └── value.go │ │ │ ├── limit.go │ │ │ ├── span.go │ │ │ ├── tracer.go │ │ │ └── tracer_provider.go │ ├── contrib │ │ ├── instrumentation │ │ │ ├── google.golang.org │ │ │ │ └── grpc │ │ │ │ │ └── otelgrpc │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── config.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── interceptor.go │ │ │ │ │ ├── interceptorinfo.go │ │ │ │ │ ├── internal │ │ │ │ │ └── parse.go │ │ │ │ │ ├── metadata_supplier.go │ │ │ │ │ ├── semconv.go │ │ │ │ │ ├── stats_handler.go │ │ │ │ │ └── version.go │ │ │ └── net │ │ │ │ └── http │ │ │ │ └── httptrace │ │ │ │ └── otelhttptrace │ │ │ │ ├── LICENSE │ │ │ │ ├── api.go │ │ │ │ ├── clienttrace.go │ │ │ │ ├── httptrace.go │ │ │ │ ├── internal │ │ │ │ ├── semconv │ │ │ │ │ ├── env.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── httpconv.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── v1.20.0.go │ │ │ │ └── semconvutil │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── httpconv.go │ │ │ │ │ └── netconv.go │ │ │ │ └── version.go │ │ ├── propagators │ │ │ └── jaeger │ │ │ │ ├── LICENSE │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── jaeger_propagator.go │ │ │ │ └── version.go │ │ └── samplers │ │ │ └── jaegerremote │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ ├── proto-gen │ │ │ │ └── jaeger-idl │ │ │ │ │ └── proto │ │ │ │ │ └── api_v2 │ │ │ │ │ └── sampling.pb.go │ │ │ └── utils │ │ │ │ ├── http_json.go │ │ │ │ └── rate_limiter.go │ │ │ ├── sampler.go │ │ │ ├── sampler_remote.go │ │ │ ├── sampler_remote_options.go │ │ │ └── version.go │ ├── otel │ │ ├── .codespellignore │ │ ├── .codespellrc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .lycheeignore │ │ ├── .markdownlint.yaml │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── VERSIONING.md │ │ ├── attribute │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── filter.go │ │ │ ├── iterator.go │ │ │ ├── key.go │ │ │ ├── kv.go │ │ │ ├── set.go │ │ │ ├── type_string.go │ │ │ └── value.go │ │ ├── baggage │ │ │ ├── README.md │ │ │ ├── baggage.go │ │ │ ├── context.go │ │ │ └── doc.go │ │ ├── codes │ │ │ ├── README.md │ │ │ ├── codes.go │ │ │ └── doc.go │ │ ├── dependencies.Dockerfile │ │ ├── doc.go │ │ ├── error_handler.go │ │ ├── exporters │ │ │ └── otlp │ │ │ │ └── otlptrace │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── clients.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal │ │ │ │ └── tracetransform │ │ │ │ │ ├── attribute.go │ │ │ │ │ ├── instrumentation.go │ │ │ │ │ ├── resource.go │ │ │ │ │ └── span.go │ │ │ │ ├── otlptracegrpc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── exporter.go │ │ │ │ ├── internal │ │ │ │ │ ├── envconfig │ │ │ │ │ │ └── envconfig.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── otlpconfig │ │ │ │ │ │ ├── envconfig.go │ │ │ │ │ │ ├── options.go │ │ │ │ │ │ ├── optiontypes.go │ │ │ │ │ │ └── tls.go │ │ │ │ │ ├── partialsuccess.go │ │ │ │ │ └── retry │ │ │ │ │ │ └── retry.go │ │ │ │ └── options.go │ │ │ │ └── version.go │ │ ├── get_main_pkgs.sh │ │ ├── handler.go │ │ ├── internal │ │ │ ├── attribute │ │ │ │ └── attribute.go │ │ │ ├── baggage │ │ │ │ ├── baggage.go │ │ │ │ └── context.go │ │ │ ├── gen.go │ │ │ ├── global │ │ │ │ ├── handler.go │ │ │ │ ├── instruments.go │ │ │ │ ├── internal_logging.go │ │ │ │ ├── meter.go │ │ │ │ ├── propagator.go │ │ │ │ ├── state.go │ │ │ │ └── trace.go │ │ │ └── rawhelpers.go │ │ ├── internal_logging.go │ │ ├── metric.go │ │ ├── metric │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── asyncfloat64.go │ │ │ ├── asyncint64.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── embedded │ │ │ │ ├── README.md │ │ │ │ └── embedded.go │ │ │ ├── instrument.go │ │ │ ├── meter.go │ │ │ ├── noop │ │ │ │ ├── README.md │ │ │ │ └── noop.go │ │ │ ├── syncfloat64.go │ │ │ └── syncint64.go │ │ ├── propagation.go │ │ ├── propagation │ │ │ ├── README.md │ │ │ ├── baggage.go │ │ │ ├── doc.go │ │ │ ├── propagation.go │ │ │ └── trace_context.go │ │ ├── renovate.json │ │ ├── requirements.txt │ │ ├── sdk │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── instrumentation │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── library.go │ │ │ │ └── scope.go │ │ │ ├── internal │ │ │ │ ├── env │ │ │ │ │ └── env.go │ │ │ │ └── x │ │ │ │ │ ├── README.md │ │ │ │ │ └── x.go │ │ │ ├── resource │ │ │ │ ├── README.md │ │ │ │ ├── auto.go │ │ │ │ ├── builtin.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── doc.go │ │ │ │ ├── env.go │ │ │ │ ├── host_id.go │ │ │ │ ├── host_id_bsd.go │ │ │ │ ├── host_id_darwin.go │ │ │ │ ├── host_id_exec.go │ │ │ │ ├── host_id_linux.go │ │ │ │ ├── host_id_readfile.go │ │ │ │ ├── host_id_unsupported.go │ │ │ │ ├── host_id_windows.go │ │ │ │ ├── os.go │ │ │ │ ├── os_release_darwin.go │ │ │ │ ├── os_release_unix.go │ │ │ │ ├── os_unix.go │ │ │ │ ├── os_unsupported.go │ │ │ │ ├── os_windows.go │ │ │ │ ├── process.go │ │ │ │ └── resource.go │ │ │ ├── trace │ │ │ │ ├── README.md │ │ │ │ ├── batch_span_processor.go │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── evictedqueue.go │ │ │ │ ├── id_generator.go │ │ │ │ ├── link.go │ │ │ │ ├── provider.go │ │ │ │ ├── sampler_env.go │ │ │ │ ├── sampling.go │ │ │ │ ├── simple_span_processor.go │ │ │ │ ├── snapshot.go │ │ │ │ ├── span.go │ │ │ │ ├── span_exporter.go │ │ │ │ ├── span_limits.go │ │ │ │ ├── span_processor.go │ │ │ │ ├── tracer.go │ │ │ │ ├── tracetest │ │ │ │ │ ├── README.md │ │ │ │ │ ├── exporter.go │ │ │ │ │ ├── recorder.go │ │ │ │ │ └── span.go │ │ │ │ └── version.go │ │ │ └── version.go │ │ ├── semconv │ │ │ ├── v1.17.0 │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── exception.go │ │ │ │ ├── http.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ └── trace.go │ │ │ ├── v1.20.0 │ │ │ │ ├── README.md │ │ │ │ ├── attribute_group.go │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── exception.go │ │ │ │ ├── http.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ └── trace.go │ │ │ ├── v1.25.0 │ │ │ │ ├── README.md │ │ │ │ ├── attribute_group.go │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── exception.go │ │ │ │ ├── metric.go │ │ │ │ ├── resource.go │ │ │ │ ├── schema.go │ │ │ │ └── trace.go │ │ │ └── v1.26.0 │ │ │ │ ├── README.md │ │ │ │ ├── attribute_group.go │ │ │ │ ├── doc.go │ │ │ │ ├── exception.go │ │ │ │ ├── metric.go │ │ │ │ └── schema.go │ │ ├── trace.go │ │ ├── trace │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auto.go │ │ │ ├── config.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── embedded │ │ │ │ ├── README.md │ │ │ │ └── embedded.go │ │ │ ├── internal │ │ │ │ └── telemetry │ │ │ │ │ ├── attr.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── id.go │ │ │ │ │ ├── number.go │ │ │ │ │ ├── resource.go │ │ │ │ │ ├── scope.go │ │ │ │ │ ├── span.go │ │ │ │ │ ├── status.go │ │ │ │ │ ├── traces.go │ │ │ │ │ └── value.go │ │ │ ├── nonrecording.go │ │ │ ├── noop.go │ │ │ ├── noop │ │ │ │ ├── README.md │ │ │ │ └── noop.go │ │ │ ├── provider.go │ │ │ ├── span.go │ │ │ ├── trace.go │ │ │ ├── tracer.go │ │ │ └── tracestate.go │ │ ├── verify_readmes.sh │ │ ├── verify_released_changelog.sh │ │ ├── version.go │ │ └── versions.yaml │ └── proto │ │ └── otlp │ │ ├── LICENSE │ │ ├── collector │ │ └── trace │ │ │ └── v1 │ │ │ ├── trace_service.pb.go │ │ │ ├── trace_service.pb.gw.go │ │ │ └── trace_service_grpc.pb.go │ │ ├── common │ │ └── v1 │ │ │ └── common.pb.go │ │ ├── resource │ │ └── v1 │ │ │ └── resource.pb.go │ │ └── trace │ │ └── v1 │ │ └── trace.pb.go ├── golang.org │ └── x │ │ ├── exp │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── constraints │ │ │ └── constraints.go │ │ ├── mod │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── lazyregexp │ │ │ │ └── lazyre.go │ │ ├── module │ │ │ ├── module.go │ │ │ └── pseudo.go │ │ └── semver │ │ │ └── semver.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── ascii.go │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── config.go │ │ │ ├── config_go124.go │ │ │ ├── config_pre_go124.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── gotrack.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ ├── static_table.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── timer.go │ │ │ ├── transport.go │ │ │ ├── unencrypted.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_random.go │ │ │ └── writesched_roundrobin.go │ │ ├── idna │ │ │ ├── go118.go │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── pre_go118.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ ├── trie12.0.0.go │ │ │ ├── trie13.0.0.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── httpcommon │ │ │ │ ├── ascii.go │ │ │ │ ├── headermap.go │ │ │ │ └── request.go │ │ │ ├── socks │ │ │ │ ├── client.go │ │ │ │ └── socks.go │ │ │ └── timeseries │ │ │ │ └── timeseries.go │ │ ├── proxy │ │ │ ├── dial.go │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── proxy.go │ │ │ └── socks5.go │ │ └── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ └── trace.go │ │ ├── sync │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── errgroup │ │ │ └── errgroup.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cpu │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_x86_gc.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── cpu_darwin_x86.go │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_gc_s390x.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gc_x86.s │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_gccgo_s390x.go │ │ │ ├── cpu_gccgo_x86.c │ │ │ ├── cpu_gccgo_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_linux_arm.go │ │ │ ├── cpu_linux_arm64.go │ │ │ ├── cpu_linux_loong64.go │ │ │ ├── cpu_linux_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_riscv64.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_loong64.go │ │ │ ├── cpu_loong64.s │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_netbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.s │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_other_ppc64x.go │ │ │ ├── cpu_other_riscv64.go │ │ │ ├── cpu_other_x86.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_s390x.s │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_x86.go │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_zos_s390x.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── hwcap_linux.go │ │ │ ├── parse.go │ │ │ ├── proc_cpuinfo_linux.go │ │ │ ├── runtime_auxv.go │ │ │ ├── runtime_auxv_go121.go │ │ │ ├── syscall_aix_gccgo.go │ │ │ ├── syscall_aix_ppc64_gc.go │ │ │ └── syscall_darwin_x86_gc.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_bsd_ppc64.s │ │ │ ├── asm_bsd_riscv64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── auxv.go │ │ │ ├── auxv_unsupported.go │ │ │ ├── bluetooth_linux.go │ │ │ ├── bpxsvc_zos.go │ │ │ ├── bpxsvc_zos.s │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_signed.go │ │ │ ├── ioctl_unsigned.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mmap_nomremap.go │ │ │ ├── mremap.go │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── sockcmsg_zos.go │ │ │ ├── symaddr_zos_s390x.s │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ ├── syscall_hurd.go │ │ │ ├── syscall_hurd_386.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_alarm.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_loong64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_libc.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── sysvshm_linux.go │ │ │ ├── sysvshm_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── vgetrandom_linux.go │ │ │ ├── vgetrandom_unsupported.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_loong64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsymaddr_zos_s390x.s │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_loong64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_386.s │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_loong64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_loong64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mkerrors.bash │ │ │ ├── mkknownfolderids.bash │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── registry │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── setupapi_windows.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ ├── types_windows_arm64.go │ │ │ ├── zerrors_windows.go │ │ │ ├── zknownfolderids_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── secure │ │ │ └── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ ├── transform │ │ │ └── transform.go │ │ └── unicode │ │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ │ ├── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cmd │ │ │ ├── goimports │ │ │ │ ├── doc.go │ │ │ │ ├── goimports.go │ │ │ │ ├── goimports_gc.go │ │ │ │ ├── goimports_not_gc.go │ │ │ │ └── gotypesalias.go │ │ │ └── stringer │ │ │ │ ├── gotypesalias.go │ │ │ │ └── stringer.go │ │ ├── go │ │ │ ├── ast │ │ │ │ └── astutil │ │ │ │ │ ├── enclosing.go │ │ │ │ │ ├── imports.go │ │ │ │ │ ├── rewrite.go │ │ │ │ │ └── util.go │ │ │ ├── gcexportdata │ │ │ │ ├── gcexportdata.go │ │ │ │ └── importer.go │ │ │ ├── packages │ │ │ │ ├── doc.go │ │ │ │ ├── external.go │ │ │ │ ├── golist.go │ │ │ │ ├── golist_overlay.go │ │ │ │ ├── loadmode_string.go │ │ │ │ ├── packages.go │ │ │ │ └── visit.go │ │ │ └── types │ │ │ │ ├── objectpath │ │ │ │ └── objectpath.go │ │ │ │ └── typeutil │ │ │ │ ├── callee.go │ │ │ │ ├── imports.go │ │ │ │ ├── map.go │ │ │ │ ├── methodsetcache.go │ │ │ │ └── ui.go │ │ └── internal │ │ │ ├── aliases │ │ │ ├── aliases.go │ │ │ └── aliases_go122.go │ │ │ ├── event │ │ │ ├── core │ │ │ │ ├── event.go │ │ │ │ ├── export.go │ │ │ │ └── fast.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── keys │ │ │ │ ├── keys.go │ │ │ │ ├── standard.go │ │ │ │ └── util.go │ │ │ └── label │ │ │ │ └── label.go │ │ │ ├── gcimporter │ │ │ ├── bimport.go │ │ │ ├── exportdata.go │ │ │ ├── gcimporter.go │ │ │ ├── iexport.go │ │ │ ├── iimport.go │ │ │ ├── iimport_go122.go │ │ │ ├── predeclared.go │ │ │ ├── support.go │ │ │ └── ureader_yes.go │ │ │ ├── gocommand │ │ │ ├── invoke.go │ │ │ ├── invoke_notunix.go │ │ │ ├── invoke_unix.go │ │ │ ├── vendor.go │ │ │ └── version.go │ │ │ ├── gopathwalk │ │ │ └── walk.go │ │ │ ├── imports │ │ │ ├── fix.go │ │ │ ├── imports.go │ │ │ ├── mod.go │ │ │ ├── mod_cache.go │ │ │ ├── sortimports.go │ │ │ ├── source.go │ │ │ ├── source_env.go │ │ │ └── source_modindex.go │ │ │ ├── modindex │ │ │ ├── directories.go │ │ │ ├── index.go │ │ │ ├── lookup.go │ │ │ ├── modindex.go │ │ │ ├── symbols.go │ │ │ └── types.go │ │ │ ├── packagesinternal │ │ │ └── packages.go │ │ │ ├── pkgbits │ │ │ ├── codes.go │ │ │ ├── decoder.go │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── flags.go │ │ │ ├── reloc.go │ │ │ ├── support.go │ │ │ ├── sync.go │ │ │ ├── syncmarker_string.go │ │ │ └── version.go │ │ │ ├── stdlib │ │ │ ├── manifest.go │ │ │ └── stdlib.go │ │ │ ├── typeparams │ │ │ ├── common.go │ │ │ ├── coretype.go │ │ │ ├── free.go │ │ │ ├── normalize.go │ │ │ ├── termlist.go │ │ │ └── typeterm.go │ │ │ ├── typesinternal │ │ │ ├── element.go │ │ │ ├── errorcode.go │ │ │ ├── errorcode_string.go │ │ │ ├── qualifier.go │ │ │ ├── recv.go │ │ │ ├── toonew.go │ │ │ ├── types.go │ │ │ ├── varkind.go │ │ │ └── zerovalue.go │ │ │ └── versions │ │ │ ├── features.go │ │ │ ├── gover.go │ │ │ ├── types.go │ │ │ └── versions.go │ │ └── xerrors │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── adaptor.go │ │ ├── codereview.cfg │ │ ├── doc.go │ │ ├── errors.go │ │ ├── fmt.go │ │ ├── format.go │ │ ├── frame.go │ │ ├── internal │ │ └── internal.go │ │ └── wrap.go ├── google.golang.org │ ├── genproto │ │ └── googleapis │ │ │ ├── api │ │ │ ├── LICENSE │ │ │ ├── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── client.pb.go │ │ │ │ ├── field_behavior.pb.go │ │ │ │ ├── field_info.pb.go │ │ │ │ ├── http.pb.go │ │ │ │ ├── resource.pb.go │ │ │ │ └── routing.pb.go │ │ │ ├── httpbody │ │ │ │ └── httpbody.pb.go │ │ │ └── launch_stage.pb.go │ │ │ └── rpc │ │ │ ├── LICENSE │ │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ │ └── status │ │ │ └── status.pb.go │ ├── grpc │ │ ├── AUTHORS │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── attributes │ │ │ └── attributes.go │ │ ├── backoff.go │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ ├── balancer.go │ │ │ ├── base │ │ │ │ ├── balancer.go │ │ │ │ └── base.go │ │ │ ├── conn_state_evaluator.go │ │ │ ├── endpointsharding │ │ │ │ └── endpointsharding.go │ │ │ ├── grpclb │ │ │ │ └── state │ │ │ │ │ └── state.go │ │ │ ├── pickfirst │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ ├── pickfirst.go │ │ │ │ └── pickfirstleaf │ │ │ │ │ └── pickfirstleaf.go │ │ │ ├── roundrobin │ │ │ │ └── roundrobin.go │ │ │ └── subconn.go │ │ ├── balancer_wrapper.go │ │ ├── binarylog │ │ │ └── grpc_binarylog_v1 │ │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── channelz │ │ │ └── channelz.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codes │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ ├── connectivity │ │ │ └── connectivity.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── insecure │ │ │ │ └── insecure.go │ │ │ └── tls.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ ├── encoding_v2.go │ │ │ ├── gzip │ │ │ │ └── gzip.go │ │ │ └── proto │ │ │ │ └── proto.go │ │ ├── experimental │ │ │ └── stats │ │ │ │ ├── metricregistry.go │ │ │ │ └── metrics.go │ │ ├── grpclog │ │ │ ├── component.go │ │ │ ├── grpclog.go │ │ │ ├── internal │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── health │ │ │ ├── client.go │ │ │ ├── grpc_health_v1 │ │ │ │ ├── health.pb.go │ │ │ │ └── health_grpc.pb.go │ │ │ ├── logging.go │ │ │ ├── producer.go │ │ │ └── server.go │ │ ├── interceptor.go │ │ ├── internal │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── balancer │ │ │ │ └── gracefulswitch │ │ │ │ │ ├── config.go │ │ │ │ │ └── gracefulswitch.go │ │ │ ├── balancerload │ │ │ │ └── load.go │ │ │ ├── binarylog │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ └── sink.go │ │ │ ├── buffer │ │ │ │ └── unbounded.go │ │ │ ├── channelz │ │ │ │ ├── channel.go │ │ │ │ ├── channelmap.go │ │ │ │ ├── funcs.go │ │ │ │ ├── logging.go │ │ │ │ ├── server.go │ │ │ │ ├── socket.go │ │ │ │ ├── subchannel.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_nonlinux.go │ │ │ │ └── trace.go │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── spiffe.go │ │ │ │ ├── syscallconn.go │ │ │ │ └── util.go │ │ │ ├── envconfig │ │ │ │ ├── envconfig.go │ │ │ │ ├── observability.go │ │ │ │ └── xds.go │ │ │ ├── experimental.go │ │ │ ├── grpclog │ │ │ │ └── prefix_logger.go │ │ │ ├── grpcsync │ │ │ │ ├── callback_serializer.go │ │ │ │ ├── event.go │ │ │ │ └── pubsub.go │ │ │ ├── grpcutil │ │ │ │ ├── compressor.go │ │ │ │ ├── encode_duration.go │ │ │ │ ├── grpcutil.go │ │ │ │ ├── metadata.go │ │ │ │ ├── method.go │ │ │ │ └── regex.go │ │ │ ├── idle │ │ │ │ └── idle.go │ │ │ ├── internal.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── pretty │ │ │ │ └── pretty.go │ │ │ ├── proxyattributes │ │ │ │ └── proxyattributes.go │ │ │ ├── resolver │ │ │ │ ├── config_selector.go │ │ │ │ ├── delegatingresolver │ │ │ │ │ └── delegatingresolver.go │ │ │ │ ├── dns │ │ │ │ │ ├── dns_resolver.go │ │ │ │ │ └── internal │ │ │ │ │ │ └── internal.go │ │ │ │ ├── passthrough │ │ │ │ │ └── passthrough.go │ │ │ │ └── unix │ │ │ │ │ └── unix.go │ │ │ ├── serviceconfig │ │ │ │ ├── duration.go │ │ │ │ └── serviceconfig.go │ │ │ ├── stats │ │ │ │ ├── labels.go │ │ │ │ └── metrics_recorder_list.go │ │ │ ├── status │ │ │ │ └── status.go │ │ │ ├── syscall │ │ │ │ ├── syscall_linux.go │ │ │ │ └── syscall_nonlinux.go │ │ │ ├── tcp_keepalive_others.go │ │ │ ├── tcp_keepalive_unix.go │ │ │ ├── tcp_keepalive_windows.go │ │ │ └── transport │ │ │ │ ├── bdp_estimator.go │ │ │ │ ├── client_stream.go │ │ │ │ ├── controlbuf.go │ │ │ │ ├── defaults.go │ │ │ │ ├── flowcontrol.go │ │ │ │ ├── handler_server.go │ │ │ │ ├── http2_client.go │ │ │ │ ├── http2_server.go │ │ │ │ ├── http_util.go │ │ │ │ ├── logging.go │ │ │ │ ├── networktype │ │ │ │ └── networktype.go │ │ │ │ ├── proxy.go │ │ │ │ ├── server_stream.go │ │ │ │ └── transport.go │ │ ├── keepalive │ │ │ └── keepalive.go │ │ ├── mem │ │ │ ├── buffer_pool.go │ │ │ ├── buffer_slice.go │ │ │ └── buffers.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── peer │ │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── preloader.go │ │ ├── reflection │ │ │ ├── README.md │ │ │ ├── adapt.go │ │ │ ├── grpc_reflection_v1 │ │ │ │ ├── reflection.pb.go │ │ │ │ └── reflection_grpc.pb.go │ │ │ ├── grpc_reflection_v1alpha │ │ │ │ ├── reflection.pb.go │ │ │ │ └── reflection_grpc.pb.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ └── serverreflection.go │ │ ├── resolver │ │ │ ├── dns │ │ │ │ └── dns_resolver.go │ │ │ ├── map.go │ │ │ └── resolver.go │ │ ├── resolver_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── serviceconfig │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── handlers.go │ │ │ ├── metrics.go │ │ │ └── stats.go │ │ ├── status │ │ │ └── status.go │ │ ├── stream.go │ │ ├── stream_interfaces.go │ │ ├── tap │ │ │ └── tap.go │ │ ├── trace.go │ │ ├── trace_notrace.go │ │ ├── trace_withtrace.go │ │ └── version.go │ └── protobuf │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ ├── protodelim │ │ │ └── protodelim.go │ │ ├── protojson │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── well_known_types.go │ │ ├── prototext │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire │ │ │ └── wire.go │ │ ├── internal │ │ ├── descfmt │ │ │ └── stringer.go │ │ ├── descopts │ │ │ └── options.go │ │ ├── detrand │ │ │ └── rand.go │ │ ├── editiondefaults │ │ │ ├── defaults.go │ │ │ └── editions_defaults.binpb │ │ ├── editionssupport │ │ │ └── editions.go │ │ ├── encoding │ │ │ ├── defval │ │ │ │ └── default.go │ │ │ ├── json │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ └── encode.go │ │ │ ├── messageset │ │ │ │ └── messageset.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── text │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── filedesc │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ ├── editions.go │ │ │ └── placeholder.go │ │ ├── filetype │ │ │ └── build.go │ │ ├── flags │ │ │ ├── flags.go │ │ │ ├── proto_legacy_disable.go │ │ │ └── proto_legacy_enable.go │ │ ├── genid │ │ │ ├── any_gen.go │ │ │ ├── api_gen.go │ │ │ ├── descriptor_gen.go │ │ │ ├── doc.go │ │ │ ├── duration_gen.go │ │ │ ├── empty_gen.go │ │ │ ├── field_mask_gen.go │ │ │ ├── go_features_gen.go │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── name.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl │ │ │ ├── api_export.go │ │ │ ├── api_export_opaque.go │ │ │ ├── bitmap.go │ │ │ ├── bitmap_race.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_field_opaque.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_message.go │ │ │ ├── codec_message_opaque.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── equal.go │ │ │ ├── extension.go │ │ │ ├── lazy.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_opaque.go │ │ │ ├── message_opaque_gen.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_field_gen.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_opaque.go │ │ │ ├── presence.go │ │ │ └── validate.go │ │ ├── order │ │ │ ├── order.go │ │ │ └── range.go │ │ ├── pragma │ │ │ └── pragma.go │ │ ├── protolazy │ │ │ ├── bufferreader.go │ │ │ ├── lazy.go │ │ │ └── pointer_unsafe.go │ │ ├── set │ │ │ └── ints.go │ │ ├── strs │ │ │ ├── strings.go │ │ │ └── strings_unsafe.go │ │ └── version │ │ │ └── version.go │ │ ├── proto │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ ├── wrapperopaque.go │ │ └── wrappers.go │ │ ├── protoadapt │ │ └── convert.go │ │ ├── reflect │ │ ├── protodesc │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_resolve.go │ │ │ ├── desc_validate.go │ │ │ ├── editions.go │ │ │ └── proto.go │ │ ├── protoreflect │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── source_gen.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_equal.go │ │ │ ├── value_union.go │ │ │ └── value_unsafe.go │ │ └── protoregistry │ │ │ └── registry.go │ │ ├── runtime │ │ ├── protoiface │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl │ │ │ ├── impl.go │ │ │ └── version.go │ │ └── types │ │ ├── descriptorpb │ │ └── descriptor.pb.go │ │ ├── gofeaturespb │ │ └── go_features.pb.go │ │ └── known │ │ ├── anypb │ │ └── any.pb.go │ │ ├── durationpb │ │ └── duration.pb.go │ │ ├── emptypb │ │ └── empty.pb.go │ │ ├── fieldmaskpb │ │ └── field_mask.pb.go │ │ ├── structpb │ │ └── struct.pb.go │ │ ├── timestamppb │ │ └── timestamp.pb.go │ │ └── wrapperspb │ │ └── wrappers.pb.go ├── gopkg.in │ ├── fsnotify │ │ └── fsnotify.v1 │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── modules.txt ├── webpack.config.ts └── yarn.lock /.config/.cprc.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "5.19.0" 3 | } 4 | -------------------------------------------------------------------------------- /.config/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/.eslintrc -------------------------------------------------------------------------------- /.config/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/.prettierrc.js -------------------------------------------------------------------------------- /.config/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/Dockerfile -------------------------------------------------------------------------------- /.config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/README.md -------------------------------------------------------------------------------- /.config/docker-compose-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/docker-compose-base.yaml -------------------------------------------------------------------------------- /.config/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/entrypoint.sh -------------------------------------------------------------------------------- /.config/jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/jest-setup.js -------------------------------------------------------------------------------- /.config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/jest.config.js -------------------------------------------------------------------------------- /.config/jest/mocks/react-inlinesvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/jest/mocks/react-inlinesvg.tsx -------------------------------------------------------------------------------- /.config/jest/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/jest/utils.js -------------------------------------------------------------------------------- /.config/supervisord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/supervisord/supervisord.conf -------------------------------------------------------------------------------- /.config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/tsconfig.json -------------------------------------------------------------------------------- /.config/types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/types/custom.d.ts -------------------------------------------------------------------------------- /.config/webpack/BuildModeWebpackPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/webpack/BuildModeWebpackPlugin.ts -------------------------------------------------------------------------------- /.config/webpack/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/webpack/constants.ts -------------------------------------------------------------------------------- /.config/webpack/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/webpack/utils.ts -------------------------------------------------------------------------------- /.config/webpack/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.config/webpack/webpack.config.ts -------------------------------------------------------------------------------- /.cprc.json: -------------------------------------------------------------------------------- 1 | { 2 | "features": {} 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-checks-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/workflows/pr-checks-backend.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/workflows/pr-checks-frontend.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/workflows/pr-checks-plugin.yml -------------------------------------------------------------------------------- /.github/workflows/pr-codeql-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/workflows/pr-codeql-backend.yml -------------------------------------------------------------------------------- /.github/workflows/pr-codeql-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/workflows/pr-codeql-frontend.yml -------------------------------------------------------------------------------- /.github/workflows/pr-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/workflows/pr-merge.yml -------------------------------------------------------------------------------- /.github/workflows/pr-test-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/workflows/pr-test-build.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/LICENSE -------------------------------------------------------------------------------- /Magefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/Magefile.go -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/compose.yaml -------------------------------------------------------------------------------- /docs/assets/explore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/docs/assets/explore.webp -------------------------------------------------------------------------------- /docs/assets/provision_datasources.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/docs/assets/provision_datasources.webp -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/go.sum -------------------------------------------------------------------------------- /jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/jest-setup.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/jest.config.js -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/mise.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/package.json -------------------------------------------------------------------------------- /pkg/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/main.go -------------------------------------------------------------------------------- /pkg/plugin/datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/datasource.go -------------------------------------------------------------------------------- /pkg/plugin/datasource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/datasource_test.go -------------------------------------------------------------------------------- /pkg/plugin/fields_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/fields_query.go -------------------------------------------------------------------------------- /pkg/plugin/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/query.go -------------------------------------------------------------------------------- /pkg/plugin/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/query_test.go -------------------------------------------------------------------------------- /pkg/plugin/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/response.go -------------------------------------------------------------------------------- /pkg/plugin/response_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/response_test.go -------------------------------------------------------------------------------- /pkg/plugin/test-data/ANSI_chars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/ANSI_chars -------------------------------------------------------------------------------- /pkg/plugin/test-data/correct_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/correct_response -------------------------------------------------------------------------------- /pkg/plugin/test-data/different_labels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/different_labels -------------------------------------------------------------------------------- /pkg/plugin/test-data/double_labels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/double_labels -------------------------------------------------------------------------------- /pkg/plugin/test-data/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/plugin/test-data/empty_stream: -------------------------------------------------------------------------------- 1 | {"_time":"2024-02-20", "_stream":"{}"} 2 | -------------------------------------------------------------------------------- /pkg/plugin/test-data/incorrect_response: -------------------------------------------------------------------------------- 1 | abcd 2 | -------------------------------------------------------------------------------- /pkg/plugin/test-data/incorrect_time: -------------------------------------------------------------------------------- 1 | {"_time":"acdf"} 2 | -------------------------------------------------------------------------------- /pkg/plugin/test-data/invalid_stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/invalid_stream -------------------------------------------------------------------------------- /pkg/plugin/test-data/large_msg_response_2MB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/large_msg_response_2MB -------------------------------------------------------------------------------- /pkg/plugin/test-data/no_standard_fields: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/no_standard_fields -------------------------------------------------------------------------------- /pkg/plugin/test-data/only_one_label: -------------------------------------------------------------------------------- 1 | {"level":""} 2 | -------------------------------------------------------------------------------- /pkg/plugin/test-data/stats_empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/stats_empty -------------------------------------------------------------------------------- /pkg/plugin/test-data/stats_incorrect_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/stats_incorrect_response -------------------------------------------------------------------------------- /pkg/plugin/test-data/stats_range_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/stats_range_response -------------------------------------------------------------------------------- /pkg/plugin/test-data/stats_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/stats_response -------------------------------------------------------------------------------- /pkg/plugin/test-data/stream_and_free_field: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/stream_and_free_field -------------------------------------------------------------------------------- /pkg/plugin/test-data/time_field_empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/time_field_empty -------------------------------------------------------------------------------- /pkg/plugin/test-data/unicode_present: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/plugin/test-data/unicode_present -------------------------------------------------------------------------------- /pkg/utils/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/utils/pointer.go -------------------------------------------------------------------------------- /pkg/utils/pointer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/utils/pointer_test.go -------------------------------------------------------------------------------- /pkg/utils/stream_fields_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/utils/stream_fields_parser.go -------------------------------------------------------------------------------- /pkg/utils/stream_fields_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/utils/stream_fields_parser_test.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /pkg/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/pkg/utils/utils_test.go -------------------------------------------------------------------------------- /plugincheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/plugincheck.yaml -------------------------------------------------------------------------------- /provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/provisioning/README.md -------------------------------------------------------------------------------- /provisioning/datasources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /provisioning/datasources/datasources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/provisioning/datasources/datasources.yml -------------------------------------------------------------------------------- /src/LogsQL/regExpOperator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/LogsQL/regExpOperator.test.ts -------------------------------------------------------------------------------- /src/LogsQL/regExpOperator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/LogsQL/regExpOperator.ts -------------------------------------------------------------------------------- /src/LogsQL/statsPipeFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/LogsQL/statsPipeFunctions.ts -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/README.md -------------------------------------------------------------------------------- /src/__mocks__/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/__mocks__/datasource.ts -------------------------------------------------------------------------------- /src/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/_index.md -------------------------------------------------------------------------------- /src/backendResultTransformer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/backendResultTransformer.test.ts -------------------------------------------------------------------------------- /src/backendResultTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/backendResultTransformer.ts -------------------------------------------------------------------------------- /src/components/CompatibleAsyncSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/CompatibleAsyncSelect.tsx -------------------------------------------------------------------------------- /src/components/CompatibleSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/CompatibleSelect.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/EditorField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/EditorField.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/EditorHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/EditorHeader.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/EditorRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/EditorRow.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/QueryCodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/QueryCodeEditor.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/QueryEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/QueryEditor.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/QueryEditorHelp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/QueryEditorHelp.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/QueryField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/QueryField.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/VmuiLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/VmuiLink.tsx -------------------------------------------------------------------------------- /src/components/QueryEditor/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/constants.ts -------------------------------------------------------------------------------- /src/components/QueryEditor/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditor/state.ts -------------------------------------------------------------------------------- /src/components/QueryEditorStatsWarn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/components/QueryEditorStatsWarn.tsx -------------------------------------------------------------------------------- /src/configuration/AlertingSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/AlertingSettings.tsx -------------------------------------------------------------------------------- /src/configuration/ConfigEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/ConfigEditor.tsx -------------------------------------------------------------------------------- /src/configuration/DebugSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/DebugSection.tsx -------------------------------------------------------------------------------- /src/configuration/DerivedField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/DerivedField.tsx -------------------------------------------------------------------------------- /src/configuration/DerivedFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/DerivedFields.tsx -------------------------------------------------------------------------------- /src/configuration/HelpfulLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/HelpfulLinks.tsx -------------------------------------------------------------------------------- /src/configuration/LimitSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/LimitSettings.tsx -------------------------------------------------------------------------------- /src/configuration/LogLevelRules/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/LogLevelRules/const.ts -------------------------------------------------------------------------------- /src/configuration/LogLevelRules/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/LogLevelRules/types.ts -------------------------------------------------------------------------------- /src/configuration/LogLevelRules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/LogLevelRules/utils.ts -------------------------------------------------------------------------------- /src/configuration/LogsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/LogsSettings.tsx -------------------------------------------------------------------------------- /src/configuration/QuerySettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/QuerySettings.tsx -------------------------------------------------------------------------------- /src/configuration/TenantSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/TenantSettings.tsx -------------------------------------------------------------------------------- /src/configuration/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/configuration/utils.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/datasource.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/datasource.test.ts -------------------------------------------------------------------------------- /src/datasource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/datasource.ts -------------------------------------------------------------------------------- /src/getDerivedFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/getDerivedFields.ts -------------------------------------------------------------------------------- /src/img/alerting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/alerting.png -------------------------------------------------------------------------------- /src/img/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/dashboard.png -------------------------------------------------------------------------------- /src/img/datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/datasource.png -------------------------------------------------------------------------------- /src/img/derived_fields_cfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/derived_fields_cfg.png -------------------------------------------------------------------------------- /src/img/derived_fields_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/derived_fields_explore.png -------------------------------------------------------------------------------- /src/img/explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/explore.png -------------------------------------------------------------------------------- /src/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/logo.svg -------------------------------------------------------------------------------- /src/img/multitenancy_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/multitenancy_configuration.png -------------------------------------------------------------------------------- /src/img/panel_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/panel_logs.png -------------------------------------------------------------------------------- /src/img/panel_stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/panel_stat.png -------------------------------------------------------------------------------- /src/img/panel_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/panel_table.png -------------------------------------------------------------------------------- /src/img/panel_table_transformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/panel_table_transformation.png -------------------------------------------------------------------------------- /src/img/panel_time_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/panel_time_series.png -------------------------------------------------------------------------------- /src/img/trace_to_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/img/trace_to_logs.png -------------------------------------------------------------------------------- /src/languageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/languageUtils.ts -------------------------------------------------------------------------------- /src/language_provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/language_provider.ts -------------------------------------------------------------------------------- /src/logsVolumeLegacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/logsVolumeLegacy.ts -------------------------------------------------------------------------------- /src/makeTableFrames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/makeTableFrames.ts -------------------------------------------------------------------------------- /src/modifyQuery.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/modifyQuery.test.ts -------------------------------------------------------------------------------- /src/modifyQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/modifyQuery.ts -------------------------------------------------------------------------------- /src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/module.ts -------------------------------------------------------------------------------- /src/parsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/parsing.test.ts -------------------------------------------------------------------------------- /src/parsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/parsing.ts -------------------------------------------------------------------------------- /src/parsingUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/parsingUtils.test.ts -------------------------------------------------------------------------------- /src/parsingUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/parsingUtils.ts -------------------------------------------------------------------------------- /src/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/plugin.json -------------------------------------------------------------------------------- /src/queryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/queryUtils.ts -------------------------------------------------------------------------------- /src/regexUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/regexUtils.ts -------------------------------------------------------------------------------- /src/responseUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/responseUtils.ts -------------------------------------------------------------------------------- /src/store/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/store/constants.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/replaceAllOptionInQuery.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/utils/replaceAllOptionInQuery.test.ts -------------------------------------------------------------------------------- /src/utils/replaceAllOptionInQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/utils/replaceAllOptionInQuery.ts -------------------------------------------------------------------------------- /src/utils/timeUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/utils/timeUtils.test.ts -------------------------------------------------------------------------------- /src/utils/timeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/utils/timeUtils.ts -------------------------------------------------------------------------------- /src/variableSupport/VariableSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/src/variableSupport/VariableSupport.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/README.md -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/decode.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/encode.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/error.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/meta.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/type_toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/BurntSushi/toml/type_toml.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/cenkalti/backoff/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v4/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/cenkalti/backoff/v4/retry.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v4/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/cenkalti/backoff/v4/timer.go -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/v4/tries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/cenkalti/backoff/v4/tries.go -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/cespare/xxhash/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/testall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/cespare/xxhash/v2/testall.sh -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/xxhash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/cespare/xxhash/v2/xxhash.go -------------------------------------------------------------------------------- /vendor/github.com/cheekybits/genny/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/cheekybits/genny/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/chromedp/cdproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/chromedp/cdproto/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/chromedp/cdproto/har/har.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/chromedp/cdproto/har/har.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/README.md -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/actions.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/all.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/all.bash -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/ca.pem -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/certs.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/chunked.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/chunked.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/ctx.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/doc.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/h2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/h2.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/http.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/https.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/https.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/key.pem -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/logger.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/proxy.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/responses.go -------------------------------------------------------------------------------- /vendor/github.com/elazarl/goproxy/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/elazarl/goproxy/websocket.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/fatih/color/color_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/getkin/kin-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/getkin/kin-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/.golangci.yaml -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/context_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/context_slog.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/funcr/funcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/funcr/funcr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/sloghandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/sloghandler.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | *.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/BENCHMARK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/BENCHMARK.md -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/convert.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/file.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/loading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/loading.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/split.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/.codecov.yml -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/Makefile -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/README.md -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/color.go -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/decode.go -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/encode.go -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/error.go -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/json.go -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/option.go -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/path.go -------------------------------------------------------------------------------- /vendor/github.com/goccy/go-json/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/goccy/go-json/query.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/types/any.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gogo/protobuf/types/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/flatbuffers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/flatbuffers/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/flatbuffers/go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/flatbuffers/go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/flatbuffers/go/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/flatbuffers/go/lib.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/go-cmp/cmp/compare.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/go-cmp/cmp/export.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/go-cmp/cmp/options.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/go-cmp/cmp/path.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/go-cmp/cmp/report.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/version6.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/google/uuid/version7.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/middleware.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/gorilla/mux/test_helpers.go -------------------------------------------------------------------------------- /vendor/github.com/grafana/pyroscope-go/godeltaprof/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/.gitignore: -------------------------------------------------------------------------------- 1 | .idea* -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-hclog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-hclog/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-hclog/global.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-hclog/logger.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/stdlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-hclog/stdlog.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-hclog/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-hclog/writer.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-plugin/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-plugin/buf.yaml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-plugin/error.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/mtls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/go-plugin/mtls.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-plugin/process.go: -------------------------------------------------------------------------------- 1 | // Copyright (c) HashiCorp, Inc. 2 | // SPDX-License-Identifier: MPL-2.0 3 | 4 | package plugin 5 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/addr.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/const.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/session.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/spec.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/stream.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/yamux/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/hashicorp/yamux/util.go -------------------------------------------------------------------------------- /vendor/github.com/josharian/intern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/josharian/intern/README.md -------------------------------------------------------------------------------- /vendor/github.com/josharian/intern/intern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/josharian/intern/intern.go -------------------------------------------------------------------------------- /vendor/github.com/josharian/intern/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/josharian/intern/license.md -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/adapter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/any_bool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/any_nil.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/any_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/config.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/iter_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/iter_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/jsoniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/jsoniter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/reflect.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/stream.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/jszwedko/go-datemath/.gitignore: -------------------------------------------------------------------------------- 1 | y.output 2 | -------------------------------------------------------------------------------- /vendor/github.com/jszwedko/go-datemath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/jszwedko/go-datemath/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/klauspost/compress/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/klauspost/cpuid/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/magefile/mage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/magefile/mage/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/magefile/mage/mg/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/magefile/mage/mg/color.go -------------------------------------------------------------------------------- /vendor/github.com/magefile/mage/mg/deps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/magefile/mage/mg/deps.go -------------------------------------------------------------------------------- /vendor/github.com/magefile/mage/mg/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/magefile/mage/mg/errors.go -------------------------------------------------------------------------------- /vendor/github.com/magefile/mage/mg/fn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/magefile/mage/mg/fn.go -------------------------------------------------------------------------------- /vendor/github.com/magefile/mage/sh/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/magefile/mage/sh/cmd.go -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/.gitignore: -------------------------------------------------------------------------------- 1 | .root 2 | *_easyjson.go 3 | *.iml 4 | .idea 5 | *.swp 6 | bin/* 7 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mailru/easyjson/Makefile -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mailru/easyjson/README.md -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mailru/easyjson/helpers.go -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mailru/easyjson/raw.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mattn/go-isatty/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mattn/go-isatty/go.test.sh -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mattn/go-runewidth/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mohae/deepcopy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mohae/deepcopy/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/mohae/deepcopy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mohae/deepcopy/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mohae/deepcopy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mohae/deepcopy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mohae/deepcopy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mohae/deepcopy/README.md -------------------------------------------------------------------------------- /vendor/github.com/mohae/deepcopy/deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/mohae/deepcopy/deepcopy.go -------------------------------------------------------------------------------- /vendor/github.com/munnerz/goautoneg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/munnerz/goautoneg/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/munnerz/goautoneg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/munnerz/goautoneg/Makefile -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/README.md -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/apic.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/decode.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/emitterc.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/encode.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/origin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/origin.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/parserc.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/readerc.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/resolve.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/scannerc.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/sorter.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/writerc.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/oasdiff/yaml3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oasdiff/yaml3/yamlh.go -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oklog/run/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oklog/run/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oklog/run/README.md -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/actors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oklog/run/actors.go -------------------------------------------------------------------------------- /vendor/github.com/oklog/run/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/oklog/run/group.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/pierrec/lz4/v4/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/pierrec/lz4/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/pierrec/lz4/v4/README.md -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/lz4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/pierrec/lz4/v4/lz4.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/pierrec/lz4/v4/options.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/pierrec/lz4/v4/reader.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/pierrec/lz4/v4/state.go -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/pierrec/lz4/v4/writer.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/arp.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/slab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/slab.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/swaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/swaps.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/prometheus/procfs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/README.md -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/doc.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/grapheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/grapheme.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/line.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/linerules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/linerules.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/properties.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/sentence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/sentence.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/step.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/width.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/word.go -------------------------------------------------------------------------------- /vendor/github.com/rivo/uniseg/wordrules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/rivo/uniseg/wordrules.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/bra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/bra/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/unknwon/bra/cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/bra/cmd/cmd.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/bra/cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/bra/cmd/init.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/bra/cmd/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/bra/cmd/run.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/bra/cmd/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/bra/cmd/sync.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/README.md -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/cmd.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/convert.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/dir.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/file.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/html.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/http.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/math.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/path.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/regex.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/slice.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/string.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/time.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/com/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/com/url.go -------------------------------------------------------------------------------- /vendor/github.com/unknwon/log/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/log/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/unknwon/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/log/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/unknwon/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/log/README.md -------------------------------------------------------------------------------- /vendor/github.com/unknwon/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/unknwon/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/README.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/app.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/category.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/command.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/context.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/docs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/errors.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/fish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/fish.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag_bool.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_bool_t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag_bool_t.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag_float64.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag_generic.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag_int.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag_int64.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag_string.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag_uint.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/flag_uint64.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/help.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/parse.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/sort.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/urfave/cli/template.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/README.md -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/arena.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/arena.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/doc.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/handy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/handy.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/parser.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/pool.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/update.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastjson/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastjson/util.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastrand/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastrand/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/valyala/fastrand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/fastrand/README.md -------------------------------------------------------------------------------- /vendor/github.com/valyala/histogram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/valyala/histogram/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/.gitignore: -------------------------------------------------------------------------------- 1 | upstream 2 | *.pprof 3 | xxh3.test 4 | .vscode 5 | *.txt 6 | _compat 7 | -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/Makefile -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/README.md -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/_compat.c -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/consts.go -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/hash128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/hash128.go -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/hash128_seed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/hash128_seed.go -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/hash64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/hash64.go -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/hash64_seed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/hash64_seed.go -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/hasher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/hasher.go -------------------------------------------------------------------------------- /vendor/github.com/zeebo/xxh3/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/github.com/zeebo/xxh3/utils.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/auto/sdk/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/auto/sdk/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/auto/sdk/limit.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/auto/sdk/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/auto/sdk/span.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/.codespellrc -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/.gitignore -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/CODEOWNERS -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/README.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/RELEASING.md -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/codes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/codes/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/handler.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/metric.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/sdk/LICENSE -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/go.opentelemetry.io/otel/version.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/mod/module/module.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/mod/module/pseudo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/timer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/unencrypted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/unencrypted.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/pre_go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/tables11.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/tables12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/tables13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables15.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/tables15.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/trie12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/trie13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_loong64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_loong64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_loong64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_other_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_other_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_other_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/hwcap_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/hwcap_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/runtime_auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/cpu/runtime_auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ifreq_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/ifreq_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_signed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/ioctl_signed.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_hurd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/syscall_hurd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/sysvshm_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/packages/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/tools/go/packages/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/README -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/adaptor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/fmt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/golang.org/x/xerrors/wrap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/GOVERNANCE.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/MAINTAINERS.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/SECURITY.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/dialoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/dialoptions.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/mem/buffers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/mem/buffers.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/preloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/preloader.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify/fsnotify.v1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/fsnotify/fsnotify.v1/AUTHORS -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify/fsnotify.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/fsnotify/fsnotify.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify/fsnotify.v1/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/fsnotify/fsnotify.v1/fen.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/webpack.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/victorialogs-datasource/HEAD/yarn.lock --------------------------------------------------------------------------------