From bccbc1447bb57b485813c9c77de2e8e6f7a2cd52 Mon Sep 17 00:00:00 2001 From: Andrew Wilkins Date: Tue, 16 Nov 2021 21:00:40 +0800 Subject: [PATCH] Remove index management, always use data streams (#6606) * Remove index management, always use data streams - Remove `apm-server.ilm.*` config - Remove `apm-server.data_streams.enabled` config - Remove `setup.*` config - Remove `output.elasticsearch.{index,indices}` config - Stop building, including, and using libbeat fields * Update notice A bunch of transitive dependencies are removed, because we're no longer including the x-pack/libbeat processors. * Update README * Fix merge (cherry picked from commit 01d75ec0e231832487e739f2d4c174c9534208d3) --- Makefile | 12 +- NOTICE.txt | 6646 ++++------------- README.md | 39 +- _meta/beat.yml | 148 - apm-server.docker.yml | 148 - apm-server.yml | 148 - apmpackage/README.md | 3 +- beater/beater.go | 32 +- beater/beater_test.go | 6 +- beater/config/config.go | 4 +- beater/config/config_test.go | 3 - beater/config/data_streams.go | 3 - beater/config/rum.go | 2 +- beater/config/rum_test.go | 2 +- beater/config/sampling.go | 5 +- beater/config/sampling_test.go | 12 - beater/server_test.go | 41 +- beater/telemetry.go | 61 +- beater/telemetry_test.go | 36 - ...TestPublishIntegrationErrors.approved.json | 15 + ...TestPublishIntegrationEvents.approved.json | 12 + ...PublishIntegrationMetricsets.approved.json | 15 + ...lishIntegrationMinimalEvents.approved.json | 21 + ...IntegrationProfileCPUProfile.approved.json | 294 + ...ionProfileCPUProfileMetadata.approved.json | 294 + ...ntegrationProfileHeapProfile.approved.json | 126 + .../TestPublishIntegrationSpans.approved.json | 21 + ...blishIntegrationTransactions.approved.json | 15 + ...rationTransactionsHugeTraces.approved.json | 3 + beater/tracing_test.go | 6 +- changelogs/head.asciidoc | 1 + cmd/root.go | 45 +- idxmgmt/common/default.go | 40 - idxmgmt/datastreams.go | 71 - idxmgmt/feature.go | 44 - idxmgmt/ilm/config.go | 264 - idxmgmt/ilm/config_test.go | 214 - idxmgmt/ilm/supporter_factory.go | 51 - idxmgmt/ilm/supporter_factory_test.go | 55 - idxmgmt/ilm/template.go | 44 - idxmgmt/ilm/template_test.go | 56 - idxmgmt/manager.go | 264 - idxmgmt/manager_test.go | 464 -- idxmgmt/supporter.go | 152 - idxmgmt/supporter_factory.go | 197 +- idxmgmt/supporter_factory_test.go | 140 +- idxmgmt/supporter_test.go | 227 - idxmgmt/unmanaged/config.go | 82 - include/fields.go | 36 - magefile.go | 117 +- model/error/_meta/fields.yml | 933 --- model/metricset/_meta/fields.yml | 1002 --- model/profile/_meta/fields.yml | 812 -- model/sourcemap/_meta/fields.yml | 29 - model/span/_meta/fields.yml | 914 --- model/transaction/_meta/fields.yml | 1052 --- packaging/files/README.md.tmpl | 5 +- tests/_meta/fields.yml | 37 - x-pack/apm-server/cmd/root.go | 3 +- x-pack/apm-server/fields/_meta/fields.yml | 45 - x-pack/apm-server/include/fields.go | 23 - x-pack/apm-server/main.go | 4 - x-pack/apm-server/main_test.go | 1 - 63 files changed, 2581 insertions(+), 13016 deletions(-) delete mode 100644 idxmgmt/common/default.go delete mode 100644 idxmgmt/datastreams.go delete mode 100644 idxmgmt/feature.go delete mode 100644 idxmgmt/ilm/config.go delete mode 100644 idxmgmt/ilm/config_test.go delete mode 100644 idxmgmt/ilm/supporter_factory.go delete mode 100644 idxmgmt/ilm/supporter_factory_test.go delete mode 100644 idxmgmt/ilm/template.go delete mode 100644 idxmgmt/ilm/template_test.go delete mode 100644 idxmgmt/manager.go delete mode 100644 idxmgmt/manager_test.go delete mode 100644 idxmgmt/supporter.go delete mode 100644 idxmgmt/supporter_test.go delete mode 100644 idxmgmt/unmanaged/config.go delete mode 100644 include/fields.go delete mode 100644 model/error/_meta/fields.yml delete mode 100644 model/metricset/_meta/fields.yml delete mode 100644 model/profile/_meta/fields.yml delete mode 100644 model/sourcemap/_meta/fields.yml delete mode 100644 model/span/_meta/fields.yml delete mode 100644 model/transaction/_meta/fields.yml delete mode 100644 tests/_meta/fields.yml delete mode 100644 x-pack/apm-server/fields/_meta/fields.yml delete mode 100644 x-pack/apm-server/include/fields.go diff --git a/Makefile b/Makefile index 9684df78e0f..7628fdcdafc 100644 --- a/Makefile +++ b/Makefile @@ -79,21 +79,13 @@ bench: @$(GO) test -benchmem -run=XXX -benchtime=100ms -bench='.*' ./... ############################################################################## -# Rules for updating config files, fields.yml, etc. +# Rules for updating config files, etc. ############################################################################## -update: fields go-generate add-headers build-package notice $(MAGE) +update: go-generate add-headers build-package notice $(MAGE) @$(MAGE) update @go mod download all # make sure go.sum is complete -fields_sources=\ - $(shell find model -name fields.yml) \ - $(shell find x-pack/apm-server/fields -name fields.yml) - -fields: include/fields.go x-pack/apm-server/include/fields.go -include/fields.go x-pack/apm-server/include/fields.go: $(MAGE) magefile.go $(fields_sources) - @$(MAGE) fields - config: apm-server.yml apm-server.docker.yml apm-server.yml apm-server.docker.yml: $(MAGE) magefile.go _meta/beat.yml @$(MAGE) config diff --git a/NOTICE.txt b/NOTICE.txt index 656d2b3dbf9..cc2c4a4f8af 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -4905,12 +4905,142 @@ Indirect dependencies -------------------------------------------------------------------------------- -Dependency : code.cloudfoundry.org/go-diodes -Version: v0.0.0-20190809170250-f77fb823c7ee +Dependency : github.com/DataDog/zstd +Version: v1.4.4 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/!data!dog/zstd@v1.4.4/LICENSE: + +Simplified BSD License + +Copyright (c) 2016, Datadog +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of the copyright holder nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/bi-zone/go-winio +Version: v0.4.15 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/bi-zone/go-winio@v0.4.15/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2015 Microsoft + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/elastic/sarama +Version: v1.19.1-0.20210120173147-5c8cb347d877 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/elastic/sarama@v1.19.1-0.20210120173147-5c8cb347d877/LICENSE: + +Copyright (c) 2013 Shopify + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/StackExchange/wmi +Version: v1.2.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/!stack!exchange/wmi@v1.2.1/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2013 Stack Exchange + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/apache/thrift +Version: v0.14.2 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/code.cloudfoundry.org/go-diodes@v0.0.0-20190809170250-f77fb823c7ee/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.14.2/LICENSE: + Apache License Version 2.0, January 2004 @@ -5114,78 +5244,246 @@ Contents of probable licence file $GOMODCACHE/code.cloudfoundry.org/go-diodes@v0 See the License for the specific language governing permissions and limitations under the License. --------------------------------------------------------------------------------- -Dependency : code.cloudfoundry.org/go-loggregator -Version: v7.4.0+incompatible -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- +-------------------------------------------------- +SOFTWARE DISTRIBUTED WITH THRIFT: -Contents of probable licence file $GOMODCACHE/code.cloudfoundry.org/go-loggregator@v7.4.0+incompatible/LICENSE: +The Apache Thrift software includes a number of subcomponents with +separate copyright notices and license terms. Your use of the source +code for the these subcomponents is subject to the terms and +conditions of the following licenses. - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +-------------------------------------------------- +Portions of the following files are licensed under the MIT License: - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + lib/erl/src/Makefile.am - 1. Definitions. +Please see doc/otp-base-license.txt for the full terms of this license. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +-------------------------------------------------- +For the aclocal/ax_boost_base.m4 and contrib/fb303/aclocal/ax_boost_base.m4 components: - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +# Copyright (c) 2007 Thomas Porschberg +# +# Copying and distribution of this file, with or without +# modification, are permitted in any medium without royalty provided +# the copyright notice and this notice are preserved. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +-------------------------------------------------- +For the lib/nodejs/lib/thrift/json_parse.js: - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +/* + json_parse.js + 2015-05-02 + Public Domain. + NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +*/ +(By Douglas Crockford ) - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +-------------------------------------------------- +For lib/cpp/src/thrift/windows/SocketPair.cpp - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +/* socketpair.c + * Copyright 2007 by Nathan C. Myers ; some rights reserved. + * This code is Free Software. It may be copied freely, in original or + * modified form, subject only to the restrictions that (1) the author is + * relieved from all responsibilities for any use for any purpose, and (2) + * this copyright notice must be retained, unchanged, in its entirety. If + * for any reason the author might be held responsible for any consequences + * of copying or use, license is withheld. + */ - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +-------------------------------------------------- +For lib/py/compat/win32/stdint.h - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +// ISO C9x compliant stdint.h for Microsoft Visual Studio +// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 +// +// Copyright (c) 2006-2008 Alexander Chemeris +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are met: +// +// 1. Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// 2. Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// +// 3. The name of the author may be used to endorse or promote products +// derived from this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +/////////////////////////////////////////////////////////////////////////////// + + +-------------------------------------------------- +Codegen template in t_html_generator.h + +* Bootstrap v2.0.3 +* +* Copyright 2012 Twitter, Inc +* Licensed under the Apache License v2.0 +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Designed and built with all the love in the world @twitter by @mdo and @fat. + +--------------------------------------------------- +For t_cl_generator.cc + + * Copyright (c) 2008- Patrick Collison + * Copyright (c) 2006- Facebook + +--------------------------------------------------- + + +-------------------------------------------------------------------------------- +Dependency : github.com/armon/go-radix +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/armon/go-radix@v1.0.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2014 Armon Dadgar + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/cespare/xxhash +Version: v1.1.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/cespare/xxhash@v1.1.0/LICENSE.txt: + +Copyright (c) 2016 Caleb Spare + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/containerd/containerd +Version: v1.5.7 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v1.5.7/LICENSE: + + + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, @@ -5299,14 +5597,53 @@ Contents of probable licence file $GOMODCACHE/code.cloudfoundry.org/go-loggregat END OF TERMS AND CONDITIONS + Copyright The containerd Authors + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + -------------------------------------------------------------------------------- -Dependency : code.cloudfoundry.org/gofileutils -Version: v0.0.0-20170111115228-4d0c80011a0f -Licence type (autodetected): Apache-2.0 +Dependency : github.com/davecgh/go-spew +Version: v1.1.1 +Licence type (autodetected): ISC -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/code.cloudfoundry.org/gofileutils@v0.0.0-20170111115228-4d0c80011a0f/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-spew@v1.1.1/LICENSE: + +ISC License + +Copyright (c) 2012-2016 Dave Collins + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/dgraph-io/ristretto +Version: v0.1.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- +Contents of probable licence file $GOMODCACHE/github.com/dgraph-io/ristretto@v0.1.0/LICENSE: Apache License Version 2.0, January 2004 @@ -5485,145 +5822,49 @@ Contents of probable licence file $GOMODCACHE/code.cloudfoundry.org/gofileutils@ END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +-------------------------------------------------------------------------------- +Dependency : github.com/dgryski/go-farm +Version: v0.0.0-20200201041132-a6ae2369ad13 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - Copyright [yyyy] [name of copyright owner] +Contents of probable licence file $GOMODCACHE/github.com/dgryski/go-farm@v0.0.0-20200201041132-a6ae2369ad13/LICENSE: - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +Copyright (c) 2014-2017 Damian Gryski +Copyright (c) 2016-2017 Nicola Asuni - Tecnick.com - http://www.apache.org/licenses/LICENSE-2.0 +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -------------------------------------------------------------------------------- -Dependency : code.cloudfoundry.org/rfc5424 -Version: v0.0.0-20180905210152-236a6d29298a -Licence type (autodetected): BSD-2-Clause +Dependency : github.com/dlclark/regexp2 +Version: v1.4.0 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/code.cloudfoundry.org/rfc5424@v0.0.0-20180905210152-236a6d29298a/LICENSE: - -BSD 2-Clause License +Contents of probable licence file $GOMODCACHE/github.com/dlclark/regexp2@v1.4.0/LICENSE: -Copyright (c) 2016, Ross Kinder -All rights reserved. +The MIT License (MIT) -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/DataDog/zstd -Version: v1.4.4 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/!data!dog/zstd@v1.4.4/LICENSE: - -Simplified BSD License - -Copyright (c) 2016, Datadog -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - * Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/Masterminds/semver -Version: v1.4.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/!masterminds/semver@v1.4.2/LICENSE.txt: - -The Masterminds -Copyright (C) 2014-2015, Matt Butcher and Matt Farina - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/bi-zone/go-winio -Version: v0.4.15 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/bi-zone/go-winio@v0.4.15/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2015 Microsoft +Copyright (c) Doug Clark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -5644,77 +5885,15 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - --------------------------------------------------------------------------------- -Dependency : github.com/elastic/sarama -Version: v1.19.1-0.20210120173147-5c8cb347d877 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/elastic/sarama@v1.19.1-0.20210120173147-5c8cb347d877/LICENSE: - -Copyright (c) 2013 Shopify - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/StackExchange/wmi -Version: v1.2.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/!stack!exchange/wmi@v1.2.1/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 Stack Exchange - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -------------------------------------------------------------------------------- -Dependency : github.com/apache/thrift -Version: v0.14.2 +Dependency : github.com/docker/distribution +Version: v2.7.1+incompatible Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.14.2/LICENSE: - +Contents of probable licence file $GOMODCACHE/github.com/docker/distribution@v2.7.1+incompatible/LICENSE: - Apache License +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5894,7 +6073,7 @@ Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.14.2/L APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -5902,7 +6081,7 @@ Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.14.2/L same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -5916,183 +6095,50 @@ Contents of probable licence file $GOMODCACHE/github.com/apache/thrift@v0.14.2/L See the License for the specific language governing permissions and limitations under the License. --------------------------------------------------- -SOFTWARE DISTRIBUTED WITH THRIFT: -The Apache Thrift software includes a number of subcomponents with -separate copyright notices and license terms. Your use of the source -code for the these subcomponents is subject to the terms and -conditions of the following licenses. --------------------------------------------------- -Portions of the following files are licensed under the MIT License: +-------------------------------------------------------------------------------- +Dependency : github.com/docker/engine +Version: v0.0.0-20191113042239-ea84732a7725 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- - lib/erl/src/Makefile.am +Contents of probable licence file $GOMODCACHE/github.com/docker/engine@v0.0.0-20191113042239-ea84732a7725/LICENSE: -Please see doc/otp-base-license.txt for the full terms of this license. --------------------------------------------------- -For the aclocal/ax_boost_base.m4 and contrib/fb303/aclocal/ax_boost_base.m4 components: + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ -# Copyright (c) 2007 Thomas Porschberg -# -# Copying and distribution of this file, with or without -# modification, are permitted in any medium without royalty provided -# the copyright notice and this notice are preserved. + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION --------------------------------------------------- -For the lib/nodejs/lib/thrift/json_parse.js: + 1. Definitions. -/* - json_parse.js - 2015-05-02 - Public Domain. - NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -*/ -(By Douglas Crockford ) + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. --------------------------------------------------- -For lib/cpp/src/thrift/windows/SocketPair.cpp + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -/* socketpair.c - * Copyright 2007 by Nathan C. Myers ; some rights reserved. - * This code is Free Software. It may be copied freely, in original or - * modified form, subject only to the restrictions that (1) the author is - * relieved from all responsibilities for any use for any purpose, and (2) - * this copyright notice must be retained, unchanged, in its entirety. If - * for any reason the author might be held responsible for any consequences - * of copying or use, license is withheld. - */ + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. --------------------------------------------------- -For lib/py/compat/win32/stdint.h - -// ISO C9x compliant stdint.h for Microsoft Visual Studio -// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 -// -// Copyright (c) 2006-2008 Alexander Chemeris -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are met: -// -// 1. Redistributions of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// 2. Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the -// documentation and/or other materials provided with the distribution. -// -// 3. The name of the author may be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -/////////////////////////////////////////////////////////////////////////////// - - --------------------------------------------------- -Codegen template in t_html_generator.h - -* Bootstrap v2.0.3 -* -* Copyright 2012 Twitter, Inc -* Licensed under the Apache License v2.0 -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Designed and built with all the love in the world @twitter by @mdo and @fat. - ---------------------------------------------------- -For t_cl_generator.cc - - * Copyright (c) 2008- Patrick Collison - * Copyright (c) 2006- Facebook - ---------------------------------------------------- - - --------------------------------------------------------------------------------- -Dependency : github.com/armon/go-radix -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/armon/go-radix@v1.0.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Armon Dadgar - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2 -Version: v0.9.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2@v0.9.0/LICENSE.txt: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a @@ -6237,24 +6283,13 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2@v0.9. END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] + Copyright 2013-2018 Docker, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -6264,79 +6299,17 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2@v0.9. -------------------------------------------------------------------------------- -Dependency : github.com/cespare/xxhash -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/cespare/xxhash@v1.1.0/LICENSE.txt: - -Copyright (c) 2016 Caleb Spare - -MIT License - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/cloudfoundry-community/go-cfclient -Version: v0.0.0-20190808214049-35bcce23fc5f -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/cloudfoundry-community/go-cfclient@v0.0.0-20190808214049-35bcce23fc5f/LICENSE: - -The MIT License - -Copyright (c) 2017 Long Nguyen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/cloudfoundry/noaa -Version: v2.1.0+incompatible +Dependency : github.com/docker/go-connections +Version: v0.4.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/cloudfoundry/noaa@v2.1.0+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/docker/go-connections@v0.4.0/LICENSE: -Apache License + + Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -6511,24 +6484,13 @@ Apache License END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} + Copyright 2015 Docker, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -6537,19 +6499,18 @@ Apache License limitations under the License. - -------------------------------------------------------------------------------- -Dependency : github.com/cloudfoundry/sonde-go -Version: v0.0.0-20171206171820-b33733203bb4 +Dependency : github.com/docker/go-units +Version: v0.4.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/cloudfoundry/sonde-go@v0.0.0-20171206171820-b33733203bb4/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/docker/go-units@v0.4.0/LICENSE: Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -6724,248 +6685,410 @@ Contents of probable licence file $GOMODCACHE/github.com/cloudfoundry/sonde-go@v END OF TERMS AND CONDITIONS + Copyright 2015 Docker, Inc. --------------------------------------------------------------------------------- -Dependency : github.com/containerd/containerd -Version: v1.5.7 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at -Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v1.5.7/LICENSE: + https://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +-------------------------------------------------------------------------------- +Dependency : github.com/andrewkroh/goja +Version: v0.0.0-20190128172624-dd2ac4456e20 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - 1. Definitions. +Contents of probable licence file $GOMODCACHE/github.com/andrewkroh/goja@v0.0.0-20190128172624-dd2ac4456e20/LICENSE: - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +Copyright (c) 2016 Dmitry Panov - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +Copyright (c) 2012 Robert Krimen - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to the following conditions: - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +-------------------------------------------------------------------------------- +Dependency : github.com/dop251/goja_nodejs +Version: v0.0.0-20171011081505-adff31b136e6 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +Contents of probable licence file $GOMODCACHE/github.com/dop251/goja_nodejs@v0.0.0-20171011081505-adff31b136e6/LICENSE: - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +Copyright (c) 2016 Dmitry Panov - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to the following conditions: - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +-------------------------------------------------------------------------------- +Dependency : github.com/eapache/go-resiliency +Version: v1.2.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +Contents of probable licence file $GOMODCACHE/github.com/eapache/go-resiliency@v1.2.0/LICENSE: - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +The MIT License (MIT) - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +Copyright (c) 2014 Evan Huus - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +-------------------------------------------------------------------------------- +Dependency : github.com/eapache/go-xerial-snappy +Version: v0.0.0-20180814174437-776d5712da21 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - END OF TERMS AND CONDITIONS +Contents of probable licence file $GOMODCACHE/github.com/eapache/go-xerial-snappy@v0.0.0-20180814174437-776d5712da21/LICENSE: - Copyright The containerd Authors +The MIT License (MIT) - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +Copyright (c) 2016 Evan Huus - https://www.apache.org/licenses/LICENSE-2.0 +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/davecgh/go-spew -Version: v1.1.1 -Licence type (autodetected): ISC +Dependency : github.com/eapache/queue +Version: v1.1.0 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-spew@v1.1.1/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/eapache/queue@v1.1.0/LICENSE: -ISC License +The MIT License (MIT) -Copyright (c) 2012-2016 Dave Collins +Copyright (c) 2014 Evan Huus -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/dgraph-io/badger/v3 -Version: v3.2103.1 -Licence type (autodetected): Apache-2.0 +Dependency : github.com/elastic/elastic-agent-client/v7 +Version: v7.0.0-20210922110810-e6f1f402a9ed +Licence type (autodetected): Elastic -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/dgraph-io/badger/v3@v3.2103.1/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +Contents of probable licence file $GOMODCACHE/github.com/elastic/elastic-agent-client/v7@v7.0.0-20210922110810-e6f1f402a9ed/LICENSE.txt: - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +ELASTIC LICENSE AGREEMENT - 1. Definitions. +PLEASE READ CAREFULLY THIS ELASTIC LICENSE AGREEMENT (THIS "AGREEMENT"), WHICH +CONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS ALL OF YOUR USE OF ALL OF +THE ELASTIC SOFTWARE WITH WHICH THIS AGREEMENT IS INCLUDED ("ELASTIC SOFTWARE") +THAT IS PROVIDED IN OBJECT CODE FORMAT, AND, IN ACCORDANCE WITH SECTION 2 BELOW, +CERTAIN OF THE ELASTIC SOFTWARE THAT IS PROVIDED IN SOURCE CODE FORMAT. BY +INSTALLING OR USING ANY OF THE ELASTIC SOFTWARE GOVERNED BY THIS AGREEMENT, YOU +ARE ASSENTING TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE +WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT INSTALL OR USE THE ELASTIC SOFTWARE +GOVERNED BY THIS AGREEMENT. IF YOU ARE INSTALLING OR USING THE SOFTWARE ON +BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL +AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF +SUCH ENTITY. + +Posted Date: April 20, 2018 + +This Agreement is entered into by and between Elasticsearch BV ("Elastic") and +You, or the legal entity on behalf of whom You are acting (as applicable, +"You"). + +1. OBJECT CODE END USER LICENSES, RESTRICTIONS AND THIRD PARTY OPEN SOURCE +SOFTWARE + + 1.1 Object Code End User License. Subject to the terms and conditions of + Section 1.2 of this Agreement, Elastic hereby grants to You, AT NO CHARGE and + for so long as you are not in breach of any provision of this Agreement, a + License to the Basic Features and Functions of the Elastic Software. + + 1.2 Reservation of Rights; Restrictions. As between Elastic and You, Elastic + and its licensors own all right, title and interest in and to the Elastic + Software, and except as expressly set forth in Sections 1.1, and 2.1 of this + Agreement, no other license to the Elastic Software is granted to You under + this Agreement, by implication, estoppel or otherwise. You agree not to: (i) + reverse engineer or decompile, decrypt, disassemble or otherwise reduce any + Elastic Software provided to You in Object Code, or any portion thereof, to + Source Code, except and only to the extent any such restriction is prohibited + by applicable law, (ii) except as expressly permitted in this Agreement, + prepare derivative works from, modify, copy or use the Elastic Software Object + Code or the Commercial Software Source Code in any manner; (iii) except as + expressly permitted in Section 1.1 above, transfer, sell, rent, lease, + distribute, sublicense, loan or otherwise transfer, Elastic Software Object + Code, in whole or in part, to any third party; (iv) use Elastic Software + Object Code for providing time-sharing services, any software-as-a-service, + service bureau services or as part of an application services provider or + other service offering (collectively, "SaaS Offering") where obtaining access + to the Elastic Software or the features and functions of the Elastic Software + is a primary reason or substantial motivation for users of the SaaS Offering + to access and/or use the SaaS Offering ("Prohibited SaaS Offering"); (v) + circumvent the limitations on use of Elastic Software provided to You in + Object Code format that are imposed or preserved by any License Key, or (vi) + alter or remove any Marks and Notices in the Elastic Software. If You have any + question as to whether a specific SaaS Offering constitutes a Prohibited SaaS + Offering, or are interested in obtaining Elastic's permission to engage in + commercial or non-commercial distribution of the Elastic Software, please + contact elastic_license@elastic.co. + + 1.3 Third Party Open Source Software. The Commercial Software may contain or + be provided with third party open source libraries, components, utilities and + other open source software (collectively, "Open Source Software"), which Open + Source Software may have applicable license terms as identified on a website + designated by Elastic. Notwithstanding anything to the contrary herein, use of + the Open Source Software shall be subject to the license terms and conditions + applicable to such Open Source Software, to the extent required by the + applicable licensor (which terms shall not restrict the license rights granted + to You hereunder, but may contain additional rights). To the extent any + condition of this Agreement conflicts with any license to the Open Source + Software, the Open Source Software license will govern with respect to such + Open Source Software only. Elastic may also separately provide you with + certain open source software that is licensed by Elastic. Your use of such + Elastic open source software will not be governed by this Agreement, but by + the applicable open source license terms. + +2. COMMERCIAL SOFTWARE SOURCE CODE + + 2.1 Limited License. Subject to the terms and conditions of Section 2.2 of + this Agreement, Elastic hereby grants to You, AT NO CHARGE and for so long as + you are not in breach of any provision of this Agreement, a limited, + non-exclusive, non-transferable, fully paid up royalty free right and license + to the Commercial Software in Source Code format, without the right to grant + or authorize sublicenses, to prepare Derivative Works of the Commercial + Software, provided You (i) do not hack the licensing mechanism, or otherwise + circumvent the intended limitations on the use of Elastic Software to enable + features other than Basic Features and Functions or those features You are + entitled to as part of a Subscription, and (ii) use the resulting object code + only for reasonable testing purposes. + + 2.2 Restrictions. Nothing in Section 2.1 grants You the right to (i) use the + Commercial Software Source Code other than in accordance with Section 2.1 + above, (ii) use a Derivative Work of the Commercial Software outside of a + Non-production Environment, in any production capacity, on a temporary or + permanent basis, or (iii) transfer, sell, rent, lease, distribute, sublicense, + loan or otherwise make available the Commercial Software Source Code, in whole + or in part, to any third party. Notwithstanding the foregoing, You may + maintain a copy of the repository in which the Source Code of the Commercial + Software resides and that copy may be publicly accessible, provided that you + include this Agreement with Your copy of the repository. + +3. TERMINATION + + 3.1 Termination. This Agreement will automatically terminate, whether or not + You receive notice of such Termination from Elastic, if You breach any of its + provisions. + + 3.2 Post Termination. Upon any termination of this Agreement, for any reason, + You shall promptly cease the use of the Elastic Software in Object Code format + and cease use of the Commercial Software in Source Code format. For the + avoidance of doubt, termination of this Agreement will not affect Your right + to use Elastic Software, in either Object Code or Source Code formats, made + available under the Apache License Version 2.0. + + 3.3 Survival. Sections 1.2, 2.2. 3.3, 4 and 5 shall survive any termination or + expiration of this Agreement. + +4. DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY + + 4.1 Disclaimer of Warranties. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE + LAW, THE ELASTIC SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, + AND ELASTIC AND ITS LICENSORS MAKE NO WARRANTIES WHETHER EXPRESSED, IMPLIED OR + STATUTORY REGARDING OR RELATING TO THE ELASTIC SOFTWARE. TO THE MAXIMUM EXTENT + PERMITTED UNDER APPLICABLE LAW, ELASTIC AND ITS LICENSORS SPECIFICALLY + DISCLAIM ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE ELASTIC SOFTWARE, AND WITH + RESPECT TO THE USE OF THE FOREGOING. FURTHER, ELASTIC DOES NOT WARRANT RESULTS + OF USE OR THAT THE ELASTIC SOFTWARE WILL BE ERROR FREE OR THAT THE USE OF THE + ELASTIC SOFTWARE WILL BE UNINTERRUPTED. + + 4.2 Limitation of Liability. IN NO EVENT SHALL ELASTIC OR ITS LICENSORS BE + LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT OR INDIRECT DAMAGES, + INCLUDING, WITHOUT LIMITATION, FOR ANY LOSS OF PROFITS, LOSS OF USE, BUSINESS + INTERRUPTION, LOSS OF DATA, COST OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY + SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND, IN CONNECTION WITH + OR ARISING OUT OF THE USE OR INABILITY TO USE THE ELASTIC SOFTWARE, OR THE + PERFORMANCE OF OR FAILURE TO PERFORM THIS AGREEMENT, WHETHER ALLEGED AS A + BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, EVEN IF ELASTIC + HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +5. MISCELLANEOUS + + This Agreement completely and exclusively states the entire agreement of the + parties regarding the subject matter herein, and it supersedes, and its terms + govern, all prior proposals, agreements, or other communications between the + parties, oral or written, regarding such subject matter. This Agreement may be + modified by Elastic from time to time, and any such modifications will be + effective upon the "Posted Date" set forth at the top of the modified + Agreement. If any provision hereof is held unenforceable, this Agreement will + continue without said provision and be interpreted to reflect the original + intent of the parties. This Agreement and any non-contractual obligation + arising out of or in connection with it, is governed exclusively by Dutch law. + This Agreement shall not be governed by the 1980 UN Convention on Contracts + for the International Sale of Goods. All disputes arising out of or in + connection with this Agreement, including its existence and validity, shall be + resolved by the courts with jurisdiction in Amsterdam, The Netherlands, except + where mandatory law provides for the courts at another location in The + Netherlands to have jurisdiction. The parties hereby irrevocably waive any and + all claims and defenses either might otherwise have in any such action or + proceeding in any of such courts based upon any alleged lack of personal + jurisdiction, improper venue, forum non conveniens or any similar claim or + defense. A breach or threatened breach, by You of Section 2 may cause + irreparable harm for which damages at law may not provide adequate relief, and + therefore Elastic shall be entitled to seek injunctive relief without being + required to post a bond. You may not assign this Agreement (including by + operation of law in connection with a merger or acquisition), in whole or in + part to any third party without the prior written consent of Elastic, which + may be withheld or granted by Elastic in its sole and absolute discretion. + Any assignment in violation of the preceding sentence is void. Notices to + Elastic may also be sent to legal@elastic.co. + +6. DEFINITIONS + + The following terms have the meanings ascribed: + + 6.1 "Affiliate" means, with respect to a party, any entity that controls, is + controlled by, or which is under common control with, such party, where + "control" means ownership of at least fifty percent (50%) of the outstanding + voting shares of the entity, or the contractual right to establish policy for, + and manage the operations of, the entity. + + 6.2 "Basic Features and Functions" means those features and functions of the + Elastic Software that are eligible for use under a Basic license, as set forth + at https://www.elastic.co/subscriptions, as may be modified by Elastic from + time to time. + + 6.3 "Commercial Software" means the Elastic Software Source Code in any file + containing a header stating the contents are subject to the Elastic License or + which is contained in the repository folder labeled "x-pack", unless a LICENSE + file present in the directory subtree declares a different license. + + 6.4 "Derivative Work of the Commercial Software" means, for purposes of this + Agreement, any modification(s) or enhancement(s) to the Commercial Software, + which represent, as a whole, an original work of authorship. + + 6.5 "License" means a limited, non-exclusive, non-transferable, fully paid up, + royalty free, right and license, without the right to grant or authorize + sublicenses, solely for Your internal business operations to (i) install and + use the applicable Features and Functions of the Elastic Software in Object + Code, and (ii) permit Contractors and Your Affiliates to use the Elastic + software as set forth in (i) above, provided that such use by Contractors must + be solely for Your benefit and/or the benefit of Your Affiliates, and You + shall be responsible for all acts and omissions of such Contractors and + Affiliates in connection with their use of the Elastic software that are + contrary to the terms and conditions of this Agreement. + + 6.6 "License Key" means a sequence of bytes, including but not limited to a + JSON blob, that is used to enable certain features and functions of the + Elastic Software. + + 6.7 "Marks and Notices" means all Elastic trademarks, trade names, logos and + notices present on the Documentation as originally provided by Elastic. + + 6.8 "Non-production Environment" means an environment for development, testing + or quality assurance, where software is not used for production purposes. + + 6.9 "Object Code" means any form resulting from mechanical transformation or + translation of Source Code form, including but not limited to compiled object + code, generated documentation, and conversions to other media types. + + 6.10 "Source Code" means the preferred form of computer software for making + modifications, including but not limited to software source code, + documentation source, and configuration files. + + 6.11 "Subscription" means the right to receive Support Services and a License + to the Commercial Software. + + +-------------------------------------------------------------------------------- +Dependency : github.com/elastic/go-concert +Version: v0.2.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/elastic/go-concert@v0.2.0/LICENSE: + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. @@ -7136,17 +7259,66 @@ Contents of probable licence file $GOMODCACHE/github.com/dgraph-io/badger/v3@v3. END OF TERMS AND CONDITIONS + APPENDIX: How to apply the Apache License to your work. --------------------------------------------------------------------------------- -Dependency : github.com/dgraph-io/ristretto -Version: v0.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. -Contents of probable licence file $GOMODCACHE/github.com/dgraph-io/ristretto@v0.1.0/LICENSE: + Copyright [yyyy] [name of copyright owner] - Apache License - Version 2.0, January 2004 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +-------------------------------------------------------------------------------- +Dependency : github.com/elastic/go-lumber +Version: v0.1.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/elastic/go-lumber@v0.1.0/LICENSE: + +Copyright (c) 2012–2016 Elasticsearch + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + +-------------------------------------------------------------------------------- +Dependency : github.com/elastic/go-seccomp-bpf +Version: v1.2.0 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/elastic/go-seccomp-bpf@v1.2.0/LICENSE.txt: + + + Apache License + Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -7322,78 +7494,41 @@ Contents of probable licence file $GOMODCACHE/github.com/dgraph-io/ristretto@v0. END OF TERMS AND CONDITIONS + APPENDIX: How to apply the Apache License to your work. --------------------------------------------------------------------------------- -Dependency : github.com/dgryski/go-farm -Version: v0.0.0-20200201041132-a6ae2369ad13 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/dgryski/go-farm@v0.0.0-20200201041132-a6ae2369ad13/LICENSE: - -Copyright (c) 2014-2017 Damian Gryski -Copyright (c) 2016-2017 Nicola Asuni - Tecnick.com - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - - --------------------------------------------------------------------------------- -Dependency : github.com/dlclark/regexp2 -Version: v1.4.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/dlclark/regexp2@v1.4.0/LICENSE: - -The MIT License (MIT) + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. -Copyright (c) Doug Clark + Copyright [yyyy] [name of copyright owner] -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + http://www.apache.org/licenses/LICENSE-2.0 -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. -------------------------------------------------------------------------------- -Dependency : github.com/docker/distribution -Version: v2.7.1+incompatible +Dependency : github.com/elastic/go-structform +Version: v0.0.9 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/docker/distribution@v2.7.1+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/elastic/go-structform@v0.0.9/LICENSE: -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -7581,7 +7716,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright {yyyy} {name of copyright owner} + Copyright 2012–2018 Elastic Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -7596,19 +7731,18 @@ Apache License limitations under the License. - -------------------------------------------------------------------------------- -Dependency : github.com/docker/engine -Version: v0.0.0-20191113042239-ea84732a7725 +Dependency : github.com/elastic/go-sysinfo +Version: v1.7.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/docker/engine@v0.0.0-20191113042239-ea84732a7725/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/elastic/go-sysinfo@v1.7.1/LICENSE.txt: Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -7783,13 +7917,24 @@ Contents of probable licence file $GOMODCACHE/github.com/docker/engine@v0.0.0-20 END OF TERMS AND CONDITIONS - Copyright 2013-2018 Docker, Inc. + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -7799,17 +7944,16 @@ Contents of probable licence file $GOMODCACHE/github.com/docker/engine@v0.0.0-20 -------------------------------------------------------------------------------- -Dependency : github.com/docker/go-connections -Version: v0.4.0 +Dependency : github.com/elastic/go-txfile +Version: v0.0.8 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/docker/go-connections@v0.4.0/LICENSE: - +Contents of probable licence file $GOMODCACHE/github.com/elastic/go-txfile@v0.0.8/LICENSE: Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -7984,13 +8128,24 @@ Contents of probable licence file $GOMODCACHE/github.com/docker/go-connections@v END OF TERMS AND CONDITIONS - Copyright 2015 Docker, Inc. + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -8000,17 +8155,17 @@ Contents of probable licence file $GOMODCACHE/github.com/docker/go-connections@v -------------------------------------------------------------------------------- -Dependency : github.com/docker/go-units -Version: v0.4.0 +Dependency : github.com/elastic/go-windows +Version: v1.0.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/docker/go-units@v0.4.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/elastic/go-windows@v1.0.1/LICENSE.txt: Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -8185,13 +8340,24 @@ Contents of probable licence file $GOMODCACHE/github.com/docker/go-units@v0.4.0/ END OF TERMS AND CONDITIONS - Copyright 2015 Docker, Inc. + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, @@ -8201,386 +8367,320 @@ Contents of probable licence file $GOMODCACHE/github.com/docker/go-units@v0.4.0/ -------------------------------------------------------------------------------- -Dependency : github.com/andrewkroh/goja -Version: v0.0.0-20190128172624-dd2ac4456e20 -Licence type (autodetected): MIT +Dependency : github.com/elastic/gosigar +Version: v0.14.1 +Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/andrewkroh/goja@v0.0.0-20190128172624-dd2ac4456e20/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/elastic/gosigar@v0.14.1/LICENSE: -Copyright (c) 2016 Dmitry Panov + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ -Copyright (c) 2012 Robert Krimen +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to the following conditions: +1. Definitions. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. --------------------------------------------------------------------------------- -Dependency : github.com/dop251/goja_nodejs -Version: v0.0.0-20171011081505-adff31b136e6 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -Contents of probable licence file $GOMODCACHE/github.com/dop251/goja_nodejs@v0.0.0-20171011081505-adff31b136e6/LICENSE: + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -Copyright (c) 2016 Dmitry Panov + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to the following conditions: + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. --------------------------------------------------------------------------------- -Dependency : github.com/eapache/go-resiliency -Version: v1.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. -Contents of probable licence file $GOMODCACHE/github.com/eapache/go-resiliency@v1.2.0/LICENSE: +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. -The MIT License (MIT) +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: -Copyright (c) 2014 Evan Huus + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. --------------------------------------------------------------------------------- -Dependency : github.com/eapache/go-xerial-snappy -Version: v0.0.0-20180814174437-776d5712da21 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. -Contents of probable licence file $GOMODCACHE/github.com/eapache/go-xerial-snappy@v0.0.0-20180814174437-776d5712da21/LICENSE: +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. -The MIT License (MIT) +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. -Copyright (c) 2016 Evan Huus +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +END OF TERMS AND CONDITIONS -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +APPENDIX: How to apply the Apache License to your work. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. -------------------------------------------------------------------------------- -Dependency : github.com/eapache/queue -Version: v1.1.0 +Dependency : github.com/fatih/color +Version: v1.13.0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/eapache/queue@v1.1.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/fatih/color@v1.13.0/LICENSE.md: The MIT License (MIT) -Copyright (c) 2014 Evan Huus +Copyright (c) 2013 Fatih Arslan -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + -------------------------------------------------------------------------------- -Dependency : github.com/elastic/elastic-agent-client/v7 -Version: v7.0.0-20210922110810-e6f1f402a9ed -Licence type (autodetected): Elastic +Dependency : github.com/felixge/httpsnoop +Version: v1.0.2 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/elastic/elastic-agent-client/v7@v7.0.0-20210922110810-e6f1f402a9ed/LICENSE.txt: - -ELASTIC LICENSE AGREEMENT +Contents of probable licence file $GOMODCACHE/github.com/felixge/httpsnoop@v1.0.2/LICENSE.txt: -PLEASE READ CAREFULLY THIS ELASTIC LICENSE AGREEMENT (THIS "AGREEMENT"), WHICH -CONSTITUTES A LEGALLY BINDING AGREEMENT AND GOVERNS ALL OF YOUR USE OF ALL OF -THE ELASTIC SOFTWARE WITH WHICH THIS AGREEMENT IS INCLUDED ("ELASTIC SOFTWARE") -THAT IS PROVIDED IN OBJECT CODE FORMAT, AND, IN ACCORDANCE WITH SECTION 2 BELOW, -CERTAIN OF THE ELASTIC SOFTWARE THAT IS PROVIDED IN SOURCE CODE FORMAT. BY -INSTALLING OR USING ANY OF THE ELASTIC SOFTWARE GOVERNED BY THIS AGREEMENT, YOU -ARE ASSENTING TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE -WITH SUCH TERMS AND CONDITIONS, YOU MAY NOT INSTALL OR USE THE ELASTIC SOFTWARE -GOVERNED BY THIS AGREEMENT. IF YOU ARE INSTALLING OR USING THE SOFTWARE ON -BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL -AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF -SUCH ENTITY. +Copyright (c) 2016 Felix Geisendörfer (felix@debuggable.com) -Posted Date: April 20, 2018 - -This Agreement is entered into by and between Elasticsearch BV ("Elastic") and -You, or the legal entity on behalf of whom You are acting (as applicable, -"You"). - -1. OBJECT CODE END USER LICENSES, RESTRICTIONS AND THIRD PARTY OPEN SOURCE -SOFTWARE - - 1.1 Object Code End User License. Subject to the terms and conditions of - Section 1.2 of this Agreement, Elastic hereby grants to You, AT NO CHARGE and - for so long as you are not in breach of any provision of this Agreement, a - License to the Basic Features and Functions of the Elastic Software. - - 1.2 Reservation of Rights; Restrictions. As between Elastic and You, Elastic - and its licensors own all right, title and interest in and to the Elastic - Software, and except as expressly set forth in Sections 1.1, and 2.1 of this - Agreement, no other license to the Elastic Software is granted to You under - this Agreement, by implication, estoppel or otherwise. You agree not to: (i) - reverse engineer or decompile, decrypt, disassemble or otherwise reduce any - Elastic Software provided to You in Object Code, or any portion thereof, to - Source Code, except and only to the extent any such restriction is prohibited - by applicable law, (ii) except as expressly permitted in this Agreement, - prepare derivative works from, modify, copy or use the Elastic Software Object - Code or the Commercial Software Source Code in any manner; (iii) except as - expressly permitted in Section 1.1 above, transfer, sell, rent, lease, - distribute, sublicense, loan or otherwise transfer, Elastic Software Object - Code, in whole or in part, to any third party; (iv) use Elastic Software - Object Code for providing time-sharing services, any software-as-a-service, - service bureau services or as part of an application services provider or - other service offering (collectively, "SaaS Offering") where obtaining access - to the Elastic Software or the features and functions of the Elastic Software - is a primary reason or substantial motivation for users of the SaaS Offering - to access and/or use the SaaS Offering ("Prohibited SaaS Offering"); (v) - circumvent the limitations on use of Elastic Software provided to You in - Object Code format that are imposed or preserved by any License Key, or (vi) - alter or remove any Marks and Notices in the Elastic Software. If You have any - question as to whether a specific SaaS Offering constitutes a Prohibited SaaS - Offering, or are interested in obtaining Elastic's permission to engage in - commercial or non-commercial distribution of the Elastic Software, please - contact elastic_license@elastic.co. - - 1.3 Third Party Open Source Software. The Commercial Software may contain or - be provided with third party open source libraries, components, utilities and - other open source software (collectively, "Open Source Software"), which Open - Source Software may have applicable license terms as identified on a website - designated by Elastic. Notwithstanding anything to the contrary herein, use of - the Open Source Software shall be subject to the license terms and conditions - applicable to such Open Source Software, to the extent required by the - applicable licensor (which terms shall not restrict the license rights granted - to You hereunder, but may contain additional rights). To the extent any - condition of this Agreement conflicts with any license to the Open Source - Software, the Open Source Software license will govern with respect to such - Open Source Software only. Elastic may also separately provide you with - certain open source software that is licensed by Elastic. Your use of such - Elastic open source software will not be governed by this Agreement, but by - the applicable open source license terms. - -2. COMMERCIAL SOFTWARE SOURCE CODE - - 2.1 Limited License. Subject to the terms and conditions of Section 2.2 of - this Agreement, Elastic hereby grants to You, AT NO CHARGE and for so long as - you are not in breach of any provision of this Agreement, a limited, - non-exclusive, non-transferable, fully paid up royalty free right and license - to the Commercial Software in Source Code format, without the right to grant - or authorize sublicenses, to prepare Derivative Works of the Commercial - Software, provided You (i) do not hack the licensing mechanism, or otherwise - circumvent the intended limitations on the use of Elastic Software to enable - features other than Basic Features and Functions or those features You are - entitled to as part of a Subscription, and (ii) use the resulting object code - only for reasonable testing purposes. - - 2.2 Restrictions. Nothing in Section 2.1 grants You the right to (i) use the - Commercial Software Source Code other than in accordance with Section 2.1 - above, (ii) use a Derivative Work of the Commercial Software outside of a - Non-production Environment, in any production capacity, on a temporary or - permanent basis, or (iii) transfer, sell, rent, lease, distribute, sublicense, - loan or otherwise make available the Commercial Software Source Code, in whole - or in part, to any third party. Notwithstanding the foregoing, You may - maintain a copy of the repository in which the Source Code of the Commercial - Software resides and that copy may be publicly accessible, provided that you - include this Agreement with Your copy of the repository. - -3. TERMINATION - - 3.1 Termination. This Agreement will automatically terminate, whether or not - You receive notice of such Termination from Elastic, if You breach any of its - provisions. - - 3.2 Post Termination. Upon any termination of this Agreement, for any reason, - You shall promptly cease the use of the Elastic Software in Object Code format - and cease use of the Commercial Software in Source Code format. For the - avoidance of doubt, termination of this Agreement will not affect Your right - to use Elastic Software, in either Object Code or Source Code formats, made - available under the Apache License Version 2.0. - - 3.3 Survival. Sections 1.2, 2.2. 3.3, 4 and 5 shall survive any termination or - expiration of this Agreement. - -4. DISCLAIMER OF WARRANTIES AND LIMITATION OF LIABILITY - - 4.1 Disclaimer of Warranties. TO THE MAXIMUM EXTENT PERMITTED UNDER APPLICABLE - LAW, THE ELASTIC SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, - AND ELASTIC AND ITS LICENSORS MAKE NO WARRANTIES WHETHER EXPRESSED, IMPLIED OR - STATUTORY REGARDING OR RELATING TO THE ELASTIC SOFTWARE. TO THE MAXIMUM EXTENT - PERMITTED UNDER APPLICABLE LAW, ELASTIC AND ITS LICENSORS SPECIFICALLY - DISCLAIM ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE AND NON-INFRINGEMENT WITH RESPECT TO THE ELASTIC SOFTWARE, AND WITH - RESPECT TO THE USE OF THE FOREGOING. FURTHER, ELASTIC DOES NOT WARRANT RESULTS - OF USE OR THAT THE ELASTIC SOFTWARE WILL BE ERROR FREE OR THAT THE USE OF THE - ELASTIC SOFTWARE WILL BE UNINTERRUPTED. - - 4.2 Limitation of Liability. IN NO EVENT SHALL ELASTIC OR ITS LICENSORS BE - LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT OR INDIRECT DAMAGES, - INCLUDING, WITHOUT LIMITATION, FOR ANY LOSS OF PROFITS, LOSS OF USE, BUSINESS - INTERRUPTION, LOSS OF DATA, COST OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY - SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND, IN CONNECTION WITH - OR ARISING OUT OF THE USE OR INABILITY TO USE THE ELASTIC SOFTWARE, OR THE - PERFORMANCE OF OR FAILURE TO PERFORM THIS AGREEMENT, WHETHER ALLEGED AS A - BREACH OF CONTRACT OR TORTIOUS CONDUCT, INCLUDING NEGLIGENCE, EVEN IF ELASTIC - HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -5. MISCELLANEOUS - - This Agreement completely and exclusively states the entire agreement of the - parties regarding the subject matter herein, and it supersedes, and its terms - govern, all prior proposals, agreements, or other communications between the - parties, oral or written, regarding such subject matter. This Agreement may be - modified by Elastic from time to time, and any such modifications will be - effective upon the "Posted Date" set forth at the top of the modified - Agreement. If any provision hereof is held unenforceable, this Agreement will - continue without said provision and be interpreted to reflect the original - intent of the parties. This Agreement and any non-contractual obligation - arising out of or in connection with it, is governed exclusively by Dutch law. - This Agreement shall not be governed by the 1980 UN Convention on Contracts - for the International Sale of Goods. All disputes arising out of or in - connection with this Agreement, including its existence and validity, shall be - resolved by the courts with jurisdiction in Amsterdam, The Netherlands, except - where mandatory law provides for the courts at another location in The - Netherlands to have jurisdiction. The parties hereby irrevocably waive any and - all claims and defenses either might otherwise have in any such action or - proceeding in any of such courts based upon any alleged lack of personal - jurisdiction, improper venue, forum non conveniens or any similar claim or - defense. A breach or threatened breach, by You of Section 2 may cause - irreparable harm for which damages at law may not provide adequate relief, and - therefore Elastic shall be entitled to seek injunctive relief without being - required to post a bond. You may not assign this Agreement (including by - operation of law in connection with a merger or acquisition), in whole or in - part to any third party without the prior written consent of Elastic, which - may be withheld or granted by Elastic in its sole and absolute discretion. - Any assignment in violation of the preceding sentence is void. Notices to - Elastic may also be sent to legal@elastic.co. - -6. DEFINITIONS - - The following terms have the meanings ascribed: - - 6.1 "Affiliate" means, with respect to a party, any entity that controls, is - controlled by, or which is under common control with, such party, where - "control" means ownership of at least fifty percent (50%) of the outstanding - voting shares of the entity, or the contractual right to establish policy for, - and manage the operations of, the entity. - - 6.2 "Basic Features and Functions" means those features and functions of the - Elastic Software that are eligible for use under a Basic license, as set forth - at https://www.elastic.co/subscriptions, as may be modified by Elastic from - time to time. + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: - 6.3 "Commercial Software" means the Elastic Software Source Code in any file - containing a header stating the contents are subject to the Elastic License or - which is contained in the repository folder labeled "x-pack", unless a LICENSE - file present in the directory subtree declares a different license. + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. - 6.4 "Derivative Work of the Commercial Software" means, for purposes of this - Agreement, any modification(s) or enhancement(s) to the Commercial Software, - which represent, as a whole, an original work of authorship. + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. - 6.5 "License" means a limited, non-exclusive, non-transferable, fully paid up, - royalty free, right and license, without the right to grant or authorize - sublicenses, solely for Your internal business operations to (i) install and - use the applicable Features and Functions of the Elastic Software in Object - Code, and (ii) permit Contractors and Your Affiliates to use the Elastic - software as set forth in (i) above, provided that such use by Contractors must - be solely for Your benefit and/or the benefit of Your Affiliates, and You - shall be responsible for all acts and omissions of such Contractors and - Affiliates in connection with their use of the Elastic software that are - contrary to the terms and conditions of this Agreement. - 6.6 "License Key" means a sequence of bytes, including but not limited to a - JSON blob, that is used to enable certain features and functions of the - Elastic Software. +-------------------------------------------------------------------------------- +Dependency : github.com/adriansr/fsnotify +Version: v0.0.0-20180417234312-c9bbe1f46f1d +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- - 6.7 "Marks and Notices" means all Elastic trademarks, trade names, logos and - notices present on the Documentation as originally provided by Elastic. +Contents of probable licence file $GOMODCACHE/github.com/adriansr/fsnotify@v0.0.0-20180417234312-c9bbe1f46f1d/LICENSE: - 6.8 "Non-production Environment" means an environment for development, testing - or quality assurance, where software is not used for production purposes. +Copyright (c) 2012 The Go Authors. All rights reserved. +Copyright (c) 2012 fsnotify Authors. All rights reserved. - 6.9 "Object Code" means any form resulting from mechanical transformation or - translation of Source Code form, including but not limited to compiled object - code, generated documentation, and conversions to other media types. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: - 6.10 "Source Code" means the preferred form of computer software for making - modifications, including but not limited to software source code, - documentation source, and configuration files. + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. - 6.11 "Subscription" means the right to receive Support Services and a License - to the Commercial Software. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -Dependency : github.com/elastic/go-concert -Version: v0.2.0 +Dependency : github.com/go-logr/logr +Version: v0.4.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/elastic/go-concert@v0.2.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-logr/logr@v0.4.0/LICENSE: Apache License Version 2.0, January 2004 @@ -8762,7 +8862,7 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-concert@v0.2 APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -8770,7 +8870,7 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-concert@v0.2 same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -8786,38 +8886,82 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-concert@v0.2 -------------------------------------------------------------------------------- -Dependency : github.com/elastic/go-lumber -Version: v0.1.0 -Licence type (autodetected): Apache-2.0 +Dependency : github.com/go-ole/go-ole +Version: v1.2.5 +Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/elastic/go-lumber@v0.1.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-ole/go-ole@v1.2.5/LICENSE: -Copyright (c) 2012–2016 Elasticsearch +The MIT License (MIT) -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Copyright © 2013-2017 Yasuhiro Matsumoto, - http://www.apache.org/licenses/LICENSE-2.0 +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/elastic/go-seccomp-bpf -Version: v1.2.0 -Licence type (autodetected): Apache-2.0 +Dependency : github.com/gofrs/flock +Version: v0.8.1 +Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/elastic/go-seccomp-bpf@v1.2.0/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/gofrs/flock@v0.8.1/LICENSE: +Copyright (c) 2015-2020, Tim Heckman +All rights reserved. - Apache License +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of gofrs nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/gogo/googleapis +Version: v1.4.1 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/gogo/googleapis@v1.4.1/LICENSE: + +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -8997,7 +9141,7 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-seccomp-bpf@ APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -9005,7 +9149,8 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-seccomp-bpf@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2015, Google Inc + Copyright 2018, GoGo Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -9020,13 +9165,98 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-seccomp-bpf@ limitations under the License. + -------------------------------------------------------------------------------- -Dependency : github.com/elastic/go-structform -Version: v0.0.9 +Dependency : github.com/golang/glog +Version: v0.0.0-20160126235308-23def4e6c14b Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/elastic/go-structform@v0.0.9/LICENSE: +No licence file provided. + +-------------------------------------------------------------------------------- +Dependency : github.com/golang/protobuf +Version: v1.5.2 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/golang/protobuf@v1.5.2/LICENSE: + +Copyright 2010 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +-------------------------------------------------------------------------------- +Dependency : github.com/golang/snappy +Version: v0.0.4 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/golang/snappy@v0.0.4/LICENSE: + +Copyright (c) 2011 The Snappy-Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/gomodule/redigo +Version: v1.8.3 +Licence type (autodetected): Apache-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/gomodule/redigo@v1.8.3/LICENSE: + Apache License Version 2.0, January 2004 @@ -9205,39 +9435,51 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-structform@v END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +-------------------------------------------------------------------------------- +Dependency : github.com/google/go-cmp +Version: v0.5.6 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- - Copyright 2012–2018 Elastic +Contents of probable licence file $GOMODCACHE/github.com/google/go-cmp@v0.5.6/LICENSE: - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +Copyright (c) 2017 The Go Authors. All rights reserved. - http://www.apache.org/licenses/LICENSE-2.0 +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -Dependency : github.com/elastic/go-sysinfo -Version: v1.7.1 +Dependency : github.com/google/gofuzz +Version: v1.1.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/elastic/go-sysinfo@v1.7.1/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/google/gofuzz@v1.1.0/LICENSE: Apache License @@ -9444,12 +9686,13 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-sysinfo@v1.7 -------------------------------------------------------------------------------- -Dependency : github.com/elastic/go-txfile -Version: v0.0.8 +Dependency : github.com/googleapis/gnostic +Version: v0.4.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/elastic/go-txfile@v0.0.8/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/googleapis/gnostic@v0.4.1/LICENSE: + Apache License Version 2.0, January 2004 @@ -9654,3683 +9897,173 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-txfile@v0.0. limitations under the License. + -------------------------------------------------------------------------------- -Dependency : github.com/elastic/go-windows -Version: v1.0.1 -Licence type (autodetected): Apache-2.0 +Dependency : github.com/gorilla/mux +Version: v1.8.0 +Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/elastic/go-windows@v1.0.1/LICENSE.txt: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - --------------------------------------------------------------------------------- -Dependency : github.com/elastic/gosigar -Version: v0.14.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/elastic/gosigar@v0.14.1/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - --------------------------------------------------------------------------------- -Dependency : github.com/fatih/color -Version: v1.13.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/fatih/color@v1.13.0/LICENSE.md: - -The MIT License (MIT) - -Copyright (c) 2013 Fatih Arslan - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/felixge/httpsnoop -Version: v1.0.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/felixge/httpsnoop@v1.0.2/LICENSE.txt: - -Copyright (c) 2016 Felix Geisendörfer (felix@debuggable.com) - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/adriansr/fsnotify -Version: v0.0.0-20180417234312-c9bbe1f46f1d -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/adriansr/fsnotify@v0.0.0-20180417234312-c9bbe1f46f1d/LICENSE: - -Copyright (c) 2012 The Go Authors. All rights reserved. -Copyright (c) 2012 fsnotify Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-logr/logr -Version: v0.4.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-logr/logr@v0.4.0/LICENSE: - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - --------------------------------------------------------------------------------- -Dependency : github.com/go-ole/go-ole -Version: v1.2.5 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-ole/go-ole@v1.2.5/LICENSE: - -The MIT License (MIT) - -Copyright © 2013-2017 Yasuhiro Matsumoto, - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the “Software”), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gofrs/flock -Version: v0.8.1 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gofrs/flock@v0.8.1/LICENSE: - -Copyright (c) 2015-2020, Tim Heckman -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of gofrs nor the names of its contributors may be used - to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gogo/googleapis -Version: v1.4.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gogo/googleapis@v1.4.1/LICENSE: - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2015, Google Inc - Copyright 2018, GoGo Authors - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - --------------------------------------------------------------------------------- -Dependency : github.com/golang/glog -Version: v0.0.0-20160126235308-23def4e6c14b -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -No licence file provided. - --------------------------------------------------------------------------------- -Dependency : github.com/golang/groupcache -Version: v0.0.0-20210331224755-41bb18bfe9da -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/golang/groupcache@v0.0.0-20210331224755-41bb18bfe9da/LICENSE: - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the copyright -owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other entities -that control, are controlled by, or are under common control with that entity. -For the purposes of this definition, "control" means (i) the power, direct or -indirect, to cause the direction or management of such entity, whether by -contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the -outstanding shares, or (iii) beneficial ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, including -but not limited to software source code, documentation source, and configuration -files. - -"Object" form shall mean any form resulting from mechanical transformation or -translation of a Source form, including but not limited to compiled object code, -generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object form, made -available under the License, as indicated by a copyright notice that is included -in or attached to the work (an example is provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object form, that -is based on (or derived from) the Work and for which the editorial revisions, -annotations, elaborations, or other modifications represent, as a whole, an -original work of authorship. For the purposes of this License, Derivative Works -shall not include works that remain separable from, or merely link (or bind by -name) to the interfaces of, the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original version -of the Work and any modifications or additions to that Work or Derivative Works -thereof, that is intentionally submitted to Licensor for inclusion in the Work -by the copyright owner or by an individual or Legal Entity authorized to submit -on behalf of the copyright owner. For the purposes of this definition, -"submitted" means any form of electronic, verbal, or written communication sent -to the Licensor or its representatives, including but not limited to -communication on electronic mailing lists, source code control systems, and -issue tracking systems that are managed by, or on behalf of, the Licensor for -the purpose of discussing and improving the Work, but excluding communication -that is conspicuously marked or otherwise designated in writing by the copyright -owner as "Not a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf -of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable copyright license to reproduce, prepare Derivative Works of, -publicly display, publicly perform, sublicense, and distribute the Work and such -Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of this License, each Contributor hereby -grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, -irrevocable (except as stated in this section) patent license to make, have -made, use, offer to sell, sell, import, and otherwise transfer the Work, where -such license applies only to those patent claims licensable by such Contributor -that are necessarily infringed by their Contribution(s) alone or by combination -of their Contribution(s) with the Work to which such Contribution(s) was -submitted. If You institute patent litigation against any entity (including a -cross-claim or counterclaim in a lawsuit) alleging that the Work or a -Contribution incorporated within the Work constitutes direct or contributory -patent infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the Work or Derivative Works thereof -in any medium, with or without modifications, and in Source or Object form, -provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -You must retain, in the Source form of any Derivative Works that You distribute, -all copyright, patent, trademark, and attribution notices from the Source form -of the Work, excluding those notices that do not pertain to any part of the -Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, then any -Derivative Works that You distribute must include a readable copy of the -attribution notices contained within such NOTICE file, excluding those notices -that do not pertain to any part of the Derivative Works, in at least one of the -following places: within a NOTICE text file distributed as part of the -Derivative Works; within the Source form or documentation, if provided along -with the Derivative Works; or, within a display generated by the Derivative -Works, if and wherever such third-party notices normally appear. The contents of -the NOTICE file are for informational purposes only and do not modify the -License. You may add Your own attribution notices within Derivative Works that -You distribute, alongside or as an addendum to the NOTICE text from the Work, -provided that such additional attribution notices cannot be construed as -modifying the License. -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a whole, -provided Your use, reproduction, and distribution of the Work otherwise complies -with the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, any Contribution intentionally submitted -for inclusion in the Work by You to the Licensor shall be under the terms and -conditions of this License, without any additional terms or conditions. -Notwithstanding the above, nothing herein shall supersede or modify the terms of -any separate license agreement you may have executed with Licensor regarding -such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade names, trademarks, -service marks, or product names of the Licensor, except as required for -reasonable and customary use in describing the origin of the Work and -reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or agreed to in writing, Licensor provides the -Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, -including, without limitation, any warranties or conditions of TITLE, -NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are -solely responsible for determining the appropriateness of using or -redistributing the Work and assume any risks associated with Your exercise of -permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, whether in tort (including negligence), -contract, or otherwise, unless required by applicable law (such as deliberate -and grossly negligent acts) or agreed to in writing, shall any Contributor be -liable to You for damages, including any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License or -out of the use or inability to use the Work (including but not limited to -damages for loss of goodwill, work stoppage, computer failure or malfunction, or -any and all other commercial damages or losses), even if such Contributor has -been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing the Work or Derivative Works thereof, You may choose to -offer, and charge a fee for, acceptance of support, warranty, indemnity, or -other liability obligations and/or rights consistent with this License. However, -in accepting such obligations, You may act only on Your own behalf and on Your -sole responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any liability -incurred by, or claims asserted against, such Contributor by reason of your -accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - -To apply the Apache License to your work, attach the following boilerplate -notice, with the fields enclosed by brackets "[]" replaced with your own -identifying information. (Don't include the brackets!) The text should be -enclosed in the appropriate comment syntax for the file format. We also -recommend that a file or class name and description of purpose be included on -the same "printed page" as the copyright notice for easier identification within -third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - --------------------------------------------------------------------------------- -Dependency : github.com/golang/protobuf -Version: v1.5.2 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/golang/protobuf@v1.5.2/LICENSE: - -Copyright 2010 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - --------------------------------------------------------------------------------- -Dependency : github.com/golang/snappy -Version: v0.0.4 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/golang/snappy@v0.0.4/LICENSE: - -Copyright (c) 2011 The Snappy-Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gomodule/redigo -Version: v1.8.3 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gomodule/redigo@v1.8.3/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - --------------------------------------------------------------------------------- -Dependency : github.com/google/flatbuffers -Version: v1.12.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/flatbuffers@v1.12.1/LICENSE.txt: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/go-cmp -Version: v0.5.6 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/go-cmp@v0.5.6/LICENSE: - -Copyright (c) 2017 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/google/gofuzz -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/gofuzz@v1.1.0/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - --------------------------------------------------------------------------------- -Dependency : github.com/googleapis/gnostic -Version: v0.4.1 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/googleapis/gnostic@v0.4.1/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - --------------------------------------------------------------------------------- -Dependency : github.com/gorilla/mux -Version: v1.8.0 -Licence type (autodetected): BSD-3-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gorilla/mux@v1.8.0/LICENSE: - -Copyright (c) 2012-2018 The Gorilla Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/gorilla/websocket -Version: v1.4.2 -Licence type (autodetected): BSD-2-Clause --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/gorilla/websocket@v1.4.2/LICENSE: - -Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - --------------------------------------------------------------------------------- -Dependency : github.com/h2non/filetype -Version: v1.1.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/h2non/filetype@v1.1.1/LICENSE: - -The MIT License - -Copyright (c) Tomas Aparicio - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/cronexpr -Version: v1.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/cronexpr@v1.1.0/APLv2: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/errwrap -Version: v1.1.0 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/errwrap@v1.1.0/LICENSE: - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-cleanhttp -Version: v0.5.1 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-cleanhttp@v0.5.1/LICENSE: - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. "Contributor" - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. "Contributor Version" - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. - -1.6. "Executable Form" - - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. - -1.8. "License" - - means this document. - -1.9. "Licensable" - - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. - -1.10. "Modifications" - - means any of the following: - - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor - - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" - - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. - - - --------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-rootcerts -Version: v1.0.2 -Licence type (autodetected): MPL-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-rootcerts@v1.0.2/LICENSE: - -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. "Contributor" - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. "Contributor Version" - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. - -1.6. "Executable Form" - - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. - -1.8. "License" - - means this document. - -1.9. "Licensable" - - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. - -1.10. "Modifications" - - means any of the following: - - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. "Patent Claims" of a Contributor - - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. - -1.12. "Secondary License" - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. "Source Code Form" - - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. - - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. +Contents of probable licence file $GOMODCACHE/github.com/gorilla/mux@v1.8.0/LICENSE: -10.2. Effect of New Versions +Copyright (c) 2012-2018 The Gorilla Authors. All rights reserved. - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license - steward. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -10.3. Modified Versions + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. -Exhibit A - Source Code Form License Notice +-------------------------------------------------------------------------------- +Dependency : github.com/h2non/filetype +Version: v1.1.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. +Contents of probable licence file $GOMODCACHE/github.com/h2non/filetype@v1.1.1/LICENSE: -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. +The MIT License -You may add additional accurate notices of copyright ownership. +Copyright (c) Tomas Aparicio -Exhibit B - "Incompatible With Secondary Licenses" Notice +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by - the Mozilla Public License, v. 2.0. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/go-uuid -Version: v1.0.2 +Dependency : github.com/hashicorp/errwrap +Version: v1.1.0 Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-uuid@v1.0.2/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/errwrap@v1.1.0/LICENSE: Mozilla Public License, version 2.0 1. Definitions -1.1. "Contributor" +1.1. “Contributor” means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. -1.2. "Contributor Version" +1.2. “Contributor Version” means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor's Contribution. + Contributor and that particular Contributor’s Contribution. -1.3. "Contribution" +1.3. “Contribution” means Covered Software of a particular Contributor. -1.4. "Covered Software" +1.4. “Covered Software” means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. -1.5. "Incompatible With Secondary Licenses" +1.5. “Incompatible With Secondary Licenses” means a. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or - b. that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the terms of - a Secondary License. + b. that the Covered Software was made available under the terms of version + 1.1 or earlier of the License, but not also under the terms of a + Secondary License. -1.6. "Executable Form" +1.6. “Executable Form” means any form of the work other than Source Code Form. -1.7. "Larger Work" +1.7. “Larger Work” - means a work that combines Covered Software with other material, in a - separate file or files, that is not Covered Software. + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. -1.8. "License" +1.8. “License” means this document. -1.9. "Licensable" +1.9. “Licensable” - means having the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently, any and all of the - rights conveyed by this License. + means having the right to grant, to the maximum extent possible, whether at the + time of the initial grant or subsequently, any and all of the rights conveyed by + this License. -1.10. "Modifications" +1.10. “Modifications” means any of the following: - a. any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered Software; or + a. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or b. any new file in Source Code Form that contains any Covered Software. -1.11. "Patent Claims" of a Contributor +1.11. “Patent Claims” of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the License, - by the making, using, selling, offering for sale, having made, import, - or transfer of either its Contributions or its Contributor Version. + means any patent claim(s), including without limitation, method, process, + and apparatus claims, in any patent Licensable by such Contributor that + would be infringed, but for the grant of the License, by the making, + using, selling, offering for sale, having made, import, or transfer of + either its Contributions or its Contributor Version. -1.12. "Secondary License" +1.12. “Secondary License” means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. -1.13. "Source Code Form" +1.13. “Source Code Form” means the form of the work preferred for making modifications. -1.14. "You" (or "Your") +1.14. “You” (or “Your”) means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that controls, is + License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this - definition, "control" means (a) the power, direct or indirect, to cause + definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. @@ -13346,59 +10079,57 @@ Mozilla Public License, version 2.0 a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and + Contributions, either on an unmodified basis, with Modifications, or as + part of a Larger Work; and b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. + sale, have made, import, and otherwise transfer either its Contributions + or its Contributor Version. 2.2. Effective Date - The licenses granted in Section 2.1 with respect to any Contribution - become effective for each Contribution on the date the Contributor first - distributes such Contribution. + The licenses granted in Section 2.1 with respect to any Contribution become + effective for each Contribution on the date the Contributor first distributes + such Contribution. 2.3. Limitations on Grant Scope - The licenses granted in this Section 2 are the only rights granted under - this License. No additional rights or licenses will be implied from the - distribution or licensing of Covered Software under this License. - Notwithstanding Section 2.1(b) above, no patent license is granted by a - Contributor: + The licenses granted in this Section 2 are the only rights granted under this + License. No additional rights or licenses will be implied from the distribution + or licensing of Covered Software under this License. Notwithstanding Section + 2.1(b) above, no patent license is granted by a Contributor: a. for any code that a Contributor has removed from Covered Software; or - b. for infringements caused by: (i) Your and any other third party's + b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or - c. under Patent Claims infringed by Covered Software in the absence of - its Contributions. + c. under Patent Claims infringed by Covered Software in the absence of its + Contributions. - This License does not grant any rights in the trademarks, service marks, - or logos of any Contributor (except as may be necessary to comply with - the notice requirements in Section 3.4). + This License does not grant any rights in the trademarks, service marks, or + logos of any Contributor (except as may be necessary to comply with the + notice requirements in Section 3.4). 2.4. Subsequent Licenses No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this - License (see Section 10.2) or under the terms of a Secondary License (if - permitted under the terms of Section 3.3). + distribute the Covered Software under a subsequent version of this License + (see Section 10.2) or under the terms of a Secondary License (if permitted + under the terms of Section 3.3). 2.5. Representation - Each Contributor represents that the Contributor believes its - Contributions are its original creation(s) or it has sufficient rights to - grant the rights to its Contributions conveyed by this License. + Each Contributor represents that the Contributor believes its Contributions + are its original creation(s) or it has sufficient rights to grant the + rights to its Contributions conveyed by this License. 2.6. Fair Use - This License is not intended to limit any rights You have under - applicable copyright doctrines of fair use, fair dealing, or other - equivalents. + This License is not intended to limit any rights You have under applicable + copyright doctrines of fair use, fair dealing, or other equivalents. 2.7. Conditions @@ -13411,12 +10142,11 @@ Mozilla Public License, version 2.0 3.1. Distribution of Source Form All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under - the terms of this License. You must inform recipients that the Source - Code Form of the Covered Software is governed by the terms of this - License, and how they can obtain a copy of this License. You may not - attempt to alter or restrict the recipients' rights in the Source Code - Form. + Modifications that You create or to which You contribute, must be under the + terms of this License. You must inform recipients that the Source Code Form + of the Covered Software is governed by the terms of this License, and how + they can obtain a copy of this License. You may not attempt to alter or + restrict the recipients’ rights in the Source Code Form. 3.2. Distribution of Executable Form @@ -13428,40 +10158,39 @@ Mozilla Public License, version 2.0 reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and - b. You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter the - recipients' rights in the Source Code Form under this License. + b. You may distribute such Executable Form under the terms of this License, + or sublicense it under different terms, provided that the license for + the Executable Form does not attempt to limit or alter the recipients’ + rights in the Source Code Form under this License. 3.3. Distribution of a Larger Work You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for - the Covered Software. If the Larger Work is a combination of Covered - Software with a work governed by one or more Secondary Licenses, and the - Covered Software is not Incompatible With Secondary Licenses, this - License permits You to additionally distribute such Covered Software - under the terms of such Secondary License(s), so that the recipient of - the Larger Work may, at their option, further distribute the Covered - Software under the terms of either this License or such Secondary - License(s). + provided that You also comply with the requirements of this License for the + Covered Software. If the Larger Work is a combination of Covered Software + with a work governed by one or more Secondary Licenses, and the Covered + Software is not Incompatible With Secondary Licenses, this License permits + You to additionally distribute such Covered Software under the terms of + such Secondary License(s), so that the recipient of the Larger Work may, at + their option, further distribute the Covered Software under the terms of + either this License or such Secondary License(s). 3.4. Notices - You may not remove or alter the substance of any license notices - (including copyright notices, patent notices, disclaimers of warranty, or - limitations of liability) contained within the Source Code Form of the - Covered Software, except that You may alter any license notices to the - extent required to remedy known factual inaccuracies. + You may not remove or alter the substance of any license notices (including + copyright notices, patent notices, disclaimers of warranty, or limitations + of liability) contained within the Source Code Form of the Covered + Software, except that You may alter any license notices to the extent + required to remedy known factual inaccuracies. 3.5. Application of Additional Terms You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on - behalf of any Contributor. You must make it absolutely clear that any - such warranty, support, indemnity, or liability obligation is offered by - You alone, and You hereby agree to indemnify every Contributor for any + Software. However, You may do so only on Your own behalf, and not on behalf + of any Contributor. You must make it absolutely clear that any such + warranty, support, indemnity, or liability obligation is offered by You + alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any @@ -13470,14 +10199,14 @@ Mozilla Public License, version 2.0 4. Inability to Comply Due to Statute or Regulation If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, - judicial order, or regulation then You must: (a) comply with the terms of - this License to the maximum extent possible; and (b) describe the - limitations and the code they affect. Such description must be placed in a - text file included with all distributions of the Covered Software under - this License. Except to the extent prohibited by statute or regulation, - such description must be sufficiently detailed for a recipient of ordinary - skill to be able to understand it. + with respect to some or all of the Covered Software due to statute, judicial + order, or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and the code + they affect. Such description must be placed in a text file included with all + distributions of the Covered Software under this License. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. 5. Termination @@ -13485,22 +10214,21 @@ Mozilla Public License, version 2.0 fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing - basis, if such Contributor fails to notify You of the non-compliance by - some reasonable means prior to 60 days after You have come back into - compliance. Moreover, Your grants from a particular Contributor are - reinstated on an ongoing basis if such Contributor notifies You of the - non-compliance by some reasonable means, this is the first time You have - received notice of non-compliance with this License from such - Contributor, and You become compliant prior to 30 days after Your receipt - of the notice. + explicitly and finally terminates Your grants, and (b) on an ongoing basis, + if such Contributor fails to notify You of the non-compliance by some + reasonable means prior to 60 days after You have come back into compliance. + Moreover, Your grants from a particular Contributor are reinstated on an + ongoing basis if such Contributor notifies You of the non-compliance by + some reasonable means, this is the first time You have received notice of + non-compliance with this License from such Contributor, and You become + compliant prior to 30 days after Your receipt of the notice. 5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, - counter-claims, and cross-claims) alleging that a Contributor Version - directly or indirectly infringes any patent, then the rights granted to - You by any and all Contributors for the Covered Software under Section - 2.1 of this License shall terminate. + infringement claim (excluding declaratory judgment actions, counter-claims, + and cross-claims) alleging that a Contributor Version directly or + indirectly infringes any patent, then the rights granted to You by any and + all Contributors for the Covered Software under Section 2.1 of this License + shall terminate. 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been @@ -13509,16 +10237,16 @@ Mozilla Public License, version 2.0 6. Disclaimer of Warranty - Covered Software is provided under this License on an "as is" basis, - without warranty of any kind, either expressed, implied, or statutory, - including, without limitation, warranties that the Covered Software is free - of defects, merchantable, fit for a particular purpose or non-infringing. - The entire risk as to the quality and performance of the Covered Software - is with You. Should any Covered Software prove defective in any respect, - You (not any Contributor) assume the cost of any necessary servicing, - repair, or correction. This disclaimer of warranty constitutes an essential - part of this License. No use of any Covered Software is authorized under - this License except under this disclaimer. + Covered Software is provided under this License on an “as is” basis, without + warranty of any kind, either expressed, implied, or statutory, including, + without limitation, warranties that the Covered Software is free of defects, + merchantable, fit for a particular purpose or non-infringing. The entire + risk as to the quality and performance of the Covered Software is with You. + Should any Covered Software prove defective in any respect, You (not any + Contributor) assume the cost of any necessary servicing, repair, or + correction. This disclaimer of warranty constitutes an essential part of this + License. No use of any Covered Software is authorized under this License + except under this disclaimer. 7. Limitation of Liability @@ -13530,29 +10258,27 @@ Mozilla Public License, version 2.0 goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from - such party's negligence to the extent applicable law prohibits such - limitation. Some jurisdictions do not allow the exclusion or limitation of - incidental or consequential damages, so this exclusion and limitation may - not apply to You. + shall not apply to liability for death or personal injury resulting from such + party’s negligence to the extent applicable law prohibits such limitation. + Some jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply to You. 8. Litigation - Any litigation relating to this License may be brought only in the courts - of a jurisdiction where the defendant maintains its principal place of - business and such litigation shall be governed by laws of that - jurisdiction, without reference to its conflict-of-law provisions. Nothing - in this Section shall prevent a party's ability to bring cross-claims or - counter-claims. + Any litigation relating to this License may be brought only in the courts of + a jurisdiction where the defendant maintains its principal place of business + and such litigation shall be governed by laws of that jurisdiction, without + reference to its conflict-of-law provisions. Nothing in this Section shall + prevent a party’s ability to bring cross-claims or counter-claims. 9. Miscellaneous - This License represents the complete agreement concerning the subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. Any law or regulation which provides that - the language of a contract shall be construed against the drafter shall not - be used to construe this License against a Contributor. + This License represents the complete agreement concerning the subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. Any law or regulation which provides that the language of a + contract shall be construed against the drafter shall not be used to construe + this License against a Contributor. 10. Versions of the License @@ -13566,24 +10292,23 @@ Mozilla Public License, version 2.0 10.2. Effect of New Versions - You may distribute the Covered Software under the terms of the version - of the License under which You originally received the Covered Software, - or under the terms of any subsequent version published by the license + You may distribute the Covered Software under the terms of the version of + the License under which You originally received the Covered Software, or + under the terms of any subsequent version published by the license steward. 10.3. Modified Versions If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a - modified version of this License if you rename the license and remove - any references to the name of the license steward (except to note that - such modified license differs from this License). + create a new license for such software, you may create and use a modified + version of this License if you rename the license and remove any + references to the name of the license steward (except to note that such + modified license differs from this License). -10.4. Distributing Source Code Form that is Incompatible With Secondary - Licenses If You choose to distribute Source Code Form that is - Incompatible With Secondary Licenses under the terms of this version of - the License, the notice described in Exhibit B of this License must be - attached. +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. Exhibit A - Source Code Form License Notice @@ -13594,28 +10319,27 @@ Exhibit A - Source Code Form License Notice obtain one at http://mozilla.org/MPL/2.0/. -If it is not possible or desirable to put the notice in a particular file, -then You may include the notice in a location (such as a LICENSE file in a -relevant directory) where a recipient would be likely to look for such a -notice. +If it is not possible or desirable to put the notice in a particular file, then +You may include the notice in a location (such as a LICENSE file in a relevant +directory) where a recipient would be likely to look for such a notice. You may add additional accurate notices of copyright ownership. -Exhibit B - "Incompatible With Secondary Licenses" Notice +Exhibit B - “Incompatible With Secondary Licenses” Notice - This Source Code Form is "Incompatible - With Secondary Licenses", as defined by + This Source Code Form is “Incompatible + With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. -------------------------------------------------------------------------------- -Dependency : github.com/hashicorp/nomad/api -Version: v0.0.0-20201203164818-6318a8ac7bf8 +Dependency : github.com/hashicorp/go-uuid +Version: v1.0.2 Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/nomad/api@v0.0.0-20201203164818-6318a8ac7bf8/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-uuid@v1.0.2/LICENSE: Mozilla Public License, version 2.0 @@ -14080,29 +10804,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -Dependency : github.com/jmespath/go-jmespath -Version: v0.4.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/jmespath/go-jmespath@v0.4.0/LICENSE: - -Copyright 2015 James Saryerwinnie - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -------------------------------------------------------------------------------- Dependency : github.com/joeshaw/multierror Version: v0.0.0-20140124173710-69b34d4ec901 @@ -14345,37 +11046,6 @@ Apache License limitations under the License. --------------------------------------------------------------------------------- -Dependency : github.com/josharian/intern -Version: v1.0.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/josharian/intern@v1.0.0/license.md: - -MIT License - -Copyright (c) 2019 Josh Bleecher Snyder - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -------------------------------------------------------------------------------- Dependency : github.com/klauspost/compress Version: v1.13.6 @@ -14721,23 +11391,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -Dependency : github.com/mailru/easyjson -Version: v0.7.7 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mailru/easyjson@v0.7.7/LICENSE: - -Copyright (c) 2016 Mail.Ru Group - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -------------------------------------------------------------------------------- Dependency : github.com/mattn/go-colorable Version: v0.1.11 @@ -14838,37 +11491,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -Dependency : github.com/mitchellh/go-homedir -Version: v1.1.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-homedir@v1.1.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 Mitchell Hashimoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -------------------------------------------------------------------------------- Dependency : github.com/mitchellh/hashstructure Version: v1.1.0 @@ -16697,38 +13319,6 @@ Contents of probable licence file $GOMODCACHE/github.com/tklauser/numcpus@v0.2.2 --------------------------------------------------------------------------------- -Dependency : github.com/ugorji/go/codec -Version: v1.1.8 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/ugorji/go/codec@v1.1.8/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2012-2015 Ugorji Nwoke. -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -------------------------------------------------------------------------------- Dependency : github.com/urso/diag Version: v0.0.0-20200210123136-21b3cc8eb797 diff --git a/README.md b/README.md index 6d006940b59..09b2c7d9ecb 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ in the same directory with the name apm-server. make ``` -You also need to create all files needed by the APM Server by running the additional command below. +If you make code changes, you may also need to update the project by running the additional command below: ``` make update @@ -60,51 +60,22 @@ To run APM Server with debugging output enabled, run: ./apm-server -c apm-server.yml -e -d "*" ``` +APM Server expects index templates, ILM policies, and ingest pipelines to be set up externally. +This should be done by [installing the APM integration](https://www.elastic.co/guide/en/fleet/current/fleet-quick-start-traces.html#add-apm-integration). +When running APM Server directly, it is only necessary to install the integration and not to run an Elastic Agent. + ### Testing For Testing check out the [testing guide](TESTING.md) -### Update - -Each beat has a template for the mapping in elasticsearch and a documentation for the fields -which is automatically generated based on `fields.yml`. -To generate required configuration files and templates run: - -``` -make update -``` - -### Generate package - -APM-Server includes a script to generate an integration package to run with Fleet. -To Generate a package run: - -``` -make fields gen-package -``` - -That command takes the existing `fields.yml` files and split them into `ecs.yml` and `fields.yml` files for each data stream type. -It also generates a `README.md` with a field reference that will be shown in the integration package. - -After generating a package, `apmpackage/apm` should be manually copied to `elastic/integrations`. -Then follow instructions in https://github.com/elastic/integrations/blob/master/CONTRIBUTING.md. - ### Cleanup -To clean APM Server source code, run the following commands: - -``` -make fmt -``` - To clean up the build directory and generated artifacts, run: ``` make clean ``` -For further development, check out the [beat developer guide](https://www.elastic.co/guide/en/beats/libbeat/current/new-beat.html). - ### Contributing See [contributing](CONTRIBUTING.md) for details about reporting bugs, requesting features, diff --git a/_meta/beat.yml b/_meta/beat.yml index d16bba2b82a..1f4f5e62da9 100644 --- a/_meta/beat.yml +++ b/_meta/beat.yml @@ -261,75 +261,6 @@ apm-server: # Configure curve types for ECDHE based cipher suites. #ssl.curve_types: [] - #---------------------------- APM Server - ILM Index Lifecycle Management ---------------------------- - - #ilm: - # Supported values are `auto`, `true` and `false`. - # `true`: Make use of Elasticsearch's Index Lifecycle Management (ILM) for APM indices. If no Elasticsearch output is - # configured or the configured instance does not support ILM, APM Server cannot apply ILM and must create - # unmanaged indices instead. - # `false`: APM Server does not make use of ILM in Elasticsearch. - # `auto`: If an Elasticsearch output is configured with default index and indices settings, and the configured - # Elasticsearch instance supports ILM, `auto` will resolve to `true`. Otherwise `auto` will resolve to `false`. - # Default value is `auto`. - #enabled: "auto" - - #setup: - # Only disable setup if you want to set up everything related to ILM on your own. - # When setup is enabled, the APM Server creates: - # - aliases and ILM policies if `apm-server.ilm.enabled` resolves to `true`. - # - An ILM specific template per event type. This is required to map ILM aliases and policies to indices. In case - # ILM is disabled, the templates will be created without any ILM settings. - # Be aware that if you turn off setup, you need to manually manage event type specific templates on your own. - # If you simply want to disable ILM, use the above setting, `apm-server.ilm.enabled`, instead. - # Defaults to true. - #enabled: true - - # Configure whether or not existing policies and ILM related templates should be updated. This needs to be - # set to true when customizing your policies. - # Defaults to false. - #overwrite: false - - # Set `require_policy` to `false` when policies are set up outside of APM Server but referenced here. - # Default value is `true`. - #require_policy: true - - # Customized mappings will be merged with the default setup, so you only need to configure mappings for the - # event types, policies, and index suffixes that you want to customize. - # Indices are named in this way: `apm-%{[observer.version]}-%{[event.type]}-{index_suffix}`, - # e.g., apm-7.9.0-span-custom*. The `index_suffix` is optional. - # NOTE: When configuring an `index_suffix`, ensure that no previously set up templates conflict with the - # newly configured ones. If an index matches multiple templates with the same order, the settings of - # the templates will override each other. Any conflicts need to be cleaned up manually. - # NOTE: When customizing `setup.template.name` and `setup.template.pattern`, ensure they still match the indices. - #mapping: - #- event_type: "error" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - #- event_type: "span" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - #- event_type: "transaction" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - #- event_type: "metric" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - - # Configured policies are added to pre-defined default policies. - # If a policy with the same name as a default policy is configured, the configured policy overwrites the default policy. - #policies: - #- name: "apm-rollover-30-days" - #policy: - #phases: - #hot: - #actions: - #rollover: - #max_size: "50gb" - #max_age: "30d" - #set_priority: - #priority: 100 - #================================= General ================================= # Data is buffered in a memory queue before it is published to the configured output. @@ -357,42 +288,6 @@ apm-server: # default is the number of logical CPUs available in the system. #max_procs: -#================================= Template ================================= - -# A template is used to set the mapping in Elasticsearch. -# By default template loading is enabled and the template is loaded. -# These settings can be adjusted to load your own template or overwrite existing ones. - -# Set to false to disable template loading. -#setup.template.enabled: true - -# Template name. By default the template name is "apm-%{[observer.version]}" -# The template name and pattern has to be set in case the elasticsearch index pattern is modified. -#setup.template.name: "apm-%{[observer.version]}" - -# Template pattern. By default the template pattern is "apm-%{[observer.version]}-*" to apply to the default index settings. -# The first part is the version of apm-server and then -* is used to match all daily indices. -# The template name and pattern has to be set in case the elasticsearch index pattern is modified. -#setup.template.pattern: "apm-%{[observer.version]}-*" - -# Path to fields.yml file to generate the template. -#setup.template.fields: "${path.config}/fields.yml" - -# Overwrite existing template. -#setup.template.overwrite: false - -# Elasticsearch template settings. -#setup.template.settings: - - # A dictionary of settings to place into the settings.index dictionary - # of the Elasticsearch template. For more details, please check - # https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html - #index: - #number_of_shards: 1 - #codec: best_compression - #number_of_routing_shards: 30 - #mapping.total_fields.limit: 2000 - #============================= Elastic Cloud ============================= # These settings simplify using APM Server with the Elastic Cloud (https://cloud.elastic.co/). @@ -439,49 +334,6 @@ output.elasticsearch: # Number of workers per Elasticsearch host. #worker: 1 - # By using the configuration below, APM documents are stored to separate indices, - # depending on their `processor.event`: - # - error - # - transaction - # - span - # - sourcemap - # - # The indices are all prefixed with `apm-%{[observer.version]}`. - # To allow managing indices based on their age, all indices (except for sourcemaps) - # end with the information of the day they got indexed. - # e.g. "apm-7.3.0-transaction-2019.07.20" - # - # Be aware that you can only specify one Elasticsearch template. - # If you modify the index patterns you must also update these configurations accordingly, - # as they need to be aligned: - # * `setup.template.name` - # * `setup.template.pattern` - #index: "apm-%{[observer.version]}-%{+yyyy.MM.dd}" - #indices: - # - index: "apm-%{[observer.version]}-sourcemap" - # when.contains: - # processor.event: "sourcemap" - # - # - index: "apm-%{[observer.version]}-error-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "error" - # - # - index: "apm-%{[observer.version]}-transaction-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "transaction" - # - # - index: "apm-%{[observer.version]}-span-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "span" - # - # - index: "apm-%{[observer.version]}-metric-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "metric" - # - # - index: "apm-%{[observer.version]}-onboarding-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "onboarding" - # Optional HTTP Path. #path: "/elasticsearch" diff --git a/apm-server.docker.yml b/apm-server.docker.yml index 14bf9a1c055..f1a7bbecc9f 100644 --- a/apm-server.docker.yml +++ b/apm-server.docker.yml @@ -261,75 +261,6 @@ apm-server: # Configure curve types for ECDHE based cipher suites. #ssl.curve_types: [] - #---------------------------- APM Server - ILM Index Lifecycle Management ---------------------------- - - #ilm: - # Supported values are `auto`, `true` and `false`. - # `true`: Make use of Elasticsearch's Index Lifecycle Management (ILM) for APM indices. If no Elasticsearch output is - # configured or the configured instance does not support ILM, APM Server cannot apply ILM and must create - # unmanaged indices instead. - # `false`: APM Server does not make use of ILM in Elasticsearch. - # `auto`: If an Elasticsearch output is configured with default index and indices settings, and the configured - # Elasticsearch instance supports ILM, `auto` will resolve to `true`. Otherwise `auto` will resolve to `false`. - # Default value is `auto`. - #enabled: "auto" - - #setup: - # Only disable setup if you want to set up everything related to ILM on your own. - # When setup is enabled, the APM Server creates: - # - aliases and ILM policies if `apm-server.ilm.enabled` resolves to `true`. - # - An ILM specific template per event type. This is required to map ILM aliases and policies to indices. In case - # ILM is disabled, the templates will be created without any ILM settings. - # Be aware that if you turn off setup, you need to manually manage event type specific templates on your own. - # If you simply want to disable ILM, use the above setting, `apm-server.ilm.enabled`, instead. - # Defaults to true. - #enabled: true - - # Configure whether or not existing policies and ILM related templates should be updated. This needs to be - # set to true when customizing your policies. - # Defaults to false. - #overwrite: false - - # Set `require_policy` to `false` when policies are set up outside of APM Server but referenced here. - # Default value is `true`. - #require_policy: true - - # Customized mappings will be merged with the default setup, so you only need to configure mappings for the - # event types, policies, and index suffixes that you want to customize. - # Indices are named in this way: `apm-%{[observer.version]}-%{[event.type]}-{index_suffix}`, - # e.g., apm-7.9.0-span-custom*. The `index_suffix` is optional. - # NOTE: When configuring an `index_suffix`, ensure that no previously set up templates conflict with the - # newly configured ones. If an index matches multiple templates with the same order, the settings of - # the templates will override each other. Any conflicts need to be cleaned up manually. - # NOTE: When customizing `setup.template.name` and `setup.template.pattern`, ensure they still match the indices. - #mapping: - #- event_type: "error" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - #- event_type: "span" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - #- event_type: "transaction" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - #- event_type: "metric" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - - # Configured policies are added to pre-defined default policies. - # If a policy with the same name as a default policy is configured, the configured policy overwrites the default policy. - #policies: - #- name: "apm-rollover-30-days" - #policy: - #phases: - #hot: - #actions: - #rollover: - #max_size: "50gb" - #max_age: "30d" - #set_priority: - #priority: 100 - #================================= General ================================= # Data is buffered in a memory queue before it is published to the configured output. @@ -357,42 +288,6 @@ apm-server: # default is the number of logical CPUs available in the system. #max_procs: -#================================= Template ================================= - -# A template is used to set the mapping in Elasticsearch. -# By default template loading is enabled and the template is loaded. -# These settings can be adjusted to load your own template or overwrite existing ones. - -# Set to false to disable template loading. -#setup.template.enabled: true - -# Template name. By default the template name is "apm-%{[observer.version]}" -# The template name and pattern has to be set in case the elasticsearch index pattern is modified. -#setup.template.name: "apm-%{[observer.version]}" - -# Template pattern. By default the template pattern is "apm-%{[observer.version]}-*" to apply to the default index settings. -# The first part is the version of apm-server and then -* is used to match all daily indices. -# The template name and pattern has to be set in case the elasticsearch index pattern is modified. -#setup.template.pattern: "apm-%{[observer.version]}-*" - -# Path to fields.yml file to generate the template. -#setup.template.fields: "${path.config}/fields.yml" - -# Overwrite existing template. -#setup.template.overwrite: false - -# Elasticsearch template settings. -#setup.template.settings: - - # A dictionary of settings to place into the settings.index dictionary - # of the Elasticsearch template. For more details, please check - # https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html - #index: - #number_of_shards: 1 - #codec: best_compression - #number_of_routing_shards: 30 - #mapping.total_fields.limit: 2000 - #============================= Elastic Cloud ============================= # These settings simplify using APM Server with the Elastic Cloud (https://cloud.elastic.co/). @@ -439,49 +334,6 @@ output.elasticsearch: # Number of workers per Elasticsearch host. #worker: 1 - # By using the configuration below, APM documents are stored to separate indices, - # depending on their `processor.event`: - # - error - # - transaction - # - span - # - sourcemap - # - # The indices are all prefixed with `apm-%{[observer.version]}`. - # To allow managing indices based on their age, all indices (except for sourcemaps) - # end with the information of the day they got indexed. - # e.g. "apm-7.3.0-transaction-2019.07.20" - # - # Be aware that you can only specify one Elasticsearch template. - # If you modify the index patterns you must also update these configurations accordingly, - # as they need to be aligned: - # * `setup.template.name` - # * `setup.template.pattern` - #index: "apm-%{[observer.version]}-%{+yyyy.MM.dd}" - #indices: - # - index: "apm-%{[observer.version]}-sourcemap" - # when.contains: - # processor.event: "sourcemap" - # - # - index: "apm-%{[observer.version]}-error-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "error" - # - # - index: "apm-%{[observer.version]}-transaction-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "transaction" - # - # - index: "apm-%{[observer.version]}-span-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "span" - # - # - index: "apm-%{[observer.version]}-metric-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "metric" - # - # - index: "apm-%{[observer.version]}-onboarding-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "onboarding" - # Optional HTTP Path. #path: "/elasticsearch" diff --git a/apm-server.yml b/apm-server.yml index ac9d7695262..795b560c336 100644 --- a/apm-server.yml +++ b/apm-server.yml @@ -261,75 +261,6 @@ apm-server: # Configure curve types for ECDHE based cipher suites. #ssl.curve_types: [] - #---------------------------- APM Server - ILM Index Lifecycle Management ---------------------------- - - #ilm: - # Supported values are `auto`, `true` and `false`. - # `true`: Make use of Elasticsearch's Index Lifecycle Management (ILM) for APM indices. If no Elasticsearch output is - # configured or the configured instance does not support ILM, APM Server cannot apply ILM and must create - # unmanaged indices instead. - # `false`: APM Server does not make use of ILM in Elasticsearch. - # `auto`: If an Elasticsearch output is configured with default index and indices settings, and the configured - # Elasticsearch instance supports ILM, `auto` will resolve to `true`. Otherwise `auto` will resolve to `false`. - # Default value is `auto`. - #enabled: "auto" - - #setup: - # Only disable setup if you want to set up everything related to ILM on your own. - # When setup is enabled, the APM Server creates: - # - aliases and ILM policies if `apm-server.ilm.enabled` resolves to `true`. - # - An ILM specific template per event type. This is required to map ILM aliases and policies to indices. In case - # ILM is disabled, the templates will be created without any ILM settings. - # Be aware that if you turn off setup, you need to manually manage event type specific templates on your own. - # If you simply want to disable ILM, use the above setting, `apm-server.ilm.enabled`, instead. - # Defaults to true. - #enabled: true - - # Configure whether or not existing policies and ILM related templates should be updated. This needs to be - # set to true when customizing your policies. - # Defaults to false. - #overwrite: false - - # Set `require_policy` to `false` when policies are set up outside of APM Server but referenced here. - # Default value is `true`. - #require_policy: true - - # Customized mappings will be merged with the default setup, so you only need to configure mappings for the - # event types, policies, and index suffixes that you want to customize. - # Indices are named in this way: `apm-%{[observer.version]}-%{[event.type]}-{index_suffix}`, - # e.g., apm-7.9.0-span-custom*. The `index_suffix` is optional. - # NOTE: When configuring an `index_suffix`, ensure that no previously set up templates conflict with the - # newly configured ones. If an index matches multiple templates with the same order, the settings of - # the templates will override each other. Any conflicts need to be cleaned up manually. - # NOTE: When customizing `setup.template.name` and `setup.template.pattern`, ensure they still match the indices. - #mapping: - #- event_type: "error" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - #- event_type: "span" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - #- event_type: "transaction" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - #- event_type: "metric" - # policy_name: "apm-rollover-30-days" - # index_suffix: "" - - # Configured policies are added to pre-defined default policies. - # If a policy with the same name as a default policy is configured, the configured policy overwrites the default policy. - #policies: - #- name: "apm-rollover-30-days" - #policy: - #phases: - #hot: - #actions: - #rollover: - #max_size: "50gb" - #max_age: "30d" - #set_priority: - #priority: 100 - #================================= General ================================= # Data is buffered in a memory queue before it is published to the configured output. @@ -357,42 +288,6 @@ apm-server: # default is the number of logical CPUs available in the system. #max_procs: -#================================= Template ================================= - -# A template is used to set the mapping in Elasticsearch. -# By default template loading is enabled and the template is loaded. -# These settings can be adjusted to load your own template or overwrite existing ones. - -# Set to false to disable template loading. -#setup.template.enabled: true - -# Template name. By default the template name is "apm-%{[observer.version]}" -# The template name and pattern has to be set in case the elasticsearch index pattern is modified. -#setup.template.name: "apm-%{[observer.version]}" - -# Template pattern. By default the template pattern is "apm-%{[observer.version]}-*" to apply to the default index settings. -# The first part is the version of apm-server and then -* is used to match all daily indices. -# The template name and pattern has to be set in case the elasticsearch index pattern is modified. -#setup.template.pattern: "apm-%{[observer.version]}-*" - -# Path to fields.yml file to generate the template. -#setup.template.fields: "${path.config}/fields.yml" - -# Overwrite existing template. -#setup.template.overwrite: false - -# Elasticsearch template settings. -#setup.template.settings: - - # A dictionary of settings to place into the settings.index dictionary - # of the Elasticsearch template. For more details, please check - # https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html - #index: - #number_of_shards: 1 - #codec: best_compression - #number_of_routing_shards: 30 - #mapping.total_fields.limit: 2000 - #============================= Elastic Cloud ============================= # These settings simplify using APM Server with the Elastic Cloud (https://cloud.elastic.co/). @@ -439,49 +334,6 @@ output.elasticsearch: # Number of workers per Elasticsearch host. #worker: 1 - # By using the configuration below, APM documents are stored to separate indices, - # depending on their `processor.event`: - # - error - # - transaction - # - span - # - sourcemap - # - # The indices are all prefixed with `apm-%{[observer.version]}`. - # To allow managing indices based on their age, all indices (except for sourcemaps) - # end with the information of the day they got indexed. - # e.g. "apm-7.3.0-transaction-2019.07.20" - # - # Be aware that you can only specify one Elasticsearch template. - # If you modify the index patterns you must also update these configurations accordingly, - # as they need to be aligned: - # * `setup.template.name` - # * `setup.template.pattern` - #index: "apm-%{[observer.version]}-%{+yyyy.MM.dd}" - #indices: - # - index: "apm-%{[observer.version]}-sourcemap" - # when.contains: - # processor.event: "sourcemap" - # - # - index: "apm-%{[observer.version]}-error-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "error" - # - # - index: "apm-%{[observer.version]}-transaction-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "transaction" - # - # - index: "apm-%{[observer.version]}-span-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "span" - # - # - index: "apm-%{[observer.version]}-metric-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "metric" - # - # - index: "apm-%{[observer.version]}-onboarding-%{+yyyy.MM.dd}" - # when.contains: - # processor.event: "onboarding" - # Optional HTTP Path. #path: "/elasticsearch" diff --git a/apmpackage/README.md b/apmpackage/README.md index a527711636a..6e59640bd83 100644 --- a/apmpackage/README.md +++ b/apmpackage/README.md @@ -94,8 +94,7 @@ Most of the work here is done in `beats/x-pack/elastic-agent` make && make update # tar and compress - cp build/fields/fields.yml . - tar cvf apm-server--.tar apm-server LICENSE.txt NOTICE.txt README.md apm-server.yml fields.yml + tar cvf apm-server--.tar apm-server LICENSE.txt NOTICE.txt README.md apm-server.yml gzip apm-server--.tar sha512sum apm-server--.tar.gz | tee apm-server--.tar.gz.sha512 diff --git a/beater/beater.go b/beater/beater.go index b5ebe6d371c..380f6ab9a34 100644 --- a/beater/beater.go +++ b/beater/beater.go @@ -103,9 +103,6 @@ func NewCreator(args CreatorParams) beat.Creator { if err != nil { return nil, err } - if err := recordRootConfig(b.Info, bt.rawConfig); err != nil { - bt.logger.Errorf("Error recording telemetry data", err) - } if bt.config.Pprof.Enabled { // Profiling rates should be set once, early on in the program. @@ -116,12 +113,6 @@ func NewCreator(args CreatorParams) beat.Creator { } } - if !bt.config.DataStreams.Enabled { - if b.Manager != nil && b.Manager.Enabled() { - return nil, errors.New("data streams must be enabled when the server is managed") - } - } - if b.Manager != nil && b.Manager.Enabled() { // Subscribe to output changes for reconfiguring apm-server's Elasticsearch // clients, which use the Elasticsearch output config by default. We install @@ -274,12 +265,10 @@ func (r *reloader) Reload(configs []*reload.ConfigWithMeta) error { if integrationConfig.DataStream != nil { namespace = integrationConfig.DataStream.Namespace } - apmServerCommonConfig := integrationConfig.APMServer - apmServerCommonConfig.Merge(common.MustNewConfigFrom(`{"data_streams.enabled": true}`)) r.mu.Lock() r.namespace = namespace - r.rawConfig = apmServerCommonConfig + r.rawConfig = integrationConfig.APMServer r.fleetConfig = &integrationConfig.Fleet r.mu.Unlock() return r.reload() @@ -593,18 +582,15 @@ func (s *serverRunner) waitReady(ctx context.Context, kibanaClient kibana.Client ) }) } - - if s.config.DataStreams.Enabled { - preconditions = append(preconditions, func(ctx context.Context) error { - return queryClusterUUID(ctx, esOutputClient) - }) - } + preconditions = append(preconditions, func(ctx context.Context) error { + return queryClusterUUID(ctx, esOutputClient) + }) } // When running standalone with data streams enabled, by default we will add // a precondition that ensures the integration is installed. fleetManaged := s.beat.Manager != nil && s.beat.Manager.Enabled() - if !fleetManaged && s.config.DataStreams.Enabled && s.config.DataStreams.WaitForIntegration { + if !fleetManaged && s.config.DataStreams.WaitForIntegration { if kibanaClient == nil && esOutputClient == nil { return errors.New("cannot wait for integration without either Kibana or Elasticsearch config") } @@ -630,7 +616,7 @@ func (s *serverRunner) waitReady(ctx context.Context, kibanaClient kibana.Client // newFinalBatchProcessor returns the final model.BatchProcessor that publishes events, // and a cleanup function which should be called on server shutdown. func (s *serverRunner) newFinalBatchProcessor(p *publish.Publisher) (model.BatchProcessor, func(context.Context) error, error) { - if s.elasticsearchOutputConfig == nil || !s.config.DataStreams.Enabled { + if s.elasticsearchOutputConfig == nil { return p, func(context.Context) error { return nil }, nil } @@ -700,17 +686,13 @@ func (s *serverRunner) wrapRunServerWithPreprocessors(runServer RunServerFunc) R newObserverBatchProcessor(s.beat.Info), model.ProcessBatchFunc(ecsVersionBatchProcessor), modelprocessor.NewEventCounter(monitoring.Default.GetRegistry("apm-server")), + &modelprocessor.SetDataStream{Namespace: s.namespace}, } if s.config.DefaultServiceEnvironment != "" { processors = append(processors, &modelprocessor.SetDefaultServiceEnvironment{ DefaultServiceEnvironment: s.config.DefaultServiceEnvironment, }) } - if s.config.DataStreams.Enabled { - processors = append(processors, &modelprocessor.SetDataStream{ - Namespace: s.namespace, - }) - } return WrapRunServerWithProcessors(runServer, processors...) } diff --git a/beater/beater_test.go b/beater/beater_test.go index d7ed86aa4af..b48667ea2b1 100644 --- a/beater/beater_test.go +++ b/beater/beater_test.go @@ -83,6 +83,10 @@ func newBeat(t *testing.T, cfg *common.Config, beatConfig *beat.BeatConfig, even combinedConfig := common.MustNewConfigFrom(map[string]interface{}{ "host": "localhost:0", + // Disable waiting for integration to be installed by default, + // to simplify tests. This feature is tested independently. + "data_streams.wait_for_integration": false, + // Enable instrumentation so the profile endpoint is // available, but set the profiling interval to something // long enough that it won't kick in. @@ -252,7 +256,7 @@ func (tb *testBeater) initClient(cfg *config.Config, listenAddr string) { } } -func TestTransformConfigIndex(t *testing.T) { +func TestSourcemapIndexPattern(t *testing.T) { test := func(t *testing.T, indexPattern, expected string) { var requestPaths []string srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { diff --git a/beater/config/config.go b/beater/config/config.go index cdedd037304..3d28045a79c 100644 --- a/beater/config/config.go +++ b/beater/config/config.go @@ -97,7 +97,7 @@ func NewConfig(ucfg *common.Config, outputESCfg *common.Config) (*Config, error) } } - if err := c.RumConfig.setup(logger, c.DataStreams.Enabled, outputESCfg); err != nil { + if err := c.RumConfig.setup(logger, outputESCfg); err != nil { return nil, err } @@ -109,7 +109,7 @@ func NewConfig(ucfg *common.Config, outputESCfg *common.Config) (*Config, error) return nil, err } - if err := c.Sampling.Tail.setup(logger, c.DataStreams.Enabled, outputESCfg); err != nil { + if err := c.Sampling.Tail.setup(logger, outputESCfg); err != nil { return nil, err } diff --git a/beater/config/config_test.go b/beater/config/config_test.go index 827c932fcac..6dbf7e70ef3 100644 --- a/beater/config/config_test.go +++ b/beater/config/config_test.go @@ -246,7 +246,6 @@ func TestUnpackConfig(t *testing.T) { }, DefaultServiceEnvironment: "overridden", DataStreams: DataStreamsConfig{ - Enabled: false, WaitForIntegration: true, }, WaitReadyInterval: 5 * time.Second, @@ -390,7 +389,6 @@ func TestUnpackConfig(t *testing.T) { }, }, DataStreams: DataStreamsConfig{ - Enabled: false, WaitForIntegration: false, }, WaitReadyInterval: 5 * time.Second, @@ -559,7 +557,6 @@ func TestNewConfig_ESConfig(t *testing.T) { ucfg, err := common.NewConfigFrom(`{ "rum.enabled":true, "auth.api_key.enabled":true, - "data_streams.enabled":true, "sampling.tail.policies":[{"sample_rate": 0.5}], }`) require.NoError(t, err) diff --git a/beater/config/data_streams.go b/beater/config/data_streams.go index 77121f769d6..9c555b60a6b 100644 --- a/beater/config/data_streams.go +++ b/beater/config/data_streams.go @@ -19,8 +19,6 @@ package config // DataStreamsConfig holds data streams configuration. type DataStreamsConfig struct { - Enabled bool `config:"enabled"` - // WaitForIntegration controls whether APM Server waits for the Fleet // integration package to be installed before indexing events. // @@ -34,7 +32,6 @@ type DataStreamsConfig struct { func defaultDataStreamsConfig() DataStreamsConfig { return DataStreamsConfig{ - Enabled: false, WaitForIntegration: true, } } diff --git a/beater/config/rum.go b/beater/config/rum.go index 571945aecf6..dc21880ee8a 100644 --- a/beater/config/rum.go +++ b/beater/config/rum.go @@ -60,7 +60,7 @@ type SourceMapping struct { esConfigured bool } -func (c *RumConfig) setup(log *logp.Logger, dataStreamsEnabled bool, outputESCfg *common.Config) error { +func (c *RumConfig) setup(log *logp.Logger, outputESCfg *common.Config) error { if !c.Enabled { return nil } diff --git a/beater/config/rum_test.go b/beater/config/rum_test.go index 269bb971739..94e9b806ab6 100644 --- a/beater/config/rum_test.go +++ b/beater/config/rum_test.go @@ -38,7 +38,7 @@ func TestRumSetup(t *testing.T) { "hosts": []interface{}{"cloud:9200"}, }) - err := rum.setup(logp.NewLogger("test"), true, esCfg) + err := rum.setup(logp.NewLogger("test"), esCfg) require.NoError(t, err) assert.Equal(t, elasticsearch.Hosts{"cloud:9200"}, rum.SourceMapping.ESConfig.Hosts) diff --git a/beater/config/sampling.go b/beater/config/sampling.go index 1adcb41ce85..563e9d288e3 100644 --- a/beater/config/sampling.go +++ b/beater/config/sampling.go @@ -103,13 +103,10 @@ func (c *TailSamplingConfig) Validate() error { return nil } -func (c *TailSamplingConfig) setup(log *logp.Logger, dataStreamsEnabled bool, outputESCfg *common.Config) error { +func (c *TailSamplingConfig) setup(log *logp.Logger, outputESCfg *common.Config) error { if !c.Enabled { return nil } - if !dataStreamsEnabled { - return errors.New("tail-sampling requires data streams to be enabled") - } if !c.esConfigured && outputESCfg != nil { log.Info("Falling back to elasticsearch output for tail-sampling") if err := outputESCfg.Unpack(&c.ESConfig); err != nil { diff --git a/beater/config/sampling_test.go b/beater/config/sampling_test.go index 0b22ae10c81..e2de09e66f1 100644 --- a/beater/config/sampling_test.go +++ b/beater/config/sampling_test.go @@ -28,7 +28,6 @@ import ( func TestSamplingPoliciesValidation(t *testing.T) { t.Run("MinimallyValid", func(t *testing.T) { _, err := NewConfig(common.MustNewConfigFrom(map[string]interface{}{ - "data_streams.enabled": true, "sampling.tail.policies": []map[string]interface{}{{ "sample_rate": 0.5, }}, @@ -37,14 +36,12 @@ func TestSamplingPoliciesValidation(t *testing.T) { }) t.Run("NoPolicies", func(t *testing.T) { _, err := NewConfig(common.MustNewConfigFrom(map[string]interface{}{ - "data_streams.enabled": true, "sampling.tail.enabled": true, }), nil) assert.EqualError(t, err, "Error processing configuration: invalid tail sampling config: no policies specified accessing 'sampling.tail'") }) t.Run("NoDefaultPolicies", func(t *testing.T) { _, err := NewConfig(common.MustNewConfigFrom(map[string]interface{}{ - "data_streams.enabled": true, "sampling.tail.policies": []map[string]interface{}{{ "service.name": "foo", "sample_rate": 0.5, @@ -52,13 +49,4 @@ func TestSamplingPoliciesValidation(t *testing.T) { }), nil) assert.EqualError(t, err, "Error processing configuration: invalid tail sampling config: no default (empty criteria) policy specified accessing 'sampling.tail'") }) - t.Run("DataStreamsDisabled", func(t *testing.T) { - _, err := NewConfig(common.MustNewConfigFrom(map[string]interface{}{ - "sampling.tail.enabled": true, - "sampling.tail.policies": []map[string]interface{}{{ - "sample_rate": 0.5, - }}, - }), nil) - assert.EqualError(t, err, "tail-sampling requires data streams to be enabled") - }) } diff --git a/beater/server_test.go b/beater/server_test.go index 2c843fa2814..bf6a7823405 100644 --- a/beater/server_test.go +++ b/beater/server_test.go @@ -465,9 +465,6 @@ func TestServerConfigReload(t *testing.T) { // Set an invalid host to illustrate that the static config // is not used for defining the listening address. "host": "testing.invalid:123", - - // Data streams must be enabled when the server is managed. - "data_streams.enabled": true, }) apmBeat, cfg := newBeat(t, cfg, nil, nil) apmBeat.Manager = &mockManager{enabled: true} @@ -566,8 +563,7 @@ func TestServerOutputConfigReload(t *testing.T) { }() reload.Register = reload.NewRegistry() - cfg := common.MustNewConfigFrom(map[string]interface{}{"data_streams.enabled": true}) - apmBeat, cfg := newBeat(t, cfg, nil, nil) + apmBeat, cfg := newBeat(t, nil, nil, nil) apmBeat.Manager = &mockManager{enabled: true} runServerCalls := make(chan ServerParams, 1) @@ -652,12 +648,18 @@ func TestServerWaitForIntegrationKibana(t *testing.T) { defer srv.Close() cfg := common.MustNewConfigFrom(map[string]interface{}{ - "data_streams.enabled": true, - "wait_ready_interval": "100ms", - "kibana.enabled": true, - "kibana.host": srv.URL, + "wait_ready_interval": "100ms", + "kibana.enabled": true, + "kibana.host": srv.URL, }) - _, err := setupServer(t, cfg, nil, nil) + + // newBeat sets `data_streams.wait_for_integration: false`, + // remove it so we test the default behaviour. + apmBeat, cfg := newBeat(t, cfg, nil, nil) + removed, err := cfg.Remove("data_streams.wait_for_integration", -1) + require.NoError(t, err) + require.True(t, removed) + _, err = setupBeater(t, apmBeat, cfg, nil) require.NoError(t, err) timeout := time.After(10 * time.Second) @@ -708,10 +710,7 @@ func TestServerWaitForIntegrationElasticsearch(t *testing.T) { srv := httptest.NewServer(mux) defer srv.Close() - cfg := common.MustNewConfigFrom(map[string]interface{}{ - "data_streams.enabled": true, - "wait_ready_interval": "100ms", - }) + cfg := common.MustNewConfigFrom(map[string]interface{}{"wait_ready_interval": "100ms"}) var beatConfig beat.BeatConfig err := beatConfig.Output.Unpack(common.MustNewConfigFrom(map[string]interface{}{ "elasticsearch": map[string]interface{}{ @@ -722,7 +721,13 @@ func TestServerWaitForIntegrationElasticsearch(t *testing.T) { })) require.NoError(t, err) - beater, err := setupServer(t, cfg, &beatConfig, nil) + // newBeat sets `data_streams.wait_for_integration: false`, + // remove it so we test the default behaviour. + apmBeat, cfg := newBeat(t, cfg, &beatConfig, nil) + removed, err := cfg.Remove("data_streams.wait_for_integration", -1) + require.NoError(t, err) + require.True(t, removed) + beater, err := setupBeater(t, apmBeat, cfg, &beatConfig) require.NoError(t, err) // Send some events to the server. They should be accepted and enqueued. @@ -799,11 +804,7 @@ func TestServerExperimentalElasticsearchOutput(t *testing.T) { }() reload.Register = reload.NewRegistry() - cfg := common.MustNewConfigFrom(map[string]interface{}{ - "data_streams.enabled": true, - "data_streams.wait_for_integration": false, - }) - apmBeat, cfg := newBeat(t, cfg, nil, nil) + apmBeat, cfg := newBeat(t, nil, nil, nil) apmBeat.Manager = &mockManager{enabled: true} beater, err := newTestBeater(t, apmBeat, cfg, nil) require.NoError(t, err) diff --git a/beater/telemetry.go b/beater/telemetry.go index ae003f032cf..f00b127d6d2 100644 --- a/beater/telemetry.go +++ b/beater/telemetry.go @@ -19,64 +19,27 @@ package beater import ( "github.com/elastic/apm-server/beater/config" - "github.com/elastic/apm-server/idxmgmt" - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" "github.com/elastic/beats/v7/libbeat/monitoring" ) var apmRegistry = monitoring.GetNamespace("state").GetRegistry().NewRegistry("apm-server") type configTelemetry struct { - dataStreamsEnabled *monitoring.Bool - rumEnabled *monitoring.Bool - apiKeysEnabled *monitoring.Bool - kibanaEnabled *monitoring.Bool - setupTemplateEnabled *monitoring.Bool - setupTemplateOverwrite *monitoring.Bool - setupTemplateAppendFields *monitoring.Bool - ilmEnabled *monitoring.Bool - ilmSetupEnabled *monitoring.Bool - ilmSetupOverwrite *monitoring.Bool - ilmSetupRequirePolicy *monitoring.Bool - sslEnabled *monitoring.Bool - tailSamplingEnabled *monitoring.Bool - tailSamplingPolicies *monitoring.Int + rumEnabled *monitoring.Bool + apiKeysEnabled *monitoring.Bool + kibanaEnabled *monitoring.Bool + sslEnabled *monitoring.Bool + tailSamplingEnabled *monitoring.Bool + tailSamplingPolicies *monitoring.Int } var configMonitors = &configTelemetry{ - dataStreamsEnabled: monitoring.NewBool(apmRegistry, "data_streams.enabled"), - rumEnabled: monitoring.NewBool(apmRegistry, "rum.enabled"), - apiKeysEnabled: monitoring.NewBool(apmRegistry, "api_key.enabled"), - kibanaEnabled: monitoring.NewBool(apmRegistry, "kibana.enabled"), - setupTemplateEnabled: monitoring.NewBool(apmRegistry, "setup.template.enabled"), - setupTemplateOverwrite: monitoring.NewBool(apmRegistry, "setup.template.overwrite"), - setupTemplateAppendFields: monitoring.NewBool(apmRegistry, "setup.template.append_fields"), - ilmEnabled: monitoring.NewBool(apmRegistry, "ilm.enabled"), - ilmSetupEnabled: monitoring.NewBool(apmRegistry, "ilm.setup.enabled"), - ilmSetupOverwrite: monitoring.NewBool(apmRegistry, "ilm.setup.overwrite"), - ilmSetupRequirePolicy: monitoring.NewBool(apmRegistry, "ilm.setup.require_policy"), - sslEnabled: monitoring.NewBool(apmRegistry, "ssl.enabled"), - tailSamplingEnabled: monitoring.NewBool(apmRegistry, "sampling.tail.enabled"), - tailSamplingPolicies: monitoring.NewInt(apmRegistry, "sampling.tail.policies"), -} - -// recordRootConfig records static properties of the given root config for telemetry. -// This should be called once at startup, with the root config. -func recordRootConfig(info beat.Info, rootCfg *common.Config) error { - indexManagementCfg, err := idxmgmt.NewIndexManagementConfig(info, rootCfg) - if err != nil { - return err - } - configMonitors.dataStreamsEnabled.Set(indexManagementCfg.DataStreams) - configMonitors.setupTemplateEnabled.Set(indexManagementCfg.Template.Enabled) - configMonitors.setupTemplateOverwrite.Set(indexManagementCfg.Template.Overwrite) - configMonitors.setupTemplateAppendFields.Set(len(indexManagementCfg.Template.AppendFields.GetKeys()) > 0) - configMonitors.ilmSetupEnabled.Set(indexManagementCfg.ILM.Setup.Enabled) - configMonitors.ilmSetupOverwrite.Set(indexManagementCfg.ILM.Setup.Overwrite) - configMonitors.ilmSetupRequirePolicy.Set(indexManagementCfg.ILM.Setup.RequirePolicy) - configMonitors.ilmEnabled.Set(indexManagementCfg.ILM.Enabled) - return nil + rumEnabled: monitoring.NewBool(apmRegistry, "rum.enabled"), + apiKeysEnabled: monitoring.NewBool(apmRegistry, "api_key.enabled"), + kibanaEnabled: monitoring.NewBool(apmRegistry, "kibana.enabled"), + sslEnabled: monitoring.NewBool(apmRegistry, "ssl.enabled"), + tailSamplingEnabled: monitoring.NewBool(apmRegistry, "sampling.tail.enabled"), + tailSamplingPolicies: monitoring.NewInt(apmRegistry, "sampling.tail.policies"), } // recordAPMServerConfig records dynamic APM Server config properties for telemetry. diff --git a/beater/telemetry_test.go b/beater/telemetry_test.go index 9154650bbbb..4b58e1ec2bc 100644 --- a/beater/telemetry_test.go +++ b/beater/telemetry_test.go @@ -21,51 +21,22 @@ import ( "testing" "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" "github.com/elastic/apm-server/beater/config" - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" ) func TestRecordConfigs(t *testing.T) { resetCounters() defer resetCounters() - info := beat.Info{Name: "apm-server", Version: "7.x"} apmCfg := config.DefaultConfig() apmCfg.AgentAuth.APIKey.Enabled = true apmCfg.Kibana.Enabled = true - rootCfg := common.MustNewConfigFrom(map[string]interface{}{ - "apm-server": map[string]interface{}{ - "ilm": map[string]interface{}{ - "setup": map[string]interface{}{ - "enabled": true, - "overwrite": true, - "require_policy": false, - }, - }, - }, - "setup": map[string]interface{}{ - "template": map[string]interface{}{ - "overwrite": true, - }, - }, - }) - require.NoError(t, recordRootConfig(info, rootCfg)) recordAPMServerConfig(apmCfg) - assert.Equal(t, configMonitors.ilmSetupEnabled.Get(), true) assert.Equal(t, configMonitors.rumEnabled.Get(), false) assert.Equal(t, configMonitors.apiKeysEnabled.Get(), true) assert.Equal(t, configMonitors.kibanaEnabled.Get(), true) - assert.Equal(t, configMonitors.setupTemplateEnabled.Get(), true) - assert.Equal(t, configMonitors.setupTemplateOverwrite.Get(), true) - assert.Equal(t, configMonitors.setupTemplateAppendFields.Get(), false) - assert.Equal(t, configMonitors.ilmEnabled.Get(), true) - assert.Equal(t, configMonitors.ilmSetupEnabled.Get(), true) - assert.Equal(t, configMonitors.ilmSetupOverwrite.Get(), true) - assert.Equal(t, configMonitors.ilmSetupRequirePolicy.Get(), false) assert.Equal(t, configMonitors.sslEnabled.Get(), false) } @@ -74,11 +45,4 @@ func resetCounters() { configMonitors.apiKeysEnabled.Set(false) configMonitors.kibanaEnabled.Set(false) configMonitors.sslEnabled.Set(false) - configMonitors.setupTemplateEnabled.Set(false) - configMonitors.setupTemplateOverwrite.Set(false) - configMonitors.setupTemplateAppendFields.Set(false) - configMonitors.ilmSetupEnabled.Set(false) - configMonitors.ilmSetupOverwrite.Set(false) - configMonitors.ilmSetupRequirePolicy.Set(false) - configMonitors.ilmEnabled.Set(false) } diff --git a/beater/test_approved_es_documents/TestPublishIntegrationErrors.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationErrors.approved.json index 3e327d02cd4..b37d52a4371 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationErrors.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationErrors.approved.json @@ -36,6 +36,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm.error", + "data_stream.namespace": "default", + "data_stream.type": "logs", "ecs": { "version": "1.12.0" }, @@ -384,6 +387,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm.error", + "data_stream.namespace": "default", + "data_stream.type": "logs", "ecs": { "version": "1.12.0" }, @@ -503,6 +509,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm.error", + "data_stream.namespace": "default", + "data_stream.type": "logs", "ecs": { "version": "1.12.0" }, @@ -618,6 +627,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm.error", + "data_stream.namespace": "default", + "data_stream.type": "logs", "ecs": { "version": "1.12.0" }, @@ -738,6 +750,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm.error", + "data_stream.namespace": "default", + "data_stream.type": "logs", "ecs": { "version": "1.12.0" }, diff --git a/beater/test_approved_es_documents/TestPublishIntegrationEvents.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationEvents.approved.json index db2550af2f4..f266254cfb9 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationEvents.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationEvents.approved.json @@ -13,6 +13,9 @@ "container": { "id": "8ec7ceb990749e79b37f6dc6cd3628633618d6ce412553a552a0fa6b69419ad4" }, + "data_stream.dataset": "apm.error", + "data_stream.namespace": "default", + "data_stream.type": "logs", "ecs": { "version": "1.12.0" }, @@ -295,6 +298,9 @@ "container": { "id": "8ec7ceb990749e79b37f6dc6cd3628633618d6ce412553a552a0fa6b69419ad4" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -454,6 +460,9 @@ "container": { "id": "8ec7ceb990749e79b37f6dc6cd3628633618d6ce412553a552a0fa6b69419ad4" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -642,6 +651,9 @@ "container": { "id": "8ec7ceb990749e79b37f6dc6cd3628633618d6ce412553a552a0fa6b69419ad4" }, + "data_stream.dataset": "apm.internal", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, diff --git a/beater/test_approved_es_documents/TestPublishIntegrationMetricsets.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationMetricsets.approved.json index c78cfaae8d8..53251a4b4e9 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationMetricsets.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationMetricsets.approved.json @@ -6,6 +6,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm.internal", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -67,6 +70,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm.app.1234_service_12a3", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -114,6 +120,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm.app.1234_service_12a3", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -162,6 +171,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm.app.1234_service_12a3", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -222,6 +234,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm.app.1234_service_12a3", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, diff --git a/beater/test_approved_es_documents/TestPublishIntegrationMinimalEvents.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationMinimalEvents.approved.json index 72ad9d20ac7..3a0b869d3ed 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationMinimalEvents.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationMinimalEvents.approved.json @@ -6,6 +6,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm.error", + "data_stream.namespace": "default", + "data_stream.type": "logs", "ecs": { "version": "1.12.0" }, @@ -44,6 +47,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm.error", + "data_stream.namespace": "default", + "data_stream.type": "logs", "ecs": { "version": "1.12.0" }, @@ -84,6 +90,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm.error", + "data_stream.namespace": "default", + "data_stream.type": "logs", "ecs": { "version": "1.12.0" }, @@ -123,6 +132,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -170,6 +182,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -217,6 +232,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -268,6 +286,9 @@ "name": "elastic-node", "version": "3.14.0" }, + "data_stream.dataset": "apm.app.1234_service_12a3", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, diff --git a/beater/test_approved_es_documents/TestPublishIntegrationProfileCPUProfile.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationProfileCPUProfile.approved.json index 189c1f708ab..42d499f112d 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationProfileCPUProfile.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationProfileCPUProfile.approved.json @@ -2,6 +2,9 @@ "events": [ { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -138,6 +141,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -220,6 +226,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -374,6 +383,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -456,6 +468,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -520,6 +535,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -620,6 +638,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -714,6 +735,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -802,6 +826,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -908,6 +935,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1032,6 +1062,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1090,6 +1123,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1160,6 +1196,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1266,6 +1305,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1402,6 +1444,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1466,6 +1511,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1584,6 +1632,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1690,6 +1741,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1784,6 +1838,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1878,6 +1935,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2002,6 +2062,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2060,6 +2123,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2148,6 +2214,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2212,6 +2281,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2282,6 +2354,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2412,6 +2487,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2494,6 +2572,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2552,6 +2633,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2598,6 +2682,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2680,6 +2767,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2804,6 +2894,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2916,6 +3009,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3028,6 +3124,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3104,6 +3203,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3222,6 +3324,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3286,6 +3391,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3368,6 +3476,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3438,6 +3549,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3562,6 +3676,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3734,6 +3851,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3816,6 +3936,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3916,6 +4039,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4082,6 +4208,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4140,6 +4269,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4270,6 +4402,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4388,6 +4523,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4452,6 +4590,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4540,6 +4681,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4592,6 +4736,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4668,6 +4815,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4726,6 +4876,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4856,6 +5009,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4914,6 +5070,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4960,6 +5119,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5042,6 +5204,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5154,6 +5319,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5248,6 +5416,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5324,6 +5495,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5430,6 +5604,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5536,6 +5713,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5618,6 +5798,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5742,6 +5925,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5830,6 +6016,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5924,6 +6113,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6012,6 +6204,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6088,6 +6283,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6146,6 +6344,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6258,6 +6459,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6394,6 +6598,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6542,6 +6749,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6630,6 +6840,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6688,6 +6901,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6782,6 +6998,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6936,6 +7155,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7072,6 +7294,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7196,6 +7421,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7260,6 +7488,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7330,6 +7561,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7436,6 +7670,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7476,6 +7713,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7528,6 +7768,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7598,6 +7841,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7674,6 +7920,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7750,6 +7999,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7838,6 +8090,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7950,6 +8205,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8020,6 +8278,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8096,6 +8357,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8214,6 +8478,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8284,6 +8551,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8396,6 +8666,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8490,6 +8763,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8584,6 +8860,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8636,6 +8915,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8742,6 +9024,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8818,6 +9103,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8870,6 +9158,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -9006,6 +9297,9 @@ }, { "@timestamp": "2019-11-22T10:30:36.305Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, diff --git a/beater/test_approved_es_documents/TestPublishIntegrationProfileCPUProfileMetadata.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationProfileCPUProfileMetadata.approved.json index b4815244329..a7d4a838619 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationProfileCPUProfileMetadata.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationProfileCPUProfileMetadata.approved.json @@ -6,6 +6,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -149,6 +152,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -238,6 +244,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -399,6 +408,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -488,6 +500,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -559,6 +574,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -666,6 +684,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -767,6 +788,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -862,6 +886,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -975,6 +1002,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1106,6 +1136,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1171,6 +1204,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1248,6 +1284,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1361,6 +1400,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1504,6 +1546,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1575,6 +1620,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1700,6 +1748,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1813,6 +1864,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1914,6 +1968,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2015,6 +2072,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2146,6 +2206,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2211,6 +2274,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2306,6 +2372,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2377,6 +2446,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2454,6 +2526,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2591,6 +2666,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2680,6 +2758,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2745,6 +2826,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2798,6 +2882,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2887,6 +2974,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3018,6 +3108,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3137,6 +3230,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3256,6 +3352,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3339,6 +3438,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3464,6 +3566,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3535,6 +3640,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3624,6 +3732,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3701,6 +3812,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3832,6 +3946,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4011,6 +4128,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4100,6 +4220,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4207,6 +4330,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4380,6 +4506,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4445,6 +4574,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4582,6 +4714,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4707,6 +4842,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4778,6 +4916,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4873,6 +5014,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4932,6 +5076,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5015,6 +5162,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5080,6 +5230,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5217,6 +5370,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5282,6 +5438,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5335,6 +5494,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5424,6 +5586,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5543,6 +5708,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5644,6 +5812,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5727,6 +5898,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5840,6 +6014,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -5953,6 +6130,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6042,6 +6222,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6173,6 +6356,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6268,6 +6454,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6369,6 +6558,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6464,6 +6656,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6547,6 +6742,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6612,6 +6810,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6731,6 +6932,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -6874,6 +7078,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7029,6 +7236,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7124,6 +7334,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7189,6 +7402,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7290,6 +7506,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7451,6 +7670,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7594,6 +7816,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7725,6 +7950,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7796,6 +8024,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7873,6 +8104,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -7986,6 +8220,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8033,6 +8270,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8092,6 +8332,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8169,6 +8412,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8252,6 +8498,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8335,6 +8584,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8430,6 +8682,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8549,6 +8804,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8626,6 +8884,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8709,6 +8970,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8834,6 +9098,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -8911,6 +9178,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -9030,6 +9300,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -9131,6 +9404,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -9232,6 +9508,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -9291,6 +9570,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -9404,6 +9686,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -9487,6 +9772,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -9546,6 +9834,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -9689,6 +9980,9 @@ "name": "go", "version": "1.0.0" }, + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, diff --git a/beater/test_approved_es_documents/TestPublishIntegrationProfileHeapProfile.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationProfileHeapProfile.approved.json index 1a061337d02..5f56754d9b4 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationProfileHeapProfile.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationProfileHeapProfile.approved.json @@ -2,6 +2,9 @@ "events": [ { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -73,6 +76,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -186,6 +192,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -287,6 +296,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -388,6 +400,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -435,6 +450,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -530,6 +548,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -577,6 +598,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -648,6 +672,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -713,6 +740,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -832,6 +862,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -915,6 +948,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1028,6 +1064,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1111,6 +1150,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1182,6 +1224,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1229,6 +1274,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1276,6 +1324,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1353,6 +1404,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1400,6 +1454,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1615,6 +1672,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1668,6 +1728,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1733,6 +1796,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1870,6 +1936,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -1923,6 +1992,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2054,6 +2126,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2095,6 +2170,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2160,6 +2238,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2231,6 +2312,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2386,6 +2470,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2547,6 +2634,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2756,6 +2846,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2875,6 +2968,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -2964,6 +3060,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3101,6 +3200,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3226,6 +3328,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3333,6 +3438,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3530,6 +3638,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3649,6 +3760,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3768,6 +3882,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3851,6 +3968,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -3934,6 +4054,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, @@ -4041,6 +4164,9 @@ }, { "@timestamp": "2019-11-22T10:30:54.440Z", + "data_stream.dataset": "apm.profiling", + "data_stream.namespace": "default", + "data_stream.type": "metrics", "ecs": { "version": "1.12.0" }, diff --git a/beater/test_approved_es_documents/TestPublishIntegrationSpans.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationSpans.approved.json index 290f980ae59..a0abf40aa5e 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationSpans.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationSpans.approved.json @@ -37,6 +37,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -166,6 +169,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -293,6 +299,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -424,6 +433,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -552,6 +564,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "destination": { "address": "0:0::0:1", "ip": "0:0::0:1", @@ -764,6 +779,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "destination": { "address": "0:0::0:1", "ip": "0:0::0:1" @@ -906,6 +924,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, diff --git a/beater/test_approved_es_documents/TestPublishIntegrationTransactions.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationTransactions.approved.json index a1f0ffe0165..30971fe52de 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationTransactions.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationTransactions.approved.json @@ -32,6 +32,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -163,6 +166,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -378,6 +384,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -529,6 +538,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, @@ -687,6 +699,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, diff --git a/beater/test_approved_es_documents/TestPublishIntegrationTransactionsHugeTraces.approved.json b/beater/test_approved_es_documents/TestPublishIntegrationTransactionsHugeTraces.approved.json index 835ce52f385..e0a2bea4824 100644 --- a/beater/test_approved_es_documents/TestPublishIntegrationTransactionsHugeTraces.approved.json +++ b/beater/test_approved_es_documents/TestPublishIntegrationTransactionsHugeTraces.approved.json @@ -35,6 +35,9 @@ "container": { "id": "container-id" }, + "data_stream.dataset": "apm", + "data_stream.namespace": "default", + "data_stream.type": "traces", "ecs": { "version": "1.12.0" }, diff --git a/beater/tracing_test.go b/beater/tracing_test.go index aff89f7ae75..514f31e1799 100644 --- a/beater/tracing_test.go +++ b/beater/tracing_test.go @@ -37,10 +37,8 @@ func TestServerTracingEnabled(t *testing.T) { for _, enabled := range []bool{false, true} { t.Run(fmt.Sprint(enabled), func(t *testing.T) { cfg := common.MustNewConfigFrom(m{ - "host": "localhost:0", - "data_streams.enabled": true, - "data_streams.wait_for_integration": false, - "instrumentation.enabled": enabled, + "host": "localhost:0", + "instrumentation.enabled": enabled, }) events := make(chan beat.Event, 10) beater, err := setupServer(t, cfg, nil, events) diff --git a/changelogs/head.asciidoc b/changelogs/head.asciidoc index 8f68b3510a5..2a1b667671a 100644 --- a/changelogs/head.asciidoc +++ b/changelogs/head.asciidoc @@ -31,6 +31,7 @@ https://github.com/elastic/apm-server/compare/7.15\...master[View commits] - Onboarding documents are no longer indexed {pull}6431[6431] - Removed `apm-server.register.ingest.pipeline` and `output.elasticsearch.pipeline` configuration options {pull}6575[6575] - Removed unused `span.start.us` field, and deprecated `span.http.*` fields {pull}6602[6602] +- Removed `apm-server.data_streams.enabled`, and `setup.*` configuration options {pull}6606[6606] - Removed `logging.ecs` and `logging.json` config {pull}6613[6613] [float] diff --git a/cmd/root.go b/cmd/root.go index 3626b1510fd..eb92cc12283 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -19,7 +19,6 @@ package cmd import ( "errors" - "fmt" "math" "os" "strconv" @@ -36,13 +35,11 @@ import ( "github.com/elastic/beats/v7/libbeat/publisher/processing" "github.com/elastic/apm-server/idxmgmt" - _ "github.com/elastic/apm-server/include" // include assets ) const ( - beatName = "apm-server" - apmIndexPattern = "apm" - cloudEnv = "CLOUD_APM_CAPACITY" + beatName = "apm-server" + cloudEnv = "CLOUD_APM_CAPACITY" ) var libbeatConfigOverrides = func() []cfgfile.ConditionalOverride { @@ -75,14 +72,13 @@ var libbeatConfigOverrides = func() []cfgfile.ConditionalOverride { // the GenRootCmdWithSettings. func DefaultSettings() instance.Settings { return instance.Settings{ - Name: beatName, - IndexPrefix: apmIndexPattern, - Version: defaultBeatVersion, - RunFlags: pflag.NewFlagSet(beatName, pflag.ExitOnError), + Name: beatName, + Version: defaultBeatVersion, + RunFlags: pflag.NewFlagSet(beatName, pflag.ExitOnError), Monitoring: report.Settings{ DefaultUsername: "apm_system", }, - IndexManagement: idxmgmt.MakeDefaultSupporter, + IndexManagement: idxmgmt.NewSupporter, Processing: processingSupport, ConfigOverrides: libbeatConfigOverrides(), } @@ -116,35 +112,12 @@ func NewRootCommand(newBeat beat.Creator, settings instance.Settings) *cmd.Beats func modifyBuiltinCommands(rootCmd *cmd.BeatsRootCmd, settings instance.Settings) { for _, cmd := range rootCmd.ExportCmd.Commands() { switch cmd.Name() { - case "dashboard": - // remove `dashboard` from `export` commands + case "dashboard", "ilm-policy", "index-pattern", "template": + // Remove unsupported "export" subcommands. rootCmd.ExportCmd.RemoveCommand(cmd) - case "template": - // only add defined flags to `export template` command - cmd.ResetFlags() - cmd.Flags().String("es.version", settings.Version, "Elasticsearch version") - cmd.Flags().String("dir", "", "Specify directory for printing template files. By default templates are printed to stdout.") } } - - // only add defined flags to setup command - setup := rootCmd.SetupCmd - setup.Short = "Setup Elasticsearch index management components and pipelines (deprecated)" - setup.Long = `This command does initial setup of the environment: - - * Index management including loading Elasticsearch templates, ILM policies and write aliases. - * Ingest pipelines - -` + idxmgmt.SetupDeprecatedWarning + "\n" - - setup.ResetFlags() - - //lint:ignore SA1019 Setting up template must still be supported until next major version upgrade. - tmplKey := cmd.TemplateKey - setup.Flags().Bool(tmplKey, false, "Setup index template") - setup.Flags().MarkDeprecated(tmplKey, fmt.Sprintf("please use --%s instead", cmd.IndexManagementKey)) - setup.Flags().Bool(cmd.IndexManagementKey, false, "Setup Elasticsearch index management") - setup.Flags().Bool(cmd.PipelineKey, false, "Setup ingest pipelines") + rootCmd.RemoveCommand(rootCmd.SetupCmd) } func cloudValues(m map[string]interface{}) { diff --git a/idxmgmt/common/default.go b/idxmgmt/common/default.go deleted file mode 100644 index 824fc44eb78..00000000000 --- a/idxmgmt/common/default.go +++ /dev/null @@ -1,40 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package common - -const APMPrefix = "apm-%{[observer.version]}" - -var ( - EventTypes = []string{"span", "transaction", "error", "metric", "profile"} - FallbackIndex = "apm-%{[observer.version]}-%{+yyyy.MM.dd}" -) - -func ConditionalSourcemapIndex() map[string]interface{} { - return Condition("sourcemap", APMPrefix+"-sourcemap") -} - -func ConditionalOnboardingIndex() map[string]interface{} { - return Condition("onboarding", APMPrefix+"-onboarding-%{+yyyy.MM.dd}") -} - -func Condition(event string, index string) map[string]interface{} { - return map[string]interface{}{ - "index": index, - "when": map[string]interface{}{"contains": map[string]interface{}{"processor.event": event}}, - } -} diff --git a/idxmgmt/datastreams.go b/idxmgmt/datastreams.go deleted file mode 100644 index 15210ccb21a..00000000000 --- a/idxmgmt/datastreams.go +++ /dev/null @@ -1,71 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package idxmgmt - -import ( - "github.com/pkg/errors" - - "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/common/fmtstr" - "github.com/elastic/beats/v7/libbeat/idxmgmt" - "github.com/elastic/beats/v7/libbeat/outputs" - "github.com/elastic/beats/v7/libbeat/outputs/outil" - - "github.com/elastic/apm-server/datastreams" -) - -type dataStreamsSupporter struct{} - -// BuildSelector returns an outputs.IndexSelector which routes events through -// to data streams based on well-defined data_stream.* fields in events. -func (dataStreamsSupporter) BuildSelector(*common.Config) (outputs.IndexSelector, error) { - fmtstr, err := fmtstr.CompileEvent(datastreams.IndexFormat) - if err != nil { - return nil, err - } - expr, err := outil.FmtSelectorExpr(fmtstr, "", outil.SelectorLowerCase) - if err != nil { - return nil, err - } - return outil.MakeSelector(expr), nil -} - -// Enabled always returns false, indicating that this idxmgmt.Supporter does -// not setting up templates or ILM policies. -func (dataStreamsSupporter) Enabled() bool { - return false -} - -// Manager returns a no-op idxmgmt.Manager. -func (dataStreamsSupporter) Manager(client idxmgmt.ClientHandler, assets idxmgmt.Asseter) idxmgmt.Manager { - return dataStreamsManager{} -} - -type dataStreamsManager struct{} - -// VerifySetup always returns true and an empty string, to avoid logging -// duplicate warnings. -func (dataStreamsManager) VerifySetup(template, ilm idxmgmt.LoadMode) (bool, string) { - // Just return true to avoid logging warnings. We'll error out in Setup. - return true, "" -} - -// Setup will always return an error, in response to manual setup (i.e. `apm-server setup`). -func (dataStreamsManager) Setup(template, ilm idxmgmt.LoadMode) error { - return errors.New("index setup must be performed externally when using data streams, by installing the 'apm' integration package") -} diff --git a/idxmgmt/feature.go b/idxmgmt/feature.go deleted file mode 100644 index 611d81cb3fb..00000000000 --- a/idxmgmt/feature.go +++ /dev/null @@ -1,44 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package idxmgmt - -import ( - libidxmgmt "github.com/elastic/beats/v7/libbeat/idxmgmt" -) - -type feature struct { - enabled, overwrite, load bool -} - -func newFeature(enabled, overwrite, load bool, mode libidxmgmt.LoadMode) feature { - if mode == libidxmgmt.LoadModeUnset { - mode = libidxmgmt.LoadModeDisabled - } - if mode >= libidxmgmt.LoadModeOverwrite { - overwrite = true - } - if mode == libidxmgmt.LoadModeForce { - load = true - } - load = load && mode.Enabled() - return feature{ - enabled: enabled, - overwrite: overwrite, - load: load, - } -} diff --git a/idxmgmt/ilm/config.go b/idxmgmt/ilm/config.go deleted file mode 100644 index 85aace85a07..00000000000 --- a/idxmgmt/ilm/config.go +++ /dev/null @@ -1,264 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package ilm - -import ( - "fmt" - "strings" - "time" - - "github.com/pkg/errors" - - "github.com/elastic/beats/v7/libbeat/beat" - libcommon "github.com/elastic/beats/v7/libbeat/common" - "github.com/elastic/beats/v7/libbeat/common/fmtstr" - - "github.com/elastic/apm-server/idxmgmt/common" -) - -const ( - defaultPolicyName = "apm-rollover-30-days" -) - -//Config holds information about ILM mode and whether or not the server should manage the setup -type Config struct { - Enabled bool `config:"enabled"` - Setup Setup `config:"setup"` -} - -//Setup holds information about how to setup ILM -type Setup struct { - Enabled bool `config:"enabled"` - Overwrite bool `config:"overwrite"` - RequirePolicy bool `config:"require_policy"` - Mappings Mappings `config:"mapping"` - Policies Policies `config:"policies"` -} - -type Mappings map[string]Mapping -type Policies map[string]Policy - -//Mapping binds together an ILM policy's name and body with an event type -type Mapping struct { - EventType string `config:"event_type"` - PolicyName string `config:"policy_name"` - IndexSuffix string `config:"index_suffix"` - Index string `config:"-"` -} - -// Policy contains information about an ILM policy and the name -type Policy struct { - Name string `config:"name"` - Body map[string]interface{} `config:"policy"` -} - -// NewConfig extracts given configuration and merges with default configuration. -func NewConfig(info beat.Info, cfg *libcommon.Config) (Config, error) { - config := Config{ - Enabled: true, - Setup: Setup{Enabled: true, RequirePolicy: true, Mappings: defaultMappings()}, - } - if cfg != nil { - if err := cfg.Unpack(&config); err != nil { - return Config{}, err - } - } - if len(config.Setup.Policies) == 0 { - // https://github.com/elastic/go-ucfg/issues/167 describes a bug in go-ucfg - // that panics when trying to unpack an empty configuration for an attribute - // of type map[string]interface{} into a variable with existing values for the map. - // This requires some workaround in merging configured policies with default policies - // TODO(simitt): when the bug is fixed - // - move the validation part into a `Validate` method - // - remove the extra handling for `defaultPolicies` and add to defaultConfig instead. - config.Setup.Policies = defaultPolicies() - } - // replace variable rollover_alias parts with beat information if available - // otherwise fail as the full alias needs to be known during setup. - for et, m := range config.Setup.Mappings { - idx, err := applyStaticFmtstr(info, m.Index) - if err != nil { - return Config{}, errors.Wrap(err, "variable part of index suffix cannot be resolved") - } - m.Index = strings.ToLower(idx) - config.Setup.Mappings[et] = m - if config.Setup.RequirePolicy { - continue - } - if _, ok := config.Setup.Policies[m.PolicyName]; !ok { - // if require_policy=false and policy does not exist, add it with an empty body - config.Setup.Policies[m.PolicyName] = Policy{Name: m.PolicyName} - } - } - return config, validate(&config) -} - -func (c *Config) SelectorConfig() (*libcommon.Config, error) { - indicesCfg, err := libcommon.NewConfigFrom(c.conditionalIndices()) - if err != nil { - return nil, err - } - var idcsCfg = libcommon.NewConfig() - idcsCfg.SetString("index", -1, common.FallbackIndex) - idcsCfg.SetChild("indices", -1, indicesCfg) - return idcsCfg, nil -} - -func (m *Mappings) Unpack(cfg *libcommon.Config) error { - var mappings []Mapping - if err := cfg.Unpack(&mappings); err != nil { - return err - } - for _, mapping := range mappings { - if existing, ok := (*m)[mapping.EventType]; ok { - if mapping.PolicyName == "" { - mapping.PolicyName = existing.PolicyName - } - mapping.Index = existing.Index - } - if mapping.IndexSuffix != "" { - mapping.Index = fmt.Sprintf("%s-%s", mapping.Index, mapping.IndexSuffix) - } - (*m)[mapping.EventType] = mapping - } - return nil -} - -func (p *Policies) Unpack(cfg *libcommon.Config) error { - // TODO(simitt): remove setting the default policies when - // https://github.com/elastic/go-ucfg/issues/167 is fixed - (*p) = defaultPolicies() - - var policies []Policy - if err := cfg.Unpack(&policies); err != nil { - return err - } - for _, policy := range policies { - body := preparePolicyBody(policy.Body) - policy.Body = map[string]interface{}{"policy": body} - (*p)[policy.Name] = policy - } - return nil -} - -// validate configuration and raise error if unexpected input given -func validate(c *Config) error { - definedMappings := defaultMappings() - for _, m := range c.Setup.Mappings { - if _, ok := definedMappings[m.EventType]; !ok { - return errors.Errorf("event_type '%s' not supported for ILM setup", m.EventType) - } - if m.PolicyName == "" { - return errors.New("empty policy_name not supported for ILM setup") - } - if !c.Setup.RequirePolicy { - // `require_policy=false` indicates that policies are set up outside - // the APM Server, therefore do not throw an error here. - return nil - } - if _, ok := c.Setup.Policies[m.PolicyName]; !ok { - return errors.Errorf(""+ - "policy '%s' not configured for ILM setup, "+ - "set `apm-server.ilm.require_policy: false` to disable verification", - m.PolicyName, - ) - } - } - return nil -} - -//preparePolicyBody ensures maps are in the format elasticsearch expects for policy bodies -func preparePolicyBody(m map[string]interface{}) map[string]interface{} { - for k, v := range m { - if v == nil { - //ensure nil values are replaced with an empty map, - // e.g. `delete: {}` instead of `delete: nil` - m[k] = map[string]interface{}{} - continue - } else if val, ok := v.(map[string]interface{}); ok && val != nil { - m[k] = preparePolicyBody(val) - } - } - return m -} - -func applyStaticFmtstr(info beat.Info, s string) (string, error) { - fmt, err := fmtstr.CompileEvent(s) - if err != nil { - return "", err - } - return fmt.Run(&beat.Event{ - Fields: libcommon.MapStr{ - // beat object was left in for backward compatibility reason for older configs. - "beat": libcommon.MapStr{ - "name": info.Beat, - "version": info.Version, - }, - "observer": libcommon.MapStr{ - "name": info.Beat, - "version": info.Version, - }, - }, - Timestamp: time.Now(), - }) -} - -func defaultMappings() map[string]Mapping { - m := map[string]Mapping{} - for _, et := range common.EventTypes { - m[et] = Mapping{EventType: et, PolicyName: defaultPolicyName, - Index: fmt.Sprintf("%s-%s", common.APMPrefix, et)} - } - return m -} - -func defaultPolicies() map[string]Policy { - return map[string]Policy{ - defaultPolicyName: { - Name: defaultPolicyName, - Body: map[string]interface{}{ - "policy": map[string]interface{}{ - "phases": map[string]interface{}{ - "hot": map[string]interface{}{ - "actions": map[string]interface{}{ - "rollover": map[string]interface{}{ - "max_size": "50gb", - "max_age": "30d", - }, - "set_priority": map[string]interface{}{ - "priority": 100, - }, - }, - }, - }, - }, - }, - }, - } -} - -func (c *Config) conditionalIndices() []map[string]interface{} { - conditions := []map[string]interface{}{ - common.ConditionalOnboardingIndex(), - common.ConditionalSourcemapIndex(), - } - for _, m := range c.Setup.Mappings { - conditions = append(conditions, common.Condition(m.EventType, m.Index)) - } - return conditions -} diff --git a/idxmgmt/ilm/config_test.go b/idxmgmt/ilm/config_test.go deleted file mode 100644 index e25b6761963..00000000000 --- a/idxmgmt/ilm/config_test.go +++ /dev/null @@ -1,214 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package ilm - -import ( - "fmt" - "testing" - "time" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" -) - -var mockBeatInfo = beat.Info{Beat: "mockapm", Version: "9.9.9"} - -func TestConfig_Default(t *testing.T) { - c, err := NewConfig(mockBeatInfo, nil) - require.NoError(t, err) - expectedCfg := Config{ - Enabled: true, - Setup: Setup{ - Enabled: true, - Overwrite: false, - RequirePolicy: true, - Mappings: defaultMappingsResolved(mockBeatInfo), - Policies: defaultPolicies()}} - assert.Equal(t, expectedCfg, c) -} - -func TestConfig_Mode(t *testing.T) { - for name, tc := range map[string]struct { - cfg string - expected bool - }{ - "default": {`{"enabled":"true"}`, true}, - "disabled": {`{"enabled":"false"}`, false}, - } { - t.Run(name, func(t *testing.T) { - c, err := NewConfig(mockBeatInfo, common.MustNewConfigFrom(tc.cfg)) - require.NoError(t, err) - assert.Equal(t, tc.expected, c.Enabled) - }) - } -} - -func TestConfig_SetupEnabled(t *testing.T) { - for name, tc := range map[string]struct { - cfg string - enabled bool - }{ - "enabled": {`{"setup":{"enabled":true}}`, true}, - "disabled": {`{"setup":{"enabled":false}}`, false}, - } { - t.Run(name, func(t *testing.T) { - c, err := NewConfig(mockBeatInfo, common.MustNewConfigFrom(tc.cfg)) - require.NoError(t, err) - assert.Equal(t, tc.enabled, c.Setup.Enabled) - }) - } -} - -func TestConfig_SetupOverwrite(t *testing.T) { - for name, tc := range map[string]struct { - cfg string - overwrite bool - }{ - "overwrite": {`{"setup":{"overwrite":true}}`, true}, - "do not overwrite": {`{"setup":{"overwrite":false}}`, false}, - } { - t.Run(name, func(t *testing.T) { - c, err := NewConfig(mockBeatInfo, common.MustNewConfigFrom(tc.cfg)) - require.NoError(t, err) - assert.Equal(t, tc.overwrite, c.Setup.Overwrite) - }) - } -} - -func TestConfig_RequirePolicy(t *testing.T) { - for name, tc := range map[string]struct { - cfg map[string]interface{} - required bool - }{ - "default": {map[string]interface{}{}, true}, - "not required": {map[string]interface{}{"require_policy": false}, false}, - } { - t.Run(name, func(t *testing.T) { - c, err := NewConfig(mockBeatInfo, common.MustNewConfigFrom(map[string]interface{}{"setup": tc.cfg})) - require.NoError(t, err) - assert.Equal(t, tc.required, c.Setup.RequirePolicy) - }) - } -} - -func TestConfig_Valid(t *testing.T) { - now := time.Now() - for _, tc := range []struct { - name string - cfg string - - expected Config - }{ - {name: "new policy and index suffix", - cfg: `{"setup":{"mapping":[{"event_type":"span","policy_name":"spanPolicy"},{"event_type":"metric","index_suffix":"ProdUCtion"},{"event_type":"error","index_suffix":"%{[observer.name]}-%{+yyyy-MM-dd}"}],"policies":[{"name":"spanPolicy","policy":{"phases":{"foo":{}}}}]}}`, - expected: Config{Enabled: true, - Setup: Setup{Enabled: true, Overwrite: false, RequirePolicy: true, - Mappings: map[string]Mapping{ - "error": {EventType: "error", PolicyName: defaultPolicyName, - Index: fmt.Sprintf("apm-9.9.9-error-mockapm-%d-%02d-%02d", now.Year(), now.Month(), now.Day()), IndexSuffix: "%{[observer.name]}-%{+yyyy-MM-dd}"}, - "span": {EventType: "span", PolicyName: "spanPolicy", - Index: "apm-9.9.9-span"}, - "transaction": {EventType: "transaction", PolicyName: defaultPolicyName, - Index: "apm-9.9.9-transaction"}, - "metric": {EventType: "metric", PolicyName: defaultPolicyName, - Index: "apm-9.9.9-metric-production", IndexSuffix: "ProdUCtion"}, - "profile": {EventType: "profile", PolicyName: defaultPolicyName, - Index: "apm-9.9.9-profile"}, - }, - Policies: map[string]Policy{ - defaultPolicyName: defaultPolicies()[defaultPolicyName], - "spanPolicy": {Name: "spanPolicy", Body: map[string]interface{}{ - "policy": map[string]interface{}{"phases": map[string]interface{}{ - "foo": map[string]interface{}{}}}}}, - }, - }}, - }, - {name: "changed default policy", - cfg: `{"setup":{"policies":[{"name":"apm-rollover-30-days","policy":{"phases":{"warm":{"min_age":"30d"}}}}]}}`, - expected: Config{Enabled: true, - Setup: Setup{Enabled: true, Overwrite: false, RequirePolicy: true, - Mappings: defaultMappingsResolved(mockBeatInfo), - Policies: map[string]Policy{ - defaultPolicyName: {Name: defaultPolicyName, Body: map[string]interface{}{ - "policy": map[string]interface{}{"phases": map[string]interface{}{ - "warm": map[string]interface{}{"min_age": "30d"}}}}}, - }, - }}, - }, - {name: "allow unknown policy", - cfg: `{"setup":{"require_policy":false,"mapping":[{"event_type":"error","policy_name":"errorPolicy"}]}}`, - expected: Config{Enabled: true, - Setup: Setup{Enabled: true, Overwrite: false, RequirePolicy: false, - Mappings: func() map[string]Mapping { - m := defaultMappingsResolved(mockBeatInfo) - m["error"] = Mapping{EventType: "error", PolicyName: "errorPolicy", - Index: "apm-9.9.9-error"} - return m - }(), - Policies: func() map[string]Policy { - p := defaultPolicies() - p["errorPolicy"] = Policy{Name: "errorPolicy"} - return p - }(), - }}, - }, - } { - t.Run(tc.name, func(t *testing.T) { - cfg, err := NewConfig(mockBeatInfo, common.MustNewConfigFrom(tc.cfg)) - require.NoError(t, err) - assert.Equal(t, tc.expected, cfg) - }) - } - -} - -func TestConfig_Invalid(t *testing.T) { - for _, tc := range []struct { - name string - cfg string - errMsg string - }{ - {name: "invalid event_type", - cfg: `{"setup":{"mapping":[{"event_type": "xyz", "policy_name": "rollover30Days"}]}}`, - errMsg: "event_type 'xyz' not supported"}, - {name: "invalid policy", - cfg: `{"setup":{"mapping":[{"event_type":"span","policy_name":"xyz"}]}}`, - errMsg: "policy 'xyz' not configured"}, - {name: "invalid index suffix", - cfg: `{"setup":{"mapping":[{"event_type":"span","index_suffix":"%{[foo.version]}"}]}}`, - errMsg: "index suffix cannot be resolved"}, - } { - t.Run(tc.name, func(t *testing.T) { - _, err := NewConfig(mockBeatInfo, common.MustNewConfigFrom(tc.cfg)) - require.Error(t, err) - assert.Contains(t, err.Error(), tc.errMsg) - }) - } -} - -func defaultMappingsResolved(info beat.Info) map[string]Mapping { - m := defaultMappings() - for k, v := range m { - v.Index = fmt.Sprintf("apm-%s-%s", info.Version, k) - m[k] = v - } - return m -} diff --git a/idxmgmt/ilm/supporter_factory.go b/idxmgmt/ilm/supporter_factory.go deleted file mode 100644 index 6be20d36fd0..00000000000 --- a/idxmgmt/ilm/supporter_factory.go +++ /dev/null @@ -1,51 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package ilm - -import ( - libilm "github.com/elastic/beats/v7/libbeat/idxmgmt/ilm" - "github.com/elastic/beats/v7/libbeat/logp" - - logs "github.com/elastic/apm-server/log" -) - -const pattern = "000001" - -// MakeDefaultSupporter creates the ILM supporter for APM that is passed to libbeat. -func MakeDefaultSupporter(log *logp.Logger, ilmConfig Config) []libilm.Supporter { - if log == nil { - log = logp.NewLogger(logs.Ilm) - } else { - log = log.Named(logs.Ilm) - } - - var supporters []libilm.Supporter - for _, m := range ilmConfig.Setup.Mappings { - policy := ilmConfig.Setup.Policies[m.PolicyName] - supporter := libilm.NewStdSupport( - log, - ilmConfig.Enabled, - libilm.Alias{Name: m.Index, Pattern: pattern}, - libilm.Policy{Name: policy.Name, Body: policy.Body}, - ilmConfig.Setup.Overwrite, - true, // check exists - ) - supporters = append(supporters, supporter) - } - return supporters -} diff --git a/idxmgmt/ilm/supporter_factory_test.go b/idxmgmt/ilm/supporter_factory_test.go deleted file mode 100644 index de7efc1e784..00000000000 --- a/idxmgmt/ilm/supporter_factory_test.go +++ /dev/null @@ -1,55 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package ilm - -import ( - "strings" - "testing" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/elastic/beats/v7/libbeat/beat" - libcommon "github.com/elastic/beats/v7/libbeat/common" - - "github.com/elastic/apm-server/idxmgmt/common" -) - -func TestMakeDefaultSupporter(t *testing.T) { - info := beat.Info{Beat: "mockapm", Version: "9.9.9"} - input := `{"setup":{"require_policy":false,"mapping":[{"event_type":"span","policy_name":"rollover-10d"}]}}` - cfg, err := NewConfig(info, libcommon.MustNewConfigFrom(input)) - require.NoError(t, err) - - s := MakeDefaultSupporter(nil, cfg) - assert.Equal(t, 5, len(s)) - var aliases []string - for _, sup := range s { - aliases = append(aliases, sup.Alias().Name) - expectedPolicyName := defaultPolicyName - if strings.Contains(sup.Alias().Name, "span") { - expectedPolicyName = "rollover-10d" - } - assert.Equal(t, expectedPolicyName, sup.Policy().Name) - } - var defaultAliases []string - for _, et := range common.EventTypes { - defaultAliases = append(defaultAliases, "apm-9.9.9-"+et) - } - assert.ElementsMatch(t, defaultAliases, aliases) -} diff --git a/idxmgmt/ilm/template.go b/idxmgmt/ilm/template.go deleted file mode 100644 index fb7b19bf5de..00000000000 --- a/idxmgmt/ilm/template.go +++ /dev/null @@ -1,44 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package ilm - -import ( - "fmt" - - libtemplate "github.com/elastic/beats/v7/libbeat/template" -) - -//Template returns a template configuration with appropriate ILM settings -func Template(ilmEnabled, overwrite bool, name string, policy string) libtemplate.TemplateConfig { - template := libtemplate.TemplateConfig{ - Enabled: true, - Name: name, - Pattern: fmt.Sprintf("%s*", name), - Overwrite: overwrite, - Order: 2, - } - if ilmEnabled { - template.Settings = libtemplate.TemplateSettings{ - Index: map[string]interface{}{ - "lifecycle.name": policy, - "lifecycle.rollover_alias": name, - }, - } - } - return template -} diff --git a/idxmgmt/ilm/template_test.go b/idxmgmt/ilm/template_test.go deleted file mode 100644 index 6af05f78c97..00000000000 --- a/idxmgmt/ilm/template_test.go +++ /dev/null @@ -1,56 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package ilm - -import ( - "testing" - - "github.com/stretchr/testify/assert" - - libtemplate "github.com/elastic/beats/v7/libbeat/template" -) - -func TestTemplate_ILMEnabled(t *testing.T) { - tmpl := Template(true, true, "mock-apm", "mock-apm-keep") - expected := libtemplate.TemplateConfig{ - Enabled: true, - Name: "mock-apm", - Pattern: "mock-apm*", - Overwrite: true, - Order: 2, - Settings: libtemplate.TemplateSettings{ - Index: map[string]interface{}{ - "lifecycle.name": "mock-apm-keep", - "lifecycle.rollover_alias": "mock-apm", - }, - }, - } - assert.Equal(t, expected, tmpl) -} - -func TestTemplate_ILMDisabled(t *testing.T) { - tmpl := Template(false, false, "mock-apm", "mock-apm-keep") - expected := libtemplate.TemplateConfig{ - Enabled: true, - Name: "mock-apm", - Pattern: "mock-apm*", - Overwrite: false, - Order: 2, - } - assert.Equal(t, expected, tmpl) -} diff --git a/idxmgmt/manager.go b/idxmgmt/manager.go deleted file mode 100644 index 9bac8097eae..00000000000 --- a/idxmgmt/manager.go +++ /dev/null @@ -1,264 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package idxmgmt - -import ( - "fmt" - "strings" - - "github.com/pkg/errors" - - libidxmgmt "github.com/elastic/beats/v7/libbeat/idxmgmt" - libilm "github.com/elastic/beats/v7/libbeat/idxmgmt/ilm" - - "github.com/elastic/apm-server/idxmgmt/common" - "github.com/elastic/apm-server/idxmgmt/ilm" -) - -const ( - // SetupDeprecatedWarning holds the warning message to display to users - // when setting up index management and/or pipelines. - SetupDeprecatedWarning = `WARNING: setting up Elasticsearch directly with apm-server is deprecated, and will be removed in 8.0. -New installations are encouraged to use the Elastic Agent integration. For more details, refer to -https://www.elastic.co/guide/en/apm/server/current/breaking-changes.html#_7_16` - - msgIlmDisabledES = "Automatically disabled ILM as configured Elasticsearch not eligible for auto enabling." - msgIlmDisabledCfg = "Automatically disabled ILM as custom index settings configured." - msgIdxCfgIgnored = "Custom index configuration ignored when ILM is enabled." - msgIlmSetupDisabled = "Manage ILM setup is disabled." - msgIlmSetupOverwriteDisabled = "Overwrite ILM setup is disabled." - msgTemplateSetupDisabled = "Template loading is disabled." -) - -type manager struct { - supporter *supporter - clientHandler libidxmgmt.ClientHandler - assets libidxmgmt.Asseter -} - -// VerifySetup provides an opportunity to print a warning message to the console, -// for users who are running apm-server interactively. -func (m *manager) VerifySetup(loadTemplate, loadILM libidxmgmt.LoadMode) (bool, string) { - warnings := []string{"\n" + SetupDeprecatedWarning + "\n"} - templateFeature := m.templateFeature(loadTemplate) - if _, _, ilmWarn, _, err := m.ilmFeature(loadILM); err != nil { - warnings = append(warnings, err.Error()) - } else { - if !templateFeature.load { - warnings = append(warnings, msgTemplateSetupDisabled) - } - if ilmWarn != "" { - warnings = append(warnings, ilmWarn) - } - } - return false, strings.Join(warnings, " ") -} - -// Setup is called for new Elasticsearch connections to ensure indices and templates are setup. -func (m *manager) Setup(loadTemplate, loadILM libidxmgmt.LoadMode) error { - - log := m.supporter.log - - //setup index management: - //(0) preparation step - //(1) load general apm template - - // if `apm-server.ilm.setup.managed=true` - //(2) load policy per event type - //(3) create template per event respecting lifecycle settings - //(4) load write alias per event type AFTER the template has been created, - // as this step also automatically creates an index, it is important the matching templates are already there - - //(0) prepare template and ilm handlers, check if ILM is supported, fall back to ordinary index handling otherwise - ilmFeature, ilmSupporters, warn, info, err := m.ilmFeature(loadILM) - if err != nil { - return err - } - if info != "" { - log.Info(info) - } - if warn != "" { - log.Warn(warn) - } - m.supporter.ilmEnabled.Store(ilmFeature.enabled) - - //(1) load general apm template - templateFeature := m.templateFeature(loadTemplate) - m.supporter.templateConfig.Enabled = templateFeature.enabled - m.supporter.templateConfig.Overwrite = templateFeature.overwrite - if err := m.loadTemplate(templateFeature, ilmFeature); err != nil { - return err - } - - if !ilmFeature.load { - return nil - } - policiesLoaded := make(map[string]bool) - for _, ilmSupporter := range ilmSupporters { - //(2) load event type policies, respecting ILM settings - if err := m.loadPolicy(ilmFeature, ilmSupporter, policiesLoaded); err != nil { - return err - } - - // (3) load event type specific template respecting index lifecycle information - if err := m.loadEventTemplate(ilmFeature, ilmSupporter); err != nil { - return err - } - - //(4) load ilm write aliases - // ensure write aliases are created AFTER template creation - if err := m.loadAlias(ilmFeature, ilmSupporter); err != nil { - return err - } - } - - log.Info("Finished index management setup.") - return nil -} - -func (m *manager) templateFeature(loadMode libidxmgmt.LoadMode) feature { - return newFeature( - m.supporter.templateConfig.Enabled, - m.supporter.templateConfig.Overwrite, - m.supporter.templateConfig.Enabled, - loadMode, - ) -} - -func (m *manager) ilmFeature(loadMode libidxmgmt.LoadMode) (_ feature, _ []libilm.Supporter, warn, info string, _ error) { - var ilmEnabled bool - ilmSupporters := ilm.MakeDefaultSupporter(m.supporter.log, m.supporter.ilmConfig) - if m.supporter.ilmConfig.Enabled { - checkSupported := true - if m.supporter.outputConfig.Name() != esKey { - // Output is not Elasticsearch: ILM is disabled. - warn += msgIlmDisabledES - checkSupported = false - } else if m.supporter.unmanagedIdxConfig.Customized() { - if m.supporter.ilmConfig.Enabled { - warn += msgIdxCfgIgnored - } else { - checkSupported = false - } - } - if checkSupported && len(ilmSupporters) > 0 { - // Check if ILM is supported by Elasticsearch. - supporter := ilmSupporters[0] - enabled, err := supporter.Manager(m.clientHandler).CheckEnabled() - if err != nil { - return feature{}, nil, "", "", err - } - ilmEnabled = enabled - if !ilmEnabled { - warn += msgIlmDisabledES - } - } - } - - f := newFeature( - ilmEnabled, - m.supporter.ilmConfig.Setup.Overwrite, - m.supporter.ilmConfig.Setup.Enabled, - loadMode, - ) - if !f.load { - warn += msgIlmSetupDisabled - } - if !f.overwrite { - info = msgIlmSetupOverwriteDisabled - } - return f, ilmSupporters, warn, info, nil -} - -func (m *manager) loadTemplate(templateFeature, ilmFeature feature) error { - if !templateFeature.load { - return nil - } - // if not customized, set the APM template name and pattern to the - // default index prefix for managed and unmanaged indices; - // in case the index/rollover_alias names were customized - if m.supporter.templateConfig.Name == "" && m.supporter.templateConfig.Pattern == "" { - m.supporter.templateConfig.Name = common.APMPrefix - m.supporter.log.Infof("Set setup.template.name to '%s'.", m.supporter.templateConfig.Name) - m.supporter.templateConfig.Pattern = m.supporter.templateConfig.Name + "*" - m.supporter.log.Infof("Set setup.template.pattern to '%s'.", m.supporter.templateConfig.Pattern) - } - if err := m.clientHandler.Load( - m.supporter.templateConfig, - m.supporter.info, - m.assets.Fields(m.supporter.info.Beat), - false, // migration - ); err != nil { - return fmt.Errorf("error loading Elasticsearch template: %+v", err) - } - m.supporter.log.Infof("Finished loading index template.") - return nil -} - -func (m *manager) loadEventTemplate(feature feature, ilmSupporter libilm.Supporter) error { - templateCfg := ilm.Template(feature.enabled, feature.overwrite, - ilmSupporter.Alias().Name, - ilmSupporter.Policy().Name) - - if err := m.clientHandler.Load( - templateCfg, - m.supporter.info, - nil, // fields - false, // migration - ); err != nil { - return errors.Wrapf(err, "error loading template %+v", templateCfg.Name) - } - m.supporter.log.Infof("Finished template setup for %s.", templateCfg.Name) - return nil -} - -func (m *manager) loadPolicy(ilmFeature feature, ilmSupporter libilm.Supporter, policiesLoaded map[string]bool) error { - if !ilmFeature.enabled { - return nil - } - policy := ilmSupporter.Policy().Name - if policiesLoaded[policy] { - return nil - } - if ilmSupporter.Policy().Body == nil { - m.supporter.log.Infof("ILM policy %s not loaded.", policy) - return nil - } - if _, err := ilmSupporter.Manager(m.clientHandler).EnsurePolicy(ilmFeature.overwrite); err != nil { - return err - } - m.supporter.log.Infof("ILM policy %s successfully loaded.", policy) - policiesLoaded[policy] = true - return nil -} - -func (m *manager) loadAlias(ilmFeature feature, ilmSupporter libilm.Supporter) error { - if !ilmFeature.enabled { - return nil - } - alias := ilmSupporter.Alias().Name - if err := ilmSupporter.Manager(m.clientHandler).EnsureAlias(); err != nil { - if libilm.ErrReason(err) != libilm.ErrAliasAlreadyExists { - return err - } - m.supporter.log.Infof("Write alias %s exists already.", alias) - return nil - } - m.supporter.log.Infof("Write alias %s successfully generated.", alias) - return nil -} diff --git a/idxmgmt/manager_test.go b/idxmgmt/manager_test.go deleted file mode 100644 index beca6642862..00000000000 --- a/idxmgmt/manager_test.go +++ /dev/null @@ -1,464 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package idxmgmt - -import ( - "fmt" - "strings" - "testing" - - "github.com/pkg/errors" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" - libidxmgmt "github.com/elastic/beats/v7/libbeat/idxmgmt" - libilm "github.com/elastic/beats/v7/libbeat/idxmgmt/ilm" - "github.com/elastic/beats/v7/libbeat/template" -) - -func TestManager_VerifySetup(t *testing.T) { - for name, tc := range map[string]struct { - templateEnabled bool - ilmSetupEnabled bool - ilmSetupOverwrite bool - ilmEnabled string - loadTemplate, loadILM libidxmgmt.LoadMode - version string - esCfg common.MapStr - - warn string - }{ - "SetupTemplateDisabled": { - loadTemplate: libidxmgmt.LoadModeEnabled, - warn: "Template loading is disabled", - }, - "SetupILMDisabled": { - loadILM: libidxmgmt.LoadModeEnabled, - ilmSetupEnabled: false, - warn: "Manage ILM setup is disabled.", - }, - "LoadILMDisabled": { - loadILM: libidxmgmt.LoadModeDisabled, - ilmSetupOverwrite: true, - warn: "Manage ILM setup is disabled.", - }, - "LoadTemplateDisabled": { - templateEnabled: true, loadTemplate: libidxmgmt.LoadModeDisabled, - warn: "Template loading is disabled", - }, - "ILMEnabledButUnsupported": { - version: "6.2.0", - ilmEnabled: "true", loadILM: libidxmgmt.LoadModeEnabled, - }, - "ILMTrueCustomIndex": { - ilmEnabled: "true", loadILM: libidxmgmt.LoadModeEnabled, - esCfg: common.MapStr{"output.elasticsearch.index": "custom"}, - warn: msgIdxCfgIgnored, - }, - "LogstashOutput": { - ilmEnabled: "true", loadILM: libidxmgmt.LoadModeEnabled, - esCfg: common.MapStr{ - "output.elasticsearch.enabled": false, - "output.logstash.enabled": true}, - warn: "Automatically disabled ILM", - }, - "EverythingEnabled": { - templateEnabled: true, loadTemplate: libidxmgmt.LoadModeEnabled, - ilmSetupEnabled: true, ilmSetupOverwrite: true, loadILM: libidxmgmt.LoadModeEnabled, - }, - } { - t.Run(name, func(t *testing.T) { - c := common.MapStr{ - "setup.template.enabled": tc.templateEnabled, - "apm-server.ilm.setup.enabled": tc.ilmSetupEnabled, - "apm-server.ilm.setup.overwrite": tc.ilmSetupOverwrite, - } - if tc.ilmEnabled != "" { - c["apm-server.ilm.enabled"] = tc.ilmEnabled - } - if tc.esCfg != nil { - c.DeepUpdate(tc.esCfg) - } - support := defaultSupporter(t, c) - version := tc.version - if version == "" { - version = "7.0.0" - } - manager := support.Manager(newMockClientHandler(version), nil) - ok, warn := manager.VerifySetup(tc.loadTemplate, tc.loadILM) - require.False(t, ok, warn) - assert.Contains(t, warn, SetupDeprecatedWarning) - assert.Contains(t, warn, tc.warn) - }) - } -} - -func TestManager_SetupTemplate(t *testing.T) { - fields := []byte("apm-server fields") - - type testCase struct { - cfg common.MapStr - loadMode libidxmgmt.LoadMode - - templates int - overwrittenTemplate bool - } - - var testCasesEnabledTemplate = map[string]testCase{ - "Default": { - loadMode: libidxmgmt.LoadModeEnabled, - templates: 1, - }, - "OverwriteTemplate": { - cfg: common.MapStr{"setup.template.overwrite": true}, - loadMode: libidxmgmt.LoadModeEnabled, - templates: 1, overwrittenTemplate: true, - }, - "LoadModeOverwrite": { - loadMode: libidxmgmt.LoadModeOverwrite, - templates: 1, overwrittenTemplate: true, - }, - "LoadModeForce": { - loadMode: libidxmgmt.LoadModeForce, - templates: 1, overwrittenTemplate: true, - }, - "LoadModeUnset": { - templates: 0, - }, - } - var testCasesDisabledTemplate = map[string]testCase{ - "DisabledTemplate": { - cfg: common.MapStr{"setup.template.enabled": false}, - loadMode: libidxmgmt.LoadModeEnabled, - templates: 0, - }, - "OverwriteTemplate": { - cfg: common.MapStr{"setup.template.enabled": false, "setup.template.overwrite": true}, - loadMode: libidxmgmt.LoadModeEnabled, - templates: 0, - }, - "DisabledTemplate LoadModeOverwrite": { - cfg: common.MapStr{"setup.template.enabled": false}, - loadMode: libidxmgmt.LoadModeOverwrite, - templates: 0, - }, - "DisabledTemplate LoadModeForce": { - cfg: common.MapStr{"setup.template.enabled": false}, - loadMode: libidxmgmt.LoadModeForce, - templates: 1, overwrittenTemplate: true, - }, - } - for _, test := range []map[string]testCase{testCasesEnabledTemplate, testCasesDisabledTemplate} { - for name, tc := range test { - t.Run(name, func(t *testing.T) { - clientHandler := newMockClientHandler("8.0.0") - m := defaultSupporter(t, tc.cfg).Manager(clientHandler, libidxmgmt.BeatsAssets(fields)) - indexManager := m.(*manager) - require.NoError(t, indexManager.Setup(tc.loadMode, libidxmgmt.LoadModeDisabled)) - - require.Equal(t, tc.templates, clientHandler.templates, "loaded template") - assert.Equal(t, 0, clientHandler.templatesILMOrder, "order template") - assert.Equal(t, tc.overwrittenTemplate, clientHandler.templateForceLoad, "overwritten template") - }) - } - } -} - -func TestManager_SetupILM(t *testing.T) { - fields := []byte("apm-server fields") - - type testCase struct { - cfg common.MapStr - loadMode libidxmgmt.LoadMode - - err string - templatesILMEnabled, templatesILMDisabled int - policiesLoaded, aliasesLoaded int - version string - } - - mappingRollover1Day := common.MapStr{"event_type": "error", "policy_name": "rollover-1-day"} - policyRollover1Day := common.MapStr{ - "name": "rollover-1-day", - "policy": common.MapStr{ - "phases": common.MapStr{ - "delete": common.MapStr{ - "actions": common.MapStr{ - "delete": common.MapStr{}, - }, - }, - }, - }, - } - - var testCasesSetupEnabled = map[string]testCase{ - "Default": { - loadMode: libidxmgmt.LoadModeEnabled, - templatesILMEnabled: 4, policiesLoaded: 1, aliasesLoaded: 4, - }, - "ILM disabled": { - cfg: common.MapStr{"apm-server.ilm.enabled": false}, - loadMode: libidxmgmt.LoadModeEnabled, - templatesILMDisabled: 4, - }, - "ILM setup enabled no overwrite": { - cfg: common.MapStr{ - "apm-server.ilm.setup.enabled": true, - "apm-server.ilm.setup.overwrite": false, - "apm-server.ilm.setup.mapping": []common.MapStr{mappingRollover1Day}, - "apm-server.ilm.setup.policies": []common.MapStr{policyRollover1Day}, - }, - loadMode: libidxmgmt.LoadModeEnabled, - templatesILMEnabled: 4, policiesLoaded: 1, aliasesLoaded: 4, - }, - "ILM overwrite": { - cfg: common.MapStr{ - "apm-server.ilm.setup.overwrite": true, - "apm-server.ilm.setup.mapping": []common.MapStr{mappingRollover1Day}, - "apm-server.ilm.setup.policies": []common.MapStr{policyRollover1Day}, - }, - loadMode: libidxmgmt.LoadModeEnabled, - templatesILMEnabled: 5, policiesLoaded: 2, aliasesLoaded: 5, - }, - "LoadModeOverwrite": { - loadMode: libidxmgmt.LoadModeOverwrite, - templatesILMEnabled: 5, policiesLoaded: 1, aliasesLoaded: 4, - }, - "LoadModeForce ILM enabled": { - loadMode: libidxmgmt.LoadModeForce, - templatesILMEnabled: 5, policiesLoaded: 1, aliasesLoaded: 4, - }, - "LoadModeForce ILM disabled": { - cfg: common.MapStr{"apm-server.ilm.enabled": false}, - loadMode: libidxmgmt.LoadModeForce, - templatesILMDisabled: 5, - }, - "ILM overwrite LoadModeDisabled": { - cfg: common.MapStr{"apm-server.ilm.setup.overwrite": true}, - loadMode: libidxmgmt.LoadModeDisabled, - templatesILMEnabled: 0, templatesILMDisabled: 0, - }, - "LoadModeUnset": { - templatesILMEnabled: 0, templatesILMDisabled: 0, - }, - } - - var testCasesSetupDisabled = map[string]testCase{ - "SetupDisabled": { - cfg: common.MapStr{"apm-server.ilm.setup.enabled": false, "apm-server.ilm.setup.overwrite": true}, - loadMode: libidxmgmt.LoadModeEnabled, - }, - "SetupDisabled ILM disabled": { - cfg: common.MapStr{"apm-server.ilm.setup.enabled": false, "apm-server.ilm.setup.overwrite": true, "apm-server.ilm.enabled": false}, - loadMode: libidxmgmt.LoadModeEnabled, - }, - "SetupDisabled LoadModeOverwrite": { - cfg: common.MapStr{"apm-server.ilm.setup.enabled": false, "apm-server.ilm.setup.overwrite": true}, - loadMode: libidxmgmt.LoadModeOverwrite, - }, - "SetupDisabled LoadModeForce ILM enabled": { - cfg: common.MapStr{"apm-server.ilm.setup.enabled": false}, - loadMode: libidxmgmt.LoadModeForce, - templatesILMEnabled: 5, policiesLoaded: 1, aliasesLoaded: 4, - }, - "SetupDisabled LoadModeForce ILM disabled": { - cfg: common.MapStr{"apm-server.ilm.setup.enabled": false, "apm-server.ilm.enabled": false}, - loadMode: libidxmgmt.LoadModeForce, - templatesILMDisabled: 5, - }, - "LoadModeDisabled": { - loadMode: libidxmgmt.LoadModeDisabled, - }, - } - - var testCasesILMNotSupportedByES = map[string]testCase{ - "Default ES Unsupported ILM": { - version: "6.2.0", - loadMode: libidxmgmt.LoadModeEnabled, - templatesILMDisabled: 4, - err: "ILM not supported", - }, - "SetupOverwrite Default ES Unsupported ILM": { - cfg: common.MapStr{"apm-server.ilm.setup.overwrite": "true"}, - version: "6.2.0", - loadMode: libidxmgmt.LoadModeEnabled, - templatesILMDisabled: 5, - err: "ILM not supported", - }, - "ILM True ES Unsupported ILM": { - cfg: common.MapStr{"apm-server.ilm.enabled": "true"}, - loadMode: libidxmgmt.LoadModeEnabled, - version: "6.2.0", - templatesILMDisabled: 4, - err: "ILM not supported", - }, - "Default ES Unsupported ILM setup disabled": { - cfg: common.MapStr{"apm-server.ilm.setup.enabled": false}, - loadMode: libidxmgmt.LoadModeEnabled, - version: "6.2.0", - err: "ILM not supported", - }, - "ILM True ES Unsupported ILM setup disabled": { - cfg: common.MapStr{"apm-server.ilm.setup.enabled": false, "apm-server.ilm.enabled": true}, - loadMode: libidxmgmt.LoadModeEnabled, - version: "6.2.0", - err: "ILM not supported", - }, - } - - var testCasesPolicyNotConfigured = map[string]testCase{ - "policyNotConfigured": { - cfg: common.MapStr{ - "apm-server.ilm.setup": map[string]interface{}{ - "require_policy": false, - "mapping": []map[string]string{ - {"event_type": "error", "policy_name": "foo"}, - {"event_type": "transaction", "policy_name": "bar"}}, - }}, - loadMode: libidxmgmt.LoadModeEnabled, - // templates for all event types are loaded - // profile, span, and metrics share the same default policy, one policy is loaded - // 1 alias already exists, 4 new ones are loaded - templatesILMEnabled: 4, policiesLoaded: 1, aliasesLoaded: 4, - }, - } - - for _, test := range []map[string]testCase{ - testCasesSetupEnabled, - testCasesSetupDisabled, - testCasesILMNotSupportedByES, - testCasesPolicyNotConfigured, - } { - for name, tc := range test { - t.Run(name, func(t *testing.T) { - version := tc.version - if version == "" { - version = "8.0.0" - } - clientHandler := newMockClientHandler(version) - m := defaultSupporter(t, tc.cfg).Manager(clientHandler, libidxmgmt.BeatsAssets(fields)) - indexManager := m.(*manager) - err := indexManager.Setup(libidxmgmt.LoadModeDisabled, tc.loadMode) - if tc.err != "" { - require.EqualError(t, err, tc.err) - } else { - require.NoError(t, err) - assert.Len(t, clientHandler.policies, tc.policiesLoaded) - assert.Len(t, clientHandler.aliases, tc.aliasesLoaded) - require.Equal(t, tc.templatesILMEnabled, clientHandler.templatesILMEnabled, "ILM enabled templates") - require.Equal(t, tc.templatesILMDisabled, clientHandler.templates, "ILM disabled templates") - } - }) - } - } -} - -type mockClientHandler struct { - // mockClientHandler loads templates, ilm templates, policies and aliases - // The handler generally treats them as non-existing in Elasticsearch. - // There are some exceptions to this rule to simulate the behavior related to the `overwrite` flag - // Existing instances are: - // * transaction event type specific template - // * transaction ilm alias - // * rollover-1-day policy - - aliases, policies []string - - templates, templatesILMEnabled int - templatesILMOrder int - templateForceLoad bool - - esVersion *common.Version -} - -var existingILMAlias = fmt.Sprintf("apm-%s-transaction", info.Version) -var existingILMPolicy = "rollover-1-day" -var ErrILMNotSupported = errors.New("ILM not supported") -var esMinILMVersion = common.MustNewVersion("6.6.0") - -func newMockClientHandler(esVersion string) *mockClientHandler { - return &mockClientHandler{esVersion: common.MustNewVersion(esVersion)} -} - -func (h *mockClientHandler) Load(config template.TemplateConfig, _ beat.Info, fields []byte, migration bool) error { - if strings.Contains(config.Name, "transaction") && !config.Overwrite { - return nil - } - if config.Settings.Index != nil && config.Settings.Index["lifecycle.name"] != nil { - h.templatesILMEnabled++ - if len(fields) > 0 { - return errors.New("fields should be empty") - } - } else { - h.templates++ - } - if config.Order == 2 { - h.templatesILMOrder++ - } - if config.Order != 1 && config.Order != 2 { - return errors.New("unexpected template order") - } - h.templateForceLoad = config.Overwrite - return nil -} - -func (h *mockClientHandler) CheckILMEnabled(enabled bool) (bool, error) { - if !enabled { - return false, nil - } - avail := !h.esVersion.LessThan(esMinILMVersion) - if avail { - return true, nil - } - return false, ErrILMNotSupported -} - -func (h *mockClientHandler) HasAlias(name string) (bool, error) { - return name == existingILMAlias, nil -} - -func (h *mockClientHandler) CreateAlias(alias libilm.Alias) error { - h.aliases = append(h.aliases, alias.Name) - if alias.Name == existingILMAlias { - return reasonedError{ - error: errors.New("CreateAlias failed"), - reason: libilm.ErrAliasAlreadyExists, - } - } - return nil -} - -func (h *mockClientHandler) HasILMPolicy(name string) (bool, error) { - return name == existingILMPolicy, nil -} - -func (h *mockClientHandler) CreateILMPolicy(policy libilm.Policy) error { - h.policies = append(h.policies, policy.Name) - return nil -} - -type reasonedError struct { - error - reason error -} - -func (e reasonedError) Reason() error { - return e.reason -} diff --git a/idxmgmt/supporter.go b/idxmgmt/supporter.go deleted file mode 100644 index 8d3987e5a51..00000000000 --- a/idxmgmt/supporter.go +++ /dev/null @@ -1,152 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package idxmgmt - -import ( - "fmt" - "strings" - - "go.uber.org/atomic" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" - libidxmgmt "github.com/elastic/beats/v7/libbeat/idxmgmt" - "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/libbeat/outputs" - "github.com/elastic/beats/v7/libbeat/outputs/outil" - "github.com/elastic/beats/v7/libbeat/template" - - "github.com/elastic/apm-server/idxmgmt/ilm" - "github.com/elastic/apm-server/idxmgmt/unmanaged" -) - -// The index management supporter holds information around ES template, ILM strategy and index setup for Elasticsearch. -// The supporter methods are called from within libbeat code during setup time and on startup. -// The supporter takes care of template loading respecting the ILM strategy, loading ILM policies and write aliases. -// The supporter also ensures the default index and indices settings are used, if not overwritten in the config by the user. -// -// Functionality is partly copied from libbeat. - -const esKey = "elasticsearch" - -type supporter struct { - log *logp.Logger - info beat.Info - templateConfig template.TemplateConfig - ilmConfig ilm.Config - outputConfig common.ConfigNamespace - unmanagedIdxConfig unmanaged.Config - ilmEnabled atomic.Bool -} - -type indexSelector outil.Selector - -func newSupporter(log *logp.Logger, info beat.Info, cfg *IndexManagementConfig) (*supporter, error) { - return &supporter{ - log: log, - info: info, - templateConfig: cfg.Template, - ilmConfig: cfg.ILM, - outputConfig: cfg.Output, - unmanagedIdxConfig: cfg.unmanagedIdxCfg, - }, nil -} - -// Enabled indicates whether or not a callback should be registered to take care of setup. -// As long as ILM is enabled, this needs to return true, even if ilm.setup.enabled is set to false. -// The callback will not set up anything for ILM in that case, but signal the index selector that the setup is finished. -func (s *supporter) Enabled() bool { - return s.templateConfig.Enabled || s.ilmConfig.Setup.Enabled || s.ilmConfig.Enabled -} - -// Manager instance takes only care of the setup. -// A clientHandler is passed in, which is required for figuring out the ILM state if set to `auto`. -func (s *supporter) Manager(clientHandler libidxmgmt.ClientHandler, assets libidxmgmt.Asseter) libidxmgmt.Manager { - return &manager{ - supporter: s, - clientHandler: clientHandler, - assets: assets, - } -} - -// BuildSelector returns an index selector instance, -// depending on the supporter's config an ILM instance or an unmanaged index selector instance is returned. -// The ILM instance decides on every Select call whether or not to return ILM indices or regular ones. -func (s *supporter) BuildSelector(_ *common.Config) (outputs.IndexSelector, error) { - unmanagedSelector, err := s.buildSelector(s.unmanagedIdxConfig.SelectorConfig()) - if err != nil { - return nil, err - } - ilmSelector, err := s.buildSelector(s.ilmConfig.SelectorConfig()) - if err != nil { - return nil, err - } - - if !s.ilmConfig.Enabled { - return indexSelector(unmanagedSelector), nil - } - return indexSelector(ilmSelector), nil -} - -func (s *supporter) buildSelector(cfg *common.Config, err error) (outil.Selector, error) { - if err != nil { - return outil.Selector{}, err - } - - buildSettings := outil.Settings{ - Key: "index", - MultiKey: "indices", - EnableSingleOnly: true, - FailEmpty: true, - Case: outil.SelectorLowerCase, - } - return outil.BuildSelectorFromConfig(cfg, buildSettings) -} - -// Select either returns the index from the event's metadata or the regular index. -func (s indexSelector) Select(evt *beat.Event) (string, error) { - if idx := getEventCustomIndex(evt); idx != "" { - return idx, nil - } - return outil.Selector(s).Select(evt) -} - -// this logic is copied and aligned with handling in beats. -func getEventCustomIndex(evt *beat.Event) string { - if len(evt.Meta) == 0 { - return "" - } - - // returns index from alias - if tmp := evt.Meta["alias"]; tmp != nil { - if alias, ok := tmp.(string); ok { - return strings.ToLower(alias) - } - } - - // returns index from meta + day - if tmp := evt.Meta["index"]; tmp != nil { - if idx, ok := tmp.(string); ok { - ts := evt.Timestamp.UTC() - return fmt.Sprintf("%s-%d.%02d.%02d", - strings.ToLower(idx), ts.Year(), ts.Month(), ts.Day()) - } - } - - return "" -} diff --git a/idxmgmt/supporter_factory.go b/idxmgmt/supporter_factory.go index 138f8888cd6..2034eedc252 100644 --- a/idxmgmt/supporter_factory.go +++ b/idxmgmt/supporter_factory.go @@ -22,165 +22,92 @@ import ( "github.com/elastic/beats/v7/libbeat/beat" "github.com/elastic/beats/v7/libbeat/common" + "github.com/elastic/beats/v7/libbeat/common/fmtstr" "github.com/elastic/beats/v7/libbeat/idxmgmt" "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/libbeat/template" + "github.com/elastic/beats/v7/libbeat/outputs" + "github.com/elastic/beats/v7/libbeat/outputs/outil" - "github.com/elastic/apm-server/idxmgmt/ilm" - "github.com/elastic/apm-server/idxmgmt/unmanaged" + "github.com/elastic/apm-server/datastreams" logs "github.com/elastic/apm-server/log" ) -type IndexManagementConfig struct { - DataStreams bool - Template template.TemplateConfig - ILM ilm.Config - Output common.ConfigNamespace - - unmanagedIdxCfg unmanaged.Config - registerIngestPipelineSpecified bool - setupTemplateSpecified bool - ilmSpecified bool -} - -// MakeDefaultSupporter creates a new idxmgmt.Supporter, using the given root config. -// -// The Supporter will operate in one of three modes: data streams, legacy -// managed, and legacy unmanaged. The legacy modes exist purely to run -// apm-server without data streams or Fleet integration. -// -// If (Fleet) management is enabled, then any index, template, and ILM config -// defined will be ignored and warnings logged. Index (data stream) names will -// be well defined, based on the data type, service name, and user-defined -// namespace. -// -// If management is disabled, then the Supporter will operate in one of the -// legacy modes based on configuration. -func MakeDefaultSupporter(log *logp.Logger, info beat.Info, configRoot *common.Config) (idxmgmt.Supporter, error) { - cfg, err := NewIndexManagementConfig(info, configRoot) - if err != nil { - return nil, err - } - log = namedLogger(log) - cfg.logWarnings(log) - if cfg.DataStreams { - return dataStreamsSupporter{}, nil - } - return newSupporter(log, info, cfg) -} - -func namedLogger(log *logp.Logger) *logp.Logger { +// NewSupporter creates a new idxmgmt.Supporter which directs all events +// to data streams. The given root config will be checked for deprecated/removed +// configuration, and if any are present warnings will be logged. +func NewSupporter(log *logp.Logger, info beat.Info, configRoot *common.Config) (idxmgmt.Supporter, error) { if log == nil { - return logp.NewLogger(logs.IndexManagement) + log = logp.NewLogger(logs.IndexManagement) + } else { + log = log.Named(logs.IndexManagement) } - return log.Named(logs.IndexManagement) -} - -// NewIndexManagementConfig extracts and validates index management config from info and configRoot. -func NewIndexManagementConfig(info beat.Info, configRoot *common.Config) (*IndexManagementConfig, error) { - var cfg struct { - DataStreams *common.Config `config:"apm-server.data_streams"` - RegisterIngestPipeline *common.Config `config:"apm-server.register.ingest.pipeline"` - ILM *common.Config `config:"apm-server.ilm"` - Template *common.Config `config:"setup.template"` - Output common.ConfigNamespace `config:"output"` + if configRoot != nil { + logWarnings(log, configRoot) } + return dataStreamsSupporter{}, nil +} - var setupTemplateSpecified bool - if configRoot != nil { - ok, err := configRoot.Has("setup.template", -1) +func logWarnings(log *logp.Logger, cfg *common.Config) { + type deprecatedConfig struct { + name string + info string + } + deprecatedConfigs := []deprecatedConfig{ + {"apm-server.data_streams", "data streams are always enabled"}, + {"apm-server.ilm", "ILM policies are managed by Fleet"}, + {"apm-server.register.ingest.pipeline", "ingest pipelines are managed by Fleet"}, + {"output.elasticsearch.index", "indices cannot be customised, APM Server now produces data streams"}, + {"output.elasticsearch.indices", "indices cannot be customised, APM Server now produces data streams"}, + {"setup.template", "index templates are managed by Fleet"}, + } + format := "`%s` specified, but was removed in 8.0 and will be ignored: %s" + for _, deprecated := range deprecatedConfigs { + ok, err := cfg.Has(deprecated.name, -1) if err != nil { - return nil, err + log.Warn(err) + } else if ok { + log.Warnf(format, deprecated.name, deprecated.info) } - setupTemplateSpecified = ok } +} - configRoot, err := mergeDefaultConfig(configRoot) +type dataStreamsSupporter struct{} + +// BuildSelector returns an outputs.IndexSelector which routes events through +// to data streams based on well-defined data_stream.* fields in events. +func (dataStreamsSupporter) BuildSelector(*common.Config) (outputs.IndexSelector, error) { + fmtstr, err := fmtstr.CompileEvent(datastreams.IndexFormat) if err != nil { - return nil, errors.Wrap(err, "merging config defaults failed") - } - if err := configRoot.Unpack(&cfg); err != nil { return nil, err } - - templateConfig := template.DefaultConfig() - if err := cfg.Template.Unpack(&templateConfig); err != nil { - return nil, errors.Wrap(err, "unpacking template config failed") - } - - ilmConfig, err := ilm.NewConfig(info, cfg.ILM) + expr, err := outil.FmtSelectorExpr(fmtstr, "", outil.SelectorLowerCase) if err != nil { - return nil, errors.Wrap(err, "creating ILM config fails") - } - - var unmanagedIdxCfg unmanaged.Config - if cfg.Output.Name() == esKey { - if err := cfg.Output.Config().Unpack(&unmanagedIdxCfg); err != nil { - return nil, errors.Wrap(err, "failed to unpack output.elasticsearch config") - } - if err := checkTemplateESSettings(templateConfig, &unmanagedIdxCfg); err != nil { - return nil, err - } + return nil, err } + return outil.MakeSelector(expr), nil +} - return &IndexManagementConfig{ - DataStreams: cfg.DataStreams.Enabled(), - Output: cfg.Output, - Template: templateConfig, - ILM: ilmConfig, - - unmanagedIdxCfg: unmanagedIdxCfg, - registerIngestPipelineSpecified: cfg.RegisterIngestPipeline != nil, - setupTemplateSpecified: setupTemplateSpecified, - ilmSpecified: cfg.ILM != nil, - }, nil +// Enabled always returns false, indicating that this idxmgmt.Supporter does +// not setting up templates or ILM policies. +func (dataStreamsSupporter) Enabled() bool { + return false } -func checkTemplateESSettings(tmplCfg template.TemplateConfig, indexCfg *unmanaged.Config) error { - if !tmplCfg.Enabled || indexCfg == nil { - return nil - } - if indexCfg.Index != "" && (tmplCfg.Name == "" || tmplCfg.Pattern == "") { - return errors.New("`setup.template.name` and `setup.template.pattern` have to be set if `output.elasticsearch` index name is modified") - } - return nil +// Manager returns a no-op idxmgmt.Manager. +func (dataStreamsSupporter) Manager(client idxmgmt.ClientHandler, assets idxmgmt.Asseter) idxmgmt.Manager { + return dataStreamsManager{} } -func (cfg *IndexManagementConfig) logWarnings(log *logp.Logger) { - format := "deprecated config `%s` specified. This config will be removed in 8.0." - if cfg.DataStreams { - format = "`%s` specified, but will be ignored as data streams are enabled" - } - if cfg.setupTemplateSpecified { - log.Warnf(format, "setup.template") - } - if cfg.ilmSpecified { - log.Warnf(format, "apm-server.ilm") - } - if cfg.registerIngestPipelineSpecified { - log.Warnf(format, "apm-server.register.ingest.pipeline") - } - if cfg.unmanagedIdxCfg.Customized() { - log.Warnf(format, "output.elasticsearch.{index,indices}") - } +type dataStreamsManager struct{} + +// VerifySetup always returns true and an empty string, to avoid logging +// duplicate warnings. +func (dataStreamsManager) VerifySetup(template, ilm idxmgmt.LoadMode) (bool, string) { + // Just return true to avoid logging warnings. We'll error out in Setup. + return true, "" } -func mergeDefaultConfig(configRoot *common.Config) (*common.Config, error) { - defaultConfig := common.MustNewConfigFrom(` -setup.template.settings: - index: - codec: best_compression - mapping.total_fields.limit: 2000 - number_of_shards: 1 - _source.enabled: true`) - if configRoot == nil { - return defaultConfig, nil - } - // NOTE(axw) it's important that we merge onto the root config, - // due to how config variable resolution works; variables are - // resolved using the root of the left-most config in the merge. - // - // We merge the root config back over the defaults to ensure - // user-defined config takes precedence. - return common.MergeConfigs(configRoot, defaultConfig, configRoot) +// Setup will always return an error, in response to manual setup (i.e. `apm-server setup`). +func (dataStreamsManager) Setup(template, ilm idxmgmt.LoadMode) error { + return errors.New("index setup must be performed externally when using data streams, by installing the 'apm' integration package") } diff --git a/idxmgmt/supporter_factory_test.go b/idxmgmt/supporter_factory_test.go index c5f7ea8f24f..1a5987af077 100644 --- a/idxmgmt/supporter_factory_test.go +++ b/idxmgmt/supporter_factory_test.go @@ -31,72 +31,14 @@ import ( "github.com/elastic/beats/v7/libbeat/common" "github.com/elastic/beats/v7/libbeat/idxmgmt" "github.com/elastic/beats/v7/libbeat/logp" - "github.com/elastic/beats/v7/libbeat/template" "github.com/elastic/apm-server/datastreams" - "github.com/elastic/apm-server/idxmgmt/unmanaged" ) -func TestMakeDefaultSupporter(t *testing.T) { - info := beat.Info{} - - buildSupporter := func(c map[string]interface{}) (*supporter, error) { - cfg, err := common.NewConfigFrom(c) - require.NoError(t, err) - s, err := MakeDefaultSupporter(nil, info, cfg) - if s != nil { - return s.(*supporter), err - } - return nil, err - } - - t.Run("StdSupporter", func(t *testing.T) { - s, err := buildSupporter(map[string]interface{}{ - "apm-server.ilm.enabled": true, - "setup.template.enabled": "true", - "output.elasticsearch.enabled": "true", - }) - require.NoError(t, err) - - assert.True(t, s.Enabled()) - assert.NotNil(t, s.log) - assert.True(t, s.templateConfig.Enabled) - assert.Equal(t, "best_compression", s.templateConfig.Settings.Index["codec"]) - assert.Equal(t, true, s.ilmConfig.Enabled) - assert.True(t, s.ilmConfig.Setup.Enabled) - assert.Equal(t, unmanaged.Config{}, s.unmanagedIdxConfig) - }) - - t.Run("ILMDisabled", func(t *testing.T) { - s, err := buildSupporter(map[string]interface{}{ - "apm-server.ilm.enabled": false, - "setup.template.enabled": "true", - "setup.template.name": "custom", - "setup.template.pattern": "custom", - "output.elasticsearch.index": "custom-index", - "output.elasticsearch.enabled": "true", - }) - require.NoError(t, err) - assert.Equal(t, false, s.ilmConfig.Enabled) - assert.True(t, s.ilmConfig.Setup.Enabled) - }) - - t.Run("SetupTemplateConfigConflicting", func(t *testing.T) { - s, err := buildSupporter(map[string]interface{}{ - "output.elasticsearch.index": "custom-index", - }) - require.Error(t, err) - assert.Contains(t, err.Error(), "`setup.template.name` and `setup.template.pattern` have to be set ") - assert.Nil(t, s) - }) - -} - -func TestMakeDefaultSupporterDataStreams(t *testing.T) { - supporter, err := MakeDefaultSupporter(nil, beat.Info{}, common.MustNewConfigFrom(map[string]interface{}{ - "apm-server.data_streams.enabled": "true", - })) +func TestNewSupporter(t *testing.T) { + supporter, err := NewSupporter(nil, beat.Info{}, common.MustNewConfigFrom(map[string]interface{}{})) require.NoError(t, err) + require.NotNil(t, supporter) // The data streams supporter does not set up templates or ILM. These // are expected to be set up externally, typically by Fleet. @@ -126,7 +68,7 @@ func TestMakeDefaultSupporterDataStreams(t *testing.T) { assert.Equal(t, "traces-apm-production", index) } -func TestMakeDefaultSupporterDataStreamsWarnings(t *testing.T) { +func TestNewSupporterWarnings(t *testing.T) { core, observed := observer.New(zapcore.DebugLevel) logger := logp.NewLogger("", zap.WrapCore(func(in zapcore.Core) zapcore.Core { return zapcore.NewTee(in, core) @@ -134,47 +76,14 @@ func TestMakeDefaultSupporterDataStreamsWarnings(t *testing.T) { attrs := map[string]interface{}{ "apm-server.data_streams.enabled": "true", - "apm-server.ilm.enabled": true, - "apm-server.register.ingest.pipeline.enabled": "true", - "output.elasticsearch.indices": map[string]interface{}{}, - "setup.template.name": "custom", - "setup.template.pattern": "custom", - } - - s, err := MakeDefaultSupporter(logger, beat.Info{}, common.MustNewConfigFrom(attrs)) - assert.NoError(t, err) - assert.NotNil(t, s) - - var warnings []string - for _, record := range observed.All() { - assert.Equal(t, zapcore.WarnLevel, record.Level, record.Message) - warnings = append(warnings, record.Message) - } - assert.Equal(t, []string{ - "`setup.template` specified, but will be ignored as data streams are enabled", - "`apm-server.ilm` specified, but will be ignored as data streams are enabled", - "`apm-server.register.ingest.pipeline` specified, but will be ignored as data streams are enabled", - "`output.elasticsearch.{index,indices}` specified, but will be ignored as data streams are enabled", - }, warnings) -} - -func TestMakeDefaultSupporterStandaloneWarnings(t *testing.T) { - core, observed := observer.New(zapcore.DebugLevel) - logger := logp.NewLogger("", zap.WrapCore(func(in zapcore.Core) zapcore.Core { - return zapcore.NewTee(in, core) - })) - - attrs := map[string]interface{}{ - "apm-server.ilm.enabled": true, + "apm-server.ilm.enabled": "auto", "apm-server.register.ingest.pipeline.enabled": "true", "output.elasticsearch.indices": map[string]interface{}{}, "setup.template.name": "custom", "setup.template.pattern": "custom", } - s, err := MakeDefaultSupporter(logger, beat.Info{}, common.MustNewConfigFrom(attrs)) - assert.NoError(t, err) - assert.NotNil(t, s) + NewSupporter(logger, beat.Info{}, common.MustNewConfigFrom(attrs)) var warnings []string for _, record := range observed.All() { @@ -182,37 +91,10 @@ func TestMakeDefaultSupporterStandaloneWarnings(t *testing.T) { warnings = append(warnings, record.Message) } assert.Equal(t, []string{ - "deprecated config `setup.template` specified. This config will be removed in 8.0.", - "deprecated config `apm-server.ilm` specified. This config will be removed in 8.0.", - "deprecated config `apm-server.register.ingest.pipeline` specified. This config will be removed in 8.0.", - "deprecated config `output.elasticsearch.{index,indices}` specified. This config will be removed in 8.0.", + "`apm-server.data_streams` specified, but was removed in 8.0 and will be ignored: data streams are always enabled", + "`apm-server.ilm` specified, but was removed in 8.0 and will be ignored: ILM policies are managed by Fleet", + "`apm-server.register.ingest.pipeline` specified, but was removed in 8.0 and will be ignored: ingest pipelines are managed by Fleet", + "`output.elasticsearch.indices` specified, but was removed in 8.0 and will be ignored: indices cannot be customised, APM Server now produces data streams", + "`setup.template` specified, but was removed in 8.0 and will be ignored: index templates are managed by Fleet", }, warnings) } - -func TestNewIndexManagementConfig(t *testing.T) { - cfg := common.MustNewConfigFrom(map[string]interface{}{ - "path.config": "/dev/null", - "setup.template.fields": "${path.config}/fields.yml", - }) - indexManagementConfig, err := NewIndexManagementConfig(beat.Info{}, cfg) - assert.NoError(t, err) - require.NotNil(t, indexManagementConfig) - - templateConfig := template.DefaultConfig() - templateConfig.Fields = "/dev/null/fields.yml" - templateConfig.Settings = template.TemplateSettings{ - Index: map[string]interface{}{ - "codec": "best_compression", - "mapping": map[string]interface{}{ - "total_fields": map[string]interface{}{ - "limit": uint64(2000), - }, - }, - "number_of_shards": uint64(1), - }, - Source: map[string]interface{}{ - "enabled": true, - }, - } - assert.Equal(t, templateConfig, indexManagementConfig.Template) -} diff --git a/idxmgmt/supporter_test.go b/idxmgmt/supporter_test.go deleted file mode 100644 index aa5bcb12476..00000000000 --- a/idxmgmt/supporter_test.go +++ /dev/null @@ -1,227 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package idxmgmt - -import ( - "fmt" - "testing" - "time" - - "github.com/stretchr/testify/assert" - - "github.com/stretchr/testify/require" - - "github.com/elastic/beats/v7/libbeat/beat" - "github.com/elastic/beats/v7/libbeat/common" - libidxmgmt "github.com/elastic/beats/v7/libbeat/idxmgmt" -) - -var ( - info = beat.Info{Beat: "testbeat", Version: "7.0.0"} - today = time.Now().UTC() - day = today.Format("2006.01.02") -) - -func defaultSupporter(t *testing.T, m common.MapStr) *supporter { - c := common.MapStr{ - "output.elasticsearch.enabled": true, - "setup.template.name": "custom", - "setup.template.pattern": "custom*", - } - c.DeepUpdate(m) - - cfg, err := common.NewConfigFrom(c) - require.NoError(t, err) - sup, err := MakeDefaultSupporter(nil, info, cfg) - require.NoError(t, err) - return sup.(*supporter) -} - -func TestIndexSupport_Enabled(t *testing.T) { - for name, test := range map[string]struct { - expected bool - cfg common.MapStr - }{ - "template default": { - expected: true, - }, - "template enabled": { - expected: true, - cfg: common.MapStr{"setup.template.enabled": true, "apm-server.ilm.setup.enabled": false}, - }, - "ilm enabled": { - expected: true, - cfg: common.MapStr{"setup.template.enabled": false, "apm-server.ilm.setup.enabled": false}, - }, - "ilm managed": { - expected: true, - cfg: common.MapStr{"setup.template.enabled": false, "apm-server.ilm.setup.enabled": true}, - }, - "nothing enabled": { - expected: false, - cfg: common.MapStr{"setup.template.enabled": false, "apm-server.ilm.setup.enabled": false, "apm-server.ilm.enabled": false}, - }, - } { - t.Run(name, func(t *testing.T) { - assert.Equal(t, test.expected, defaultSupporter(t, test.cfg).Enabled()) - }) - } -} - -func TestIndexSupport_BuildSelector(t *testing.T) { - - type testdata struct { - meta common.MapStr - noIlm string - withIlm string - ilmAuto string - expected string - cfg common.MapStr - fields common.MapStr - } - - cases := map[string]testdata{ - "DefaultIndex": { - noIlm: fmt.Sprintf("apm-7.0.0-%s", day), - withIlm: fmt.Sprintf("apm-7.0.0-%s", day), - fields: common.MapStr{}, - }, - "DefaultOnboarding": { - noIlm: fmt.Sprintf("apm-7.0.0-onboarding-%s", day), - withIlm: fmt.Sprintf("apm-7.0.0-onboarding-%s", day), - fields: common.MapStr{"processor.event": "onboarding"}, - }, - "DefaultError": { - noIlm: fmt.Sprintf("apm-7.0.0-error-%s", day), - withIlm: "apm-7.0.0-error", - fields: common.MapStr{"processor.event": "error"}, - }, - "DefaultSpan": { - noIlm: fmt.Sprintf("apm-7.0.0-span-%s", day), - withIlm: "apm-7.0.0-span", - fields: common.MapStr{"processor.event": "span"}, - }, - "DefaultTransaction": { - noIlm: fmt.Sprintf("apm-7.0.0-transaction-%s", day), - withIlm: "apm-7.0.0-transaction", - fields: common.MapStr{"processor.event": "transaction"}, - }, - "DefaultMetric": { - noIlm: fmt.Sprintf("apm-7.0.0-metric-%s", day), - withIlm: "apm-7.0.0-metric", - fields: common.MapStr{"processor.event": "metric"}, - }, - "DefaultSourcemap": { - noIlm: "apm-7.0.0-sourcemap", - withIlm: "apm-7.0.0-sourcemap", - fields: common.MapStr{"processor.event": "sourcemap"}, - }, - "MetaInformationAlia-lowercased": { - noIlm: "apm-7.0.0-meta", - withIlm: "apm-7.0.0-meta", //meta overwrites ilm - fields: common.MapStr{"processor.event": "span"}, - meta: common.MapStr{"alias": "APM-7.0.0-meta", "index": "test-123"}, - cfg: common.MapStr{"output.elasticsearch.index": "apm-customized"}, - }, - "MetaInformationIndex": { - noIlm: fmt.Sprintf("apm-7.0.0-%s", day), - withIlm: fmt.Sprintf("apm-7.0.0-%s", day), //meta overwrites ilm - fields: common.MapStr{"processor.event": "span"}, - meta: common.MapStr{"index": "APM-7.0.0"}, - cfg: common.MapStr{"output.elasticsearch.index": "apm-customized"}, - }, - "CustomIndex-lowercased": { - noIlm: "apm-customized", - withIlm: "apm-7.0.0-metric", //custom index ignored when ilm enabled - ilmAuto: "apm-customized", //custom respected for ilm auto - fields: common.MapStr{"processor.event": "metric"}, - cfg: common.MapStr{"output.elasticsearch.index": "APM-customized"}, - }, - "DifferentCustomIndices": { - noIlm: fmt.Sprintf("apm-7.0.0-%s", day), - withIlm: "apm-7.0.0-metric", //custom index ignored when ilm enabled - ilmAuto: fmt.Sprintf("apm-7.0.0-%s", day), //custom respected for ilm auto - fields: common.MapStr{"processor.event": "metric"}, - cfg: common.MapStr{ - "output.elasticsearch.indices": []common.MapStr{{ - "index": "apm-custom-%{[observer.version]}-metric", - "when": map[string]interface{}{ - "contains": map[string]interface{}{"processor.event": "error"}}}}, - }, - }, - "CustomIndices": { - noIlm: "apm-custom-7.0.0-metric", - withIlm: "apm-7.0.0-metric", //custom index ignored when ilm enabled - ilmAuto: "apm-custom-7.0.0-metric", //custom respected for ilm auto - fields: common.MapStr{"processor.event": "metric"}, - cfg: common.MapStr{ - "output.elasticsearch.indices": []common.MapStr{{ - "index": "apm-custom-%{[observer.version]}-metric", - "when": map[string]interface{}{ - "contains": map[string]interface{}{"processor.event": "metric"}}}}, - }, - }, - } - - ilmSupportedHandler := newMockClientHandler("7.2.0") - - checkIndexSelector := func(t *testing.T, name string, test testdata, handler libidxmgmt.ClientHandler) { - t.Run(name, func(t *testing.T) { - // create initialized supporter and selector - - supporter := defaultSupporter(t, test.cfg) - err := supporter.Manager(handler, nil).Setup(libidxmgmt.LoadModeDisabled, libidxmgmt.LoadModeDisabled) - require.NoError(t, err) - - s, err := supporter.BuildSelector(nil) - require.NoError(t, err) - - // test selected index - idx, err := s.Select(testEvent(test.fields, test.meta)) - require.NoError(t, err) - assert.Equal(t, test.expected, idx) - }) - } - - for name, test := range cases { - if test.cfg == nil { - test.cfg = common.MapStr{} - } - - //ilm true and supported - test.cfg["apm-server.ilm.enabled"] = true - test.expected = test.withIlm - checkIndexSelector(t, "ILMTrueSupported"+name, test, ilmSupportedHandler) - - //ilm=false - test.cfg["apm-server.ilm.enabled"] = false - test.expected = test.noIlm - checkIndexSelector(t, "ILMFalse"+name, test, ilmSupportedHandler) - } -} - -func testEvent(fields, meta common.MapStr) *beat.Event { - // needs to be set for indices with unmanaged lifecycle (not ILM) - // as the version replacement happens on every event and not on initialization - fields.Put("observer", common.MapStr{"version": "7.0.0"}) - return &beat.Event{ - Fields: fields, - Meta: meta, - Timestamp: today, - } -} diff --git a/idxmgmt/unmanaged/config.go b/idxmgmt/unmanaged/config.go deleted file mode 100644 index d036a0a9e9b..00000000000 --- a/idxmgmt/unmanaged/config.go +++ /dev/null @@ -1,82 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -package unmanaged - -import ( - "fmt" - - libcommon "github.com/elastic/beats/v7/libbeat/common" - - "github.com/elastic/apm-server/idxmgmt/common" -) - -type Config struct { - Index string `config:"index"` - Indices *libcommon.Config `config:"indices"` -} - -func (cfg *Config) Customized() bool { - if cfg == nil { - return false - } - return cfg.Index != "" || cfg.Indices != nil -} - -func (cfg *Config) SelectorConfig() (*libcommon.Config, error) { - var idcsCfg = libcommon.NewConfig() - - // set defaults - if cfg.Index == "" { - // set fallback default index - idcsCfg.SetString("index", -1, common.FallbackIndex) - - // set default indices if not set - if cfg.Indices == nil { - indicesCfg, err := libcommon.NewConfigFrom(conditionalIndices()) - if err != nil { - return nil, err - } - idcsCfg.SetChild("indices", -1, indicesCfg) - } - } - - // use custom config settings where available - if cfg.Index != "" { - if err := idcsCfg.SetString("index", -1, cfg.Index); err != nil { - return nil, err - } - } - if cfg.Indices != nil { - if err := idcsCfg.SetChild("indices", -1, cfg.Indices); err != nil { - return nil, err - } - } - return idcsCfg, nil -} - -func conditionalIndices() []map[string]interface{} { - conditions := []map[string]interface{}{ - common.ConditionalOnboardingIndex(), - common.ConditionalSourcemapIndex(), - } - for _, k := range common.EventTypes { - idxStr := fmt.Sprintf("%s-%s%s", common.APMPrefix, k, "-%{+yyyy.MM.dd}") - conditions = append(conditions, common.Condition(k, idxStr)) - } - return conditions -} diff --git a/include/fields.go b/include/fields.go deleted file mode 100644 index 9b58c40c569..00000000000 --- a/include/fields.go +++ /dev/null @@ -1,36 +0,0 @@ -// Licensed to Elasticsearch B.V. under one or more contributor -// license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright -// ownership. Elasticsearch B.V. licenses this file to you under -// the Apache License, Version 2.0 (the "License"); you may -// not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, -// software distributed under the License is distributed on an -// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -// KIND, either express or implied. See the License for the -// specific language governing permissions and limitations -// under the License. - -// Code generated by beats/dev-tools/cmd/asset/asset.go - DO NOT EDIT. - -package include - -import ( - "github.com/elastic/beats/v7/libbeat/asset" -) - -func init() { - if err := asset.SetFields("apm-server", "build/fields/fields.yml", asset.BeatFieldsPri, AssetBuildFieldsFieldsYml); err != nil { - panic(err) - } -} - -// AssetBuildFieldsFieldsYml returns asset data. -// This is the base64 encoded zlib format compressed contents of build/fields/fields.yml. -func AssetBuildFieldsFieldsYml() string { - return "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" -} diff --git a/magefile.go b/magefile.go index a623b927b9a..c1b9c5670dd 100644 --- a/magefile.go +++ b/magefile.go @@ -21,11 +21,8 @@ package main import ( - "bufio" - "bytes" "context" "fmt" - "io/ioutil" "log" "os" "path/filepath" @@ -36,9 +33,6 @@ import ( "github.com/pkg/errors" "github.com/elastic/beats/v7/dev-tools/mage" - "github.com/elastic/beats/v7/libbeat/asset" - "github.com/elastic/beats/v7/libbeat/generator/fields" - "github.com/elastic/beats/v7/licenses" "github.com/elastic/apm-server/beater/config" ) @@ -189,109 +183,10 @@ func Version() error { // Update updates the generated files. func Update() error { - mg.Deps(Fields, Config) + mg.Deps(Config) return nil } -func Fields() error { - fieldsInclude := "include/fields.go" - xpackFieldsInclude := mage.XPackBeatDir(fieldsInclude) - - ossFieldsModules := []string{"model"} - xpackFieldsModules := []string{mage.XPackBeatDir()} - allFieldsModules := append(ossFieldsModules[:], xpackFieldsModules...) - - // Create include/fields.go and fields.yml from the OSS-only fields, - // and fields.all.yml from all fields. - if err := generateFieldsYAML(mage.FieldsYML, ossFieldsModules...); err != nil { - return err - } - if err := mage.GenerateFieldsGo(mage.FieldsYML, fieldsInclude); err != nil { - return err - } - if err := generateFieldsYAML(mage.FieldsAllYML, allFieldsModules...); err != nil { - return err - } - - // Create x-pack/apm-server/include/fields.go from the X-Pack fields. - // These supplement the OSS fields, they don't replace them. - xpackBeatDir := mage.XPackBeatDir() - xpackBeatDirRel, err := filepath.Rel(mage.OSSBeatDir(), xpackBeatDir) - if err != nil { - return err - } - xpackFieldsYMLFiles, err := fields.CollectModuleFiles(xpackBeatDir) - if err != nil { - return err - } - xpackFieldsData, err := fields.GenerateFieldsYml(xpackFieldsYMLFiles) - if err != nil { - return err - } - assetData, err := asset.CreateAsset( - licenses.Elasticv2, mage.BeatName, - "XPackFields", // asset name - "include", // package name - xpackFieldsData, - "asset.ModuleFieldsPri", - xpackBeatDirRel, - ) - if err != nil { - panic(err) - } - return ioutil.WriteFile(xpackFieldsInclude, assetData, 0644) -} - -func generateFieldsYAML(output string, modules ...string) error { - if err := mage.GenerateFieldsYAMLTo(output, modules...); err != nil { - return err - } - contents, err := ioutil.ReadFile(output) - if err != nil { - return err - } - - // We don't use autodiscover at all, so we can remove those modules from our fields. - // - // TODO(axw) modify libbeat to make the "common" modules configurable. - beatsdir, err := mage.ElasticBeatsDir() - if err != nil { - return err - } - files, err := fields.CollectModuleFiles(filepath.Join(beatsdir, "libbeat", "autodiscover", "providers")) - if err != nil { - return err - } - var buf bytes.Buffer - for _, ymlfile := range files { - file, err := os.Open(ymlfile.Path) - if err != nil { - return err - } - defer file.Close() - - buf.Reset() - prefix := strings.Repeat(" ", ymlfile.Indent) - scanner := bufio.NewScanner(file) - for scanner.Scan() { - buf.WriteString(prefix) - buf.WriteString(scanner.Text()) - buf.WriteRune('\n') - } - if err := scanner.Err(); err != nil { - return err - } - - // Remove the contents from the combined file. - if i := bytes.Index(contents, buf.Bytes()); i == -1 { - return fmt.Errorf("could not find contents of %s in fields.yml", ymlfile.Path) - } else { - contents = append(contents[:i], contents[i+buf.Len():]...) - } - } - return ioutil.WriteFile(output, contents, 0644) -} - // Use RACE_DETECTOR=true to enable the race detector. func GoTestUnit(ctx context.Context) error { return mage.GoTest(ctx, mage.DefaultGoTestUnitArgs()) @@ -331,16 +226,8 @@ func customizePackaging() { switch filespec.Source { case "{{ elastic_beats_dir }}/dev-tools/packaging/templates/common/README.md.tmpl": args.Spec.Files[filename] = mage.PackageFile{Mode: 0644, Template: "packaging/files/README.md.tmpl"} - case "_meta/kibana.generated", "{{.BeatName}}.reference.yml": + case "_meta/kibana.generated", "fields.yml", "{{.BeatName}}.reference.yml": delete(args.Spec.Files, filename) - case "fields.yml": - // Source fields.yml from the build directory. - if args.Spec.License == "Elastic License" || args.Spec.License == "Elastic License 2.0" { - filespec.Source = mage.FieldsAllYML - } else { - filespec.Source = mage.FieldsYML - } - args.Spec.Files[filename] = filespec } } diff --git a/model/error/_meta/fields.yml b/model/error/_meta/fields.yml deleted file mode 100644 index 06492564536..00000000000 --- a/model/error/_meta/fields.yml +++ /dev/null @@ -1,933 +0,0 @@ -- key: apm-error - title: APM Error - description: Error-specific data for APM - fields: - - name: processor.name - type: keyword - description: Processor name. - overwrite: true - - - name: processor.event - type: keyword - description: Processor event. - overwrite: true - - - name: timestamp - type: group - fields: - - name: us - type: long - count: 1 - description: > - Timestamp of the event in microseconds since Unix epoch. - overwrite: true - - - name: message - type: text - description: The original error message. - overwrite: true - - - name: url - type: group - description: > - A complete Url, with scheme, host and path. - dynamic: false - fields: - - - name: scheme - type: keyword - description: > - The protocol of the request, e.g. "https:". - overwrite: true - - - name: full - type: keyword - description: > - The full, possibly agent-assembled URL of the request, e.g https://example.com:443/search?q=elasticsearch#top. - overwrite: true - - - name: domain - type: keyword - description: > - The hostname of the request, e.g. "example.com". - overwrite: true - - - name: port - type: long - description: > - The port of the request, e.g. 443. - overwrite: true - - - name: path - type: keyword - description: > - The path of the request, e.g. "/search". - overwrite: true - - - name: query - type: keyword - description: > - The query string of the request, e.g. "q=elasticsearch". - overwrite: true - - - name: fragment - type: keyword - description: > - A fragment specifying a location in a web page , e.g. "top". - overwrite: true - - - name: http - type: group - dynamic: false - fields: - - - name: version - type: keyword - description: > - The http version of the request leading to this event. - overwrite: true - - - name: request - type: group - fields: - - - name: method - type: keyword - description: > - The http method of the request leading to this event. - overwrite: true - - - name: headers - type: object - enabled: false - description: > - The canonical headers of the monitored HTTP request. - overwrite: true - - - name: referrer - type: keyword - ignore_above: 1024 - description: Referrer for this HTTP request. - overwrite: true - - - name: response - type: group - fields: - - - name: status_code - type: long - description: > - The status code of the HTTP response. - overwrite: true - - - name: finished - type: boolean - description: > - Used by the Node agent to indicate when in the response life cycle an error has occurred. - overwrite: true - - - name: headers - type: object - enabled: false - description: > - The canonical headers of the monitored HTTP response. - overwrite: true - - - name: labels - type: object - object_type_params: - - object_type: keyword - - object_type: boolean - - object_type: scaled_float - scaling_factor: 1000000 - dynamic: true - overwrite: true - description: > - A flat mapping of user-defined labels with string, boolean or number values. - - - name: service - type: group - dynamic: false - description: > - Service fields. - fields: - - name: name - type: keyword - description: > - Immutable name of the service emitting this event. - overwrite: true - - - name: version - type: keyword - description: > - Version of the service emitting this event. - overwrite: true - - - name: environment - type: keyword - description: > - Service environment. - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Unique meaningful name of the service node. - overwrite: true - - - name: language - type: group - fields: - - - name: name - type: keyword - description: > - Name of the programming language used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the programming language used. - overwrite: true - - - name: runtime - type: group - fields: - - - name: name - type: keyword - description: > - Name of the runtime used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the runtime used. - overwrite: true - - - name: framework - type: group - fields: - - - name: name - type: keyword - description: > - Name of the framework used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the framework used. - overwrite: true - - - name: transaction - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The transaction ID. - overwrite: true - - name: sampled - type: boolean - description: > - Transactions that are 'sampled' will include all available information. Transactions that are not sampled will not have spans or context. - overwrite: true - - name: type - type: keyword - description: > - Keyword of specific relevance in the service's domain (eg. 'request', 'backgroundjob', etc) - overwrite: true - - name: name - type: keyword - multi_fields: - - name: text - type: text - description: > - Generic designation of a transaction in the scope of a single service (eg. 'GET /users/:id'). - overwrite: true - - - name: trace - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The ID of the trace to which the event belongs to. - overwrite: true - - - name: parent - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The ID of the parent event. - overwrite: true - - - name: agent - type: group - dynamic: false - fields: - - - name: name - type: keyword - description: > - Name of the agent used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the agent used. - overwrite: true - - - name: ephemeral_id - type: keyword - description: > - The Ephemeral ID identifies a running process. - overwrite: true - - - name: container - type: group - dynamic: false - title: Container - description: > - Container fields are used for meta information about the specific container - that is the source of information. These fields help correlate data based - containers from any runtime. - fields: - - - name: id - type: keyword - description: > - Unique container id. - overwrite: true - - - name: kubernetes - type: group - dynamic: false - title: Kubernetes - description: > - Kubernetes metadata reported by agents - fields: - - - name: namespace - type: keyword - description: > - Kubernetes namespace - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Kubernetes node name - overwrite: true - - - name: pod - type: group - fields: - - - name: name - type: keyword - description: > - Kubernetes pod name - overwrite: true - - - name: uid - type: keyword - description: > - Kubernetes Pod UID - overwrite: true - - - name: network - type: group - dynamic: false - description: > - Optional network fields - fields: - - - name: connection - type: group - description: > - Network connection details - fields: - - - name: type - type: keyword - description: > - Network connection type, eg. "wifi", "cell" - overwrite: true - - - name: subtype - type: keyword - description: > - Detailed network connection sub-type, e.g. "LTE", "CDMA" - overwrite: true - - - name: carrier - type: group - description: > - Network operator - fields: - - - name: name - type: keyword - overwrite: true - description: > - Carrier name, eg. Vodafone, T-Mobile, etc. - - - name: mcc - type: keyword - overwrite: true - description: > - Mobile country code - - - name: mnc - type: keyword - overwrite: true - description: > - Mobile network code - - - name: icc - type: keyword - overwrite: true - description: > - ISO country code, eg. US - - - name: host - type: group - dynamic: false - description: > - Optional host fields. - fields: - - - name: architecture - type: keyword - description: > - The architecture of the host the event was recorded on. - overwrite: true - - - name: hostname - type: keyword - description: > - The hostname of the host the event was recorded on. - overwrite: true - - - name: name - type: keyword - description: > - Name of the host the event was recorded on. - It can contain same information as host.hostname or a name specified by the user. - overwrite: true - - - name: ip - type: ip - description: > - IP of the host that records the event. - overwrite: true - - - name: os - title: Operating System - group: 2 - description: > - The OS fields contain information about the operating system. - type: group - fields: - - name: platform - type: keyword - description: > - The platform of the host the event was recorded on. - overwrite: true - - - name: process - type: group - dynamic: false - description: > - Information pertaining to the running process where the data was collected - fields: - - name: args - level: extended - type: keyword - description: > - Process arguments. - May be filtered to protect sensitive information. - overwrite: true - - - name: pid - type: long - description: > - Numeric process ID of the service process. - overwrite: true - - - name: ppid - type: long - description: > - Numeric ID of the service's parent process. - overwrite: true - - - name: title - type: keyword - description: > - Service process title. - overwrite: true - - - name: observer - type: group - dynamic: false - fields: - - - name: listening - type: keyword - overwrite: true - description: > - Address the server is listening on. - - - name: hostname - type: keyword - overwrite: true - description: > - Hostname of the APM Server. - overwrite: true - - - name: version - type: keyword - overwrite: true - description: > - APM Server version. - - - name: version_major - type: byte - overwrite: true - description: > - Major version number of the observer - - - name: type - type: keyword - overwrite: true - description: > - The type will be set to `apm-server`. - - - name: id - type: keyword - overwrite: true - description: > - Unique identifier of the APM Server. - - - name: ephemeral_id - type: keyword - overwrite: true - description: > - Ephemeral identifier of the APM Server. - - - name: user - type: group - dynamic: false - fields: - - - name: name - type: keyword - description: > - The username of the logged in user. - overwrite: true - - - name: domain - type: keyword - description: > - Domain of the logged in user. - overwrite: true - - - name: id - type: keyword - description: > - Identifier of the logged in user. - overwrite: true - - - name: email - type: keyword - description: > - Email of the logged in user. - overwrite: true - - - name: client - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Client domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the client of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the client. - overwrite: true - - - name: source - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Source domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the source of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the source. - overwrite: true - - - name: destination - title: Destination - group: 2 - description: 'Destination fields describe details about the destination of a packet/event. - - Destination fields are usually populated in conjunction with source fields.' - type: group - fields: - - name: address - level: extended - type: keyword - ignore_above: 1024 - description: 'Some event destination addresses are defined ambiguously. The - event will sometimes list an IP, a domain or a unix socket. You should always - store the raw address in the `.address` field. - Then it should be duplicated to `.ip` or `.domain`, depending on which one - it is.' - overwrite: true - - - name: ip - level: core - type: ip - description: 'IP addess of the destination. - Can be one of multiple IPv4 or IPv6 addresses.' - overwrite: true - - - name: port - level: core - type: long - format: string - description: Port of the destination. - overwrite: true - - - name: user_agent - dynamic: false - title: User agent - description: > - The user_agent fields normally come from a browser request. They often - show up in web service logs coming from the parsed user agent string. - type: group - overwrite: true - fields: - - - name: original - type: keyword - description: > - Unparsed version of the user_agent. - example: "Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1" - overwrite: true - - multi_fields: - - name: text - type: text - description: > - Software agent acting in behalf of a user, eg. a web browser / OS combination. - overwrite: true - - - name: name - type: keyword - overwrite: true - example: Safari - description: > - Name of the user agent. - - - name: version - type: keyword - overwrite: true - description: > - Version of the user agent. - example: 12.0 - - - name: device - type: group - overwrite: true - title: Device - description: > - Information concerning the device. - fields: - - - name: name - type: keyword - overwrite: true - example: iPhone - description: > - Name of the device. - - - name: os - type: group - overwrite: true - title: Operating System - description: > - The OS fields contain information about the operating system. - fields: - - - name: platform - type: keyword - overwrite: true - description: > - Operating system platform (such centos, ubuntu, windows). - example: darwin - - - name: name - type: keyword - overwrite: true - example: "Mac OS X" - description: > - Operating system name, without the version. - - - name: full - type: keyword - overwrite: true - example: "Mac OS Mojave" - description: > - Operating system name, including the version or code name. - - - name: family - type: keyword - overwrite: true - example: "debian" - description: > - OS family (such as redhat, debian, freebsd, windows). - - - name: version - type: keyword - overwrite: true - example: "10.14.1" - description: > - Operating system version as a raw string. - - - name: kernel - type: keyword - overwrite: true - example: "4.4.0-112-generic" - description: > - Operating system kernel version as a raw string. - - - name: cloud - title: Cloud - group: 2 - type: group - description: > - Cloud metadata reported by agents - fields: - - name: account - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account name - overwrite: true - - name: availability_zone - level: extended - type: keyword - ignore_above: 1024 - description: Cloud availability zone name - example: us-east1-a - overwrite: true - - name: instance - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine name - overwrite: true - - name: machine - type: group - dynamic: false - fields: - - name: type - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine type - example: t2.medium - overwrite: true - - name: project - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project name - overwrite: true - - name: provider - level: extended - type: keyword - ignore_above: 1024 - description: Cloud provider name - example: gcp - overwrite: true - - name: region - level: extended - type: keyword - ignore_above: 1024 - description: Cloud region name - example: us-east1 - overwrite: true - - name: service - type: group - dynamic: false - fields: - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: > - Cloud service name, intended to distinguish services running on - different platforms within a provider. - overwrite: true - - - name: error - type: group - description: > - Data captured by an agent representing an event occurring in a monitored service. - dynamic: false - fields: - - - name: id - type: keyword - count: 4 - description: > - The ID of the error. - overwrite: true - - - name: culprit - type: keyword - count: 2 - description: Function call which was the primary perpetrator of this event. - - - name: grouping_key - type: keyword - description: > - Hash of select properties of the logged error for grouping purposes. - - - name: grouping_name - type: keyword - description: > - Name to associate with an error group. - Errors belonging to the same group (same grouping_key) may have differing values for grouping_name. Consumers may choose one arbitrarily. - - - name: exception - type: group - description: > - Information about the originally thrown error. - fields: - - - name: code - type: keyword - description: The error code set when the error happened, e.g. database error code. - - - name: message - type: text - count: 2 - description: The original error message. - - - name: module - type: keyword - description: The module namespace of the original error. - - - name: type - type: keyword - count: 4 - description: The type of the original error, e.g. the Java exception class name. - - - name: handled - type: boolean - count: 2 - description: Indicator whether the error was caught somewhere in the code or not. - - - name: log - type: group - description: > - Additional information added by logging the error. - fields: - - - name: level - type: keyword - description: The severity of the record. - - - name: logger_name - type: keyword - description: The name of the logger instance used. - - - name: message - type: text - count: 2 - description: The additionally logged error message. - - - name: param_message - type: keyword - description: > - A parametrized message. E.g. 'Could not connect to %s'. - The property message is still required, and should be equal to the param_message, but with placeholders replaced. - In some situations the param_message is used to group errors together. diff --git a/model/metricset/_meta/fields.yml b/model/metricset/_meta/fields.yml deleted file mode 100644 index 491ad9abed3..00000000000 --- a/model/metricset/_meta/fields.yml +++ /dev/null @@ -1,1002 +0,0 @@ -- key: apm-application-metrics - title: "APM Application Metrics" - description: APM application metrics. - short_config: true - fields: - - name: histogram - type: histogram - dynamic_template: true - -- key: apm-transaction-metrics - title: "APM Transaction Metrics" - description: > - APM transaction metrics, and transaction metrics-specific properties, - such as transaction.root. - short_config: true - fields: - - name: processor.name - type: keyword - description: Processor name. - overwrite: true - - - name: processor.event - type: keyword - description: Processor event. - overwrite: true - - - name: timeseries.instance - type: keyword - description: Time series instance ID - overwrite: true - - - name: timestamp - type: group - fields: - - name: us - type: long - count: 1 - description: > - Timestamp of the event in microseconds since Unix epoch. - overwrite: true - - - name: labels - type: object - object_type_params: - - object_type: keyword - - object_type: boolean - - object_type: scaled_float - scaling_factor: 1000000 - dynamic: true - overwrite: true - description: > - A flat mapping of user-defined labels with string, boolean or number values. - - - name: metricset - type: group - fields: - - name: name - type: keyword - description: > - Name of the set of metrics. - example: transaction - - - name: service - type: group - dynamic: false - description: > - Service fields. - fields: - - name: name - type: keyword - description: > - Immutable name of the service emitting this event. - overwrite: true - - - name: version - type: keyword - description: > - Version of the service emitting this event. - overwrite: true - - - name: environment - type: keyword - description: > - Service environment. - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Unique meaningful name of the service node. - overwrite: true - - - name: language - type: group - fields: - - - name: name - type: keyword - description: > - Name of the programming language used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the programming language used. - overwrite: true - - - name: runtime - type: group - fields: - - - name: name - type: keyword - description: > - Name of the runtime used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the runtime used. - overwrite: true - - - name: framework - type: group - fields: - - - name: name - type: keyword - description: > - Name of the framework used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the framework used. - overwrite: true - - - name: transaction - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The transaction ID. - overwrite: true - - name: sampled - type: boolean - description: > - Transactions that are 'sampled' will include all available information. Transactions that are not sampled will not have spans or context. - overwrite: true - - name: type - type: keyword - description: > - Keyword of specific relevance in the service's domain (eg. 'request', 'backgroundjob', etc) - overwrite: true - - name: name - type: keyword - multi_fields: - - name: text - type: text - description: > - Generic designation of a transaction in the scope of a single service (eg. 'GET /users/:id'). - overwrite: true - - - name: self_time - type: group - description: > - Portion of the transaction's duration where no direct child was running - fields: - - name: count - type: long - overwrite: true - description: Number of aggregated transactions. - - name: sum - type: group - fields: - - name: us - type: long - unit: micros - overwrite: true - description: > - Aggregated transaction duration, excluding the time periods where a - direct child was running, in microseconds. - - - name: breakdown - type: group - fields: - - name: count - type: long - overwrite: true - description: > - Counter for collected breakdowns for the transaction - - - name: root - type: boolean - description: > - Identifies metrics for root transactions. This can be used for calculating metrics for traces. - - - name: result - type: keyword - description: > - The result of the transaction. HTTP status code for HTTP-related transactions. - - - name: span - type: group - dynamic: false - fields: - - name: type - type: keyword - count: 1 - description: > - Keyword of specific relevance in the service's domain (eg: 'db.postgresql.query', 'template.erb', 'cache', etc). - overwrite: true - - - name: subtype - type: keyword - count: 1 - description: > - A further sub-division of the type (e.g. postgresql, elasticsearch) - overwrite: true - - - name: self_time - type: group - description: > - Portion of the span's duration where no direct child was running - fields: - - name: count - type: long - overwrite: true - description: Number of aggregated spans. - - name: sum - type: group - fields: - - name: us - type: long - unit: micros - overwrite: true - description: > - Aggregated span duration, excluding the time periods where a - direct child was running, in microseconds. - - - name: destination - type: group - dynamic: false - fields: - - - name: service - type: group - dynamic: false - description: Destination service context - fields: - - - name: resource - type: keyword - description: > - Identifier for the destination service resource being operated on (e.g. 'http://elastic.co:80', 'elasticsearch', 'rabbitmq/queue_name') - - - name: agent - type: group - dynamic: false - fields: - - - name: name - type: keyword - description: > - Name of the agent used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the agent used. - overwrite: true - - - name: ephemeral_id - type: keyword - description: > - The Ephemeral ID identifies a running process. - overwrite: true - - - name: container - type: group - dynamic: false - title: Container - description: > - Container fields are used for meta information about the specific container - that is the source of information. These fields help correlate data based - containers from any runtime. - fields: - - - name: id - type: keyword - description: > - Unique container id. - overwrite: true - - - name: kubernetes - type: group - dynamic: false - title: Kubernetes - description: > - Kubernetes metadata reported by agents - fields: - - - name: namespace - type: keyword - description: > - Kubernetes namespace - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Kubernetes node name - overwrite: true - - - name: pod - type: group - fields: - - - name: name - type: keyword - description: > - Kubernetes pod name - overwrite: true - - - name: uid - type: keyword - description: > - Kubernetes Pod UID - overwrite: true - - - name: network - type: group - dynamic: false - description: > - Optional network fields - fields: - - - name: connection - type: group - description: > - Network connection details - fields: - - - name: type - type: keyword - description: > - Network connection type, eg. "wifi", "cell" - overwrite: true - - - name: subtype - type: keyword - description: > - Detailed network connection sub-type, e.g. "LTE", "CDMA" - overwrite: true - - - name: carrier - type: group - description: > - Network operator - fields: - - - name: name - type: keyword - overwrite: true - description: > - Carrier name, eg. Vodafone, T-Mobile, etc. - - - name: mcc - type: keyword - overwrite: true - description: > - Mobile country code - - - name: mnc - type: keyword - overwrite: true - description: > - Mobile network code - - - name: icc - type: keyword - overwrite: true - description: > - ISO country code, eg. US - - - name: host - type: group - dynamic: false - description: > - Optional host fields. - fields: - - - name: architecture - type: keyword - description: > - The architecture of the host the event was recorded on. - overwrite: true - - - name: hostname - type: keyword - description: > - The hostname of the host the event was recorded on. - overwrite: true - - - name: name - type: keyword - description: > - Name of the host the event was recorded on. - It can contain same information as host.hostname or a name specified by the user. - overwrite: true - - - name: ip - type: ip - description: > - IP of the host that records the event. - overwrite: true - - - name: os - title: Operating System - group: 2 - description: > - The OS fields contain information about the operating system. - type: group - fields: - - name: platform - type: keyword - description: > - The platform of the host the event was recorded on. - overwrite: true - - - name: process - type: group - dynamic: false - description: > - Information pertaining to the running process where the data was collected - fields: - - name: args - level: extended - type: keyword - description: > - Process arguments. - May be filtered to protect sensitive information. - overwrite: true - - - name: pid - type: long - description: > - Numeric process ID of the service process. - overwrite: true - - - name: ppid - type: long - description: > - Numeric ID of the service's parent process. - overwrite: true - - - name: title - type: keyword - description: > - Service process title. - overwrite: true - - - name: observer - type: group - dynamic: false - fields: - - - name: listening - type: keyword - overwrite: true - description: > - Address the server is listening on. - - - name: hostname - type: keyword - overwrite: true - description: > - Hostname of the APM Server. - - - name: version - type: keyword - overwrite: true - description: > - APM Server version. - - - name: version_major - type: byte - overwrite: true - description: > - Major version number of the observer - - - name: type - type: keyword - overwrite: true - description: > - The type will be set to `apm-server`. - - - name: id - type: keyword - overwrite: true - description: > - Unique identifier of the APM Server. - - - name: ephemeral_id - type: keyword - overwrite: true - description: > - Ephemeral identifier of the APM Server. - - - name: user - type: group - dynamic: false - fields: - - - name: name - type: keyword - description: > - The username of the logged in user. - overwrite: true - - - name: id - type: keyword - description: > - Identifier of the logged in user. - overwrite: true - - - name: email - type: keyword - description: > - Email of the logged in user. - overwrite: true - - - name: client - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Client domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the client of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the client. - overwrite: true - - - name: source - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Source domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the source of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the source. - overwrite: true - - - name: destination - title: Destination - group: 2 - description: 'Destination fields describe details about the destination of a packet/event. - - Destination fields are usually populated in conjunction with source fields.' - type: group - fields: - - name: address - level: extended - type: keyword - ignore_above: 1024 - description: 'Some event destination addresses are defined ambiguously. The - event will sometimes list an IP, a domain or a unix socket. You should always - store the raw address in the `.address` field. - Then it should be duplicated to `.ip` or `.domain`, depending on which one - it is.' - overwrite: true - - - name: ip - level: core - type: ip - description: 'IP addess of the destination. - Can be one of multiple IPv4 or IPv6 addresses.' - overwrite: true - - - name: port - level: core - type: long - format: string - description: Port of the destination. - overwrite: true - - - name: user_agent - dynamic: false - title: User agent - description: > - The user_agent fields normally come from a browser request. They often - show up in web service logs coming from the parsed user agent string. - type: group - overwrite: true - fields: - - - name: original - type: keyword - description: > - Unparsed version of the user_agent. - example: "Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1" - overwrite: true - - multi_fields: - - name: text - type: text - description: > - Software agent acting in behalf of a user, eg. a web browser / OS combination. - overwrite: true - - - name: name - type: keyword - overwrite: true - example: Safari - description: > - Name of the user agent. - - - name: version - type: keyword - overwrite: true - description: > - Version of the user agent. - example: 12.0 - - - name: device - type: group - overwrite: true - title: Device - description: > - Information concerning the device. - fields: - - - name: name - type: keyword - overwrite: true - example: iPhone - description: > - Name of the device. - - - name: os - type: group - overwrite: true - title: Operating System - description: > - The OS fields contain information about the operating system. - fields: - - - name: platform - type: keyword - overwrite: true - description: > - Operating system platform (such centos, ubuntu, windows). - example: darwin - - - name: name - type: keyword - overwrite: true - example: "Mac OS X" - description: > - Operating system name, without the version. - - - name: full - type: keyword - overwrite: true - example: "Mac OS Mojave" - description: > - Operating system name, including the version or code name. - - - name: family - type: keyword - overwrite: true - example: "debian" - description: > - OS family (such as redhat, debian, freebsd, windows). - - - name: version - type: keyword - overwrite: true - example: "10.14.1" - description: > - Operating system version as a raw string. - - - name: kernel - type: keyword - overwrite: true - example: "4.4.0-112-generic" - description: > - Operating system kernel version as a raw string. - - - name: cloud - title: Cloud - group: 2 - type: group - description: > - Cloud metadata reported by agents - fields: - - name: account - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account name - overwrite: true - - name: availability_zone - level: extended - type: keyword - ignore_above: 1024 - description: Cloud availability zone name - example: us-east1-a - overwrite: true - - name: instance - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine name - overwrite: true - - name: machine - type: group - dynamic: false - fields: - - name: type - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine type - example: t2.medium - overwrite: true - - name: project - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project name - overwrite: true - - name: provider - level: extended - type: keyword - ignore_above: 1024 - description: Cloud provider name - example: gcp - overwrite: true - - name: region - level: extended - type: keyword - ignore_above: 1024 - description: Cloud region name - example: us-east1 - overwrite: true - - name: service - type: group - dynamic: false - fields: - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: > - Cloud service name, intended to distinguish services running on - different platforms within a provider. - overwrite: true - - - name: event - type: group - fields: - - - name: outcome - level: core - type: keyword - ignore_above: 1024 - description: > - `event.outcome` simply denotes whether the event represents a success or a - failure from the perspective of the entity that produced the event. - example: success - overwrite: true - -- key: system - title: "System Metrics" - description: > - System status metrics, like CPU and memory usage, that are collected from the operating system. - short_config: true - fields: - - name: system - type: group - description: > - `system` contains local system metrics. - fields: - - - name: cpu - type: group - description: > - `cpu` contains local CPU stats. - fields: - - name: total.norm.pct - type: scaled_float - format: percent - unit: percent - metric_type: gauge - description: > - The percentage of CPU time spent by the process since the last event. - This value is normalized by the number of CPU cores and it ranges - from 0 to 100%. - - - name: memory - type: group - description: > - `memory` contains local memory stats. - fields: - - name: total - type: long - format: bytes - unit: byte - metric_type: gauge - description: > - Total memory. - - name: actual - type: group - description: > - Actual memory used and free. - fields: - - name: free - type: long - format: bytes - unit: byte - metric_type: gauge - description: > - Actual free memory in bytes. It is calculated based on the OS. On Linux it consists of the free memory - plus caches and buffers. On OSX it is a sum of free memory and the inactive memory. On Windows, it is equal - to `system.memory.free`. - - - name: process - type: group - description: > - `process` contains process metadata, CPU metrics, and memory metrics. - fields: - - name: cpu - type: group - description: > - `cpu` contains local CPU stats. - fields: - - name: total.norm.pct - type: scaled_float - format: percent - unit: percent - metric_type: gauge - description: > - The percentage of CPU time spent by the process since the last event. - This value is normalized by the number of CPU cores and it ranges - from 0 to 100%. - - name: memory - type: group - description: Memory-specific statistics per process. - prefix: "[float]" - fields: - - name: size - type: long - format: bytes - unit: byte - metric_type: gauge - description: > - The total virtual memory the process has. - - name: rss.bytes - type: long - format: bytes - unit: byte - metric_type: gauge - description: > - The Resident Set Size. The amount of memory the process occupied in main memory (RAM). - - name: cgroup - type: group - description: Metrics and limits for the cgroup, collected by APM agents on Linux. - fields: - - name: cpu - type: group - description: CPU-specific cgroup metrics and limits. - fields: - - name: id - type: keyword - description: ID for the current cgroup CPU. - - name: cfs - type: group - description: Completely Fair Scheduler (CFS) cgroup metrics. - fields: - - name: period.us - type: long - description: CFS period in microseconds. - unit: micros - metric_type: gauge - - name: quota.us - type: long - description: CFS quota in microseconds. - unit: micros - metric_type: gauge - - name: stats.periods - type: long - description: Number of periods seen by the CPU. - metric_type: counter - - name: stats.throttled.periods - type: long - description: Number of throttled periods seen by the CPU. - metric_type: counter - - name: stats.throttled.ns - type: long - description: Nanoseconds spent throttled seen by the CPU. - unit: nanos - metric_type: counter - - name: cpuacct - type: group - description: CPU Accounting-specific cgroup metrics and limits. - fields: - - name: id - type: keyword - description: ID for the current cgroup CPU. - - name: total.ns - type: long - description: Total CPU time for the current cgroup CPU in nanoseconds. - unit: nanos - metric_type: counter - - name: memory - type: group - description: Memory-specific cgroup metrics and limits. - fields: - - name: mem.limit.bytes - type: long - format: bytes - unit: byte - metric_type: gauge - description: Memory limit for the current cgroup slice. - - name: mem.usage.bytes - type: long - format: bytes - unit: byte - metric_type: gauge - description: Memory usage by the current cgroup slice. diff --git a/model/profile/_meta/fields.yml b/model/profile/_meta/fields.yml deleted file mode 100644 index ed00ae70e88..00000000000 --- a/model/profile/_meta/fields.yml +++ /dev/null @@ -1,812 +0,0 @@ -- key: apm-profile - title: APM Profile - description: Profiling-specific data for APM. - fields: - - name: processor.name - type: keyword - description: Processor name. - overwrite: true - - - name: processor.event - type: keyword - description: Processor event. - overwrite: true - - - name: timestamp - type: group - fields: - - name: us - type: long - count: 1 - description: > - Timestamp of the event in microseconds since Unix epoch. - overwrite: true - - - name: labels - type: object - object_type_params: - - object_type: keyword - - object_type: boolean - - object_type: scaled_float - scaling_factor: 1000000 - dynamic: true - overwrite: true - description: > - A flat mapping of user-defined labels with string, boolean or number values. - - - name: service - type: group - dynamic: false - description: > - Service fields. - fields: - - name: name - type: keyword - description: > - Immutable name of the service emitting this event. - overwrite: true - - - name: version - type: keyword - description: > - Version of the service emitting this event. - overwrite: true - - - name: environment - type: keyword - description: > - Service environment. - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Unique meaningful name of the service node. - overwrite: true - - - name: language - type: group - fields: - - - name: name - type: keyword - description: > - Name of the programming language used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the programming language used. - overwrite: true - - - name: runtime - type: group - fields: - - - name: name - type: keyword - description: > - Name of the runtime used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the runtime used. - overwrite: true - - - name: framework - type: group - fields: - - - name: name - type: keyword - description: > - Name of the framework used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the framework used. - overwrite: true - - - name: agent - type: group - dynamic: false - fields: - - - name: name - type: keyword - description: > - Name of the agent used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the agent used. - overwrite: true - - - name: ephemeral_id - type: keyword - description: > - The Ephemeral ID identifies a running process. - overwrite: true - - - name: container - type: group - dynamic: false - title: Container - description: > - Container fields are used for meta information about the specific container - that is the source of information. These fields help correlate data based - containers from any runtime. - fields: - - - name: id - type: keyword - description: > - Unique container id. - overwrite: true - - - name: network - type: group - dynamic: false - description: > - Optional network fields - fields: - - - name: connection - type: group - description: > - Network connection details - fields: - - - name: type - type: keyword - description: > - Network connection type, eg. "wifi", "cell" - overwrite: true - - - name: subtype - type: keyword - description: > - Detailed network connection sub-type, e.g. "LTE", "CDMA" - overwrite: true - - - name: carrier - type: group - description: > - Network operator - fields: - - - name: name - type: keyword - overwrite: true - description: > - Carrier name, eg. Vodafone, T-Mobile, etc. - - - name: mcc - type: keyword - overwrite: true - description: > - Mobile country code - - - name: mnc - type: keyword - overwrite: true - description: > - Mobile network code - - - name: icc - type: keyword - overwrite: true - description: > - ISO country code, eg. US - - - name: kubernetes - type: group - dynamic: false - title: Kubernetes - description: > - Kubernetes metadata reported by agents - fields: - - - name: namespace - type: keyword - description: > - Kubernetes namespace - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Kubernetes node name - overwrite: true - - - name: pod - type: group - fields: - - - name: name - type: keyword - description: > - Kubernetes pod name - overwrite: true - - - name: uid - type: keyword - description: > - Kubernetes Pod UID - overwrite: true - - - name: host - type: group - dynamic: false - description: > - Optional host fields. - fields: - - - name: architecture - type: keyword - description: > - The architecture of the host the event was recorded on. - overwrite: true - - - name: hostname - type: keyword - description: > - The hostname of the host the event was recorded on. - overwrite: true - - - name: name - type: keyword - description: > - Name of the host the event was recorded on. - It can contain same information as host.hostname or a name specified by the user. - overwrite: true - - - name: ip - type: ip - description: > - IP of the host that records the event. - overwrite: true - - - name: os - title: Operating System - group: 2 - description: > - The OS fields contain information about the operating system. - type: group - fields: - - name: platform - type: keyword - description: > - The platform of the host the event was recorded on. - overwrite: true - - - name: process - type: group - dynamic: false - description: > - Information pertaining to the running process where the data was collected - fields: - - name: args - level: extended - type: keyword - description: > - Process arguments. - May be filtered to protect sensitive information. - overwrite: true - - - name: pid - type: long - description: > - Numeric process ID of the service process. - overwrite: true - - - name: ppid - type: long - description: > - Numeric ID of the service's parent process. - overwrite: true - - - name: title - type: keyword - description: > - Service process title. - overwrite: true - - - name: observer - type: group - dynamic: false - fields: - - - name: listening - type: keyword - overwrite: true - description: > - Address the server is listening on. - - - name: hostname - type: keyword - overwrite: true - description: > - Hostname of the APM Server. - - - name: version - type: keyword - overwrite: true - description: > - APM Server version. - - - name: version_major - type: byte - overwrite: true - description: > - Major version number of the observer - - - name: type - type: keyword - overwrite: true - description: > - The type will be set to `apm-server`. - - - name: id - type: keyword - overwrite: true - description: > - Unique identifier of the APM Server. - - - name: ephemeral_id - type: keyword - overwrite: true - description: > - Ephemeral identifier of the APM Server. - - - name: user - type: group - dynamic: false - fields: - - - name: name - type: keyword - description: > - The username of the logged in user. - overwrite: true - - - name: id - type: keyword - description: > - Identifier of the logged in user. - overwrite: true - - - name: email - type: keyword - description: > - Email of the logged in user. - overwrite: true - - - name: client - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Client domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the client of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the client. - overwrite: true - - - name: source - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Source domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the source of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the source. - overwrite: true - - - name: destination - title: Destination - group: 2 - description: 'Destination fields describe details about the destination of a packet/event. - - Destination fields are usually populated in conjunction with source fields.' - type: group - fields: - - name: address - level: extended - type: keyword - ignore_above: 1024 - description: 'Some event destination addresses are defined ambiguously. The - event will sometimes list an IP, a domain or a unix socket. You should always - store the raw address in the `.address` field. - Then it should be duplicated to `.ip` or `.domain`, depending on which one - it is.' - overwrite: true - - - name: ip - level: core - type: ip - description: 'IP addess of the destination. - Can be one of multiple IPv4 or IPv6 addresses.' - overwrite: true - - - name: port - level: core - type: long - format: string - description: Port of the destination. - overwrite: true - - - name: user_agent - dynamic: false - title: User agent - description: > - The user_agent fields normally come from a browser request. They often - show up in web service logs coming from the parsed user agent string. - type: group - overwrite: true - fields: - - - name: original - type: keyword - description: > - Unparsed version of the user_agent. - example: "Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1" - overwrite: true - - multi_fields: - - name: text - type: text - description: > - Software agent acting in behalf of a user, eg. a web browser / OS combination. - overwrite: true - - - name: name - type: keyword - overwrite: true - example: Safari - description: > - Name of the user agent. - - - name: version - type: keyword - overwrite: true - description: > - Version of the user agent. - example: 12.0 - - - name: device - type: group - overwrite: true - title: Device - description: > - Information concerning the device. - fields: - - - name: name - type: keyword - overwrite: true - example: iPhone - description: > - Name of the device. - - - name: os - type: group - overwrite: true - title: Operating System - description: > - The OS fields contain information about the operating system. - fields: - - - name: platform - type: keyword - overwrite: true - description: > - Operating system platform (such centos, ubuntu, windows). - example: darwin - - - name: name - type: keyword - overwrite: true - example: "Mac OS X" - description: > - Operating system name, without the version. - - - name: full - type: keyword - overwrite: true - example: "Mac OS Mojave" - description: > - Operating system name, including the version or code name. - - - name: family - type: keyword - overwrite: true - example: "debian" - description: > - OS family (such as redhat, debian, freebsd, windows). - - - name: version - type: keyword - overwrite: true - example: "10.14.1" - description: > - Operating system version as a raw string. - - - name: kernel - type: keyword - overwrite: true - example: "4.4.0-112-generic" - description: > - Operating system kernel version as a raw string. - - - name: cloud - title: Cloud - group: 2 - type: group - description: > - Cloud metadata reported by agents - fields: - - name: account - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account name - overwrite: true - - name: availability_zone - level: extended - type: keyword - ignore_above: 1024 - description: Cloud availability zone name - example: us-east1-a - overwrite: true - - name: instance - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine name - overwrite: true - - name: machine - type: group - dynamic: false - fields: - - name: type - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine type - example: t2.medium - overwrite: true - - name: project - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project name - overwrite: true - - name: provider - level: extended - type: keyword - ignore_above: 1024 - description: Cloud provider name - example: gcp - overwrite: true - - name: region - level: extended - type: keyword - ignore_above: 1024 - description: Cloud region name - example: us-east1 - overwrite: true - - name: service - type: group - dynamic: false - fields: - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: > - Cloud service name, intended to distinguish services running on - different platforms within a provider. - overwrite: true - - - name: profile - type: group - dynamic: false - fields: - - name: id - type: keyword - count: 1 - description: > - Unique ID for the profile. - All samples within a profile will have the same profile ID. - - - name: duration - type: long - unit: nanos - count: 1 - description: > - Duration of the profile, in nanoseconds. - All samples within a profile will have the same duration. - To aggregate durations, you should first group by the profile ID. - - - name: cpu - type: group - fields: - - name: ns - type: long - unit: nanos - count: 1 - description: > - Amount of CPU time profiled, in nanoseconds. - - - name: wall - type: group - fields: - - name: us - type: long - unit: micros - count: 1 - description: > - Amount of wall time profiled, in microseconds. - - - name: samples - type: group - fields: - - name: count - type: long - count: 1 - description: > - Number of profile samples for the profiling period. - - - name: alloc_objects - type: group - fields: - - name: count - type: long - count: 1 - description: > - Number of objects allocated since the process started. - - - name: alloc_space - type: group - fields: - - name: bytes - type: long - count: 1 - description: > - Amount of memory allocated, in bytes, since the process started. - - - name: inuse_objects - type: group - fields: - - name: count - type: long - count: 1 - description: > - Number of objects allocated and currently in use. - - - name: inuse_space - type: group - fields: - - name: bytes - type: long - count: 1 - description: > - Amount of memory allocated, in bytes, and currently in use. - - - name: top - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - Unique ID for the top stack frame in the context of its callers. - - name: function - type: keyword - count: 1 - description: > - Function name for the top stack frame. - - name: filename - type: keyword - count: 1 - description: > - Source code filename for the top stack frame. - - name: line - type: long - count: 1 - description: > - Source code line number for the top stack frame. - - - name: stack - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - Unique ID for a stack frame in the context of its callers. - - name: function - type: keyword - description: > - Function name for a stack frame. - - name: filename - type: keyword - description: > - Source code filename for a stack frame. - - name: line - type: long - description: > - Source code line number for a stack frame. diff --git a/model/sourcemap/_meta/fields.yml b/model/sourcemap/_meta/fields.yml deleted file mode 100644 index 079246ab495..00000000000 --- a/model/sourcemap/_meta/fields.yml +++ /dev/null @@ -1,29 +0,0 @@ -- key: apm-sourcemap - title: APM Sourcemap - description: Sourcemap files enriched with metadata - kibana: - source_filters: - - sourcemap.sourcemap - fields: - - name: sourcemap - dynamic: false - type: group - fields: - - name: service - type: group - description: > - Service fields. - fields: - - name: name - type: keyword - description: > - The name of the service this sourcemap belongs to. - - name: version - type: keyword - description: > - Service version. - - - name: bundle_filepath - type: keyword - description: > - Location of the sourcemap relative to the file requesting it. diff --git a/model/span/_meta/fields.yml b/model/span/_meta/fields.yml deleted file mode 100644 index 1dcc4829197..00000000000 --- a/model/span/_meta/fields.yml +++ /dev/null @@ -1,914 +0,0 @@ -- key: apm-span - title: APM Span - description: Span-specific data for APM. - fields: - - name: processor.name - type: keyword - description: Processor name. - overwrite: true - - - name: processor.event - type: keyword - description: Processor event. - overwrite: true - - - name: timestamp - type: group - fields: - - name: us - type: long - count: 1 - description: > - Timestamp of the event in microseconds since Unix epoch. - overwrite: true - - - name: labels - type: object - object_type_params: - - object_type: keyword - - object_type: boolean - - object_type: scaled_float - scaling_factor: 1000000 - dynamic: true - overwrite: true - description: > - A flat mapping of user-defined labels with string, boolean or number values. - - - name: service - type: group - dynamic: false - description: > - Service fields. - fields: - - name: name - type: keyword - description: > - Immutable name of the service emitting this event. - overwrite: true - - - name: version - type: keyword - description: > - Version of the service emitting this event. - overwrite: true - - - name: environment - type: keyword - description: > - Service environment. - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Unique meaningful name of the service node. - overwrite: true - - - name: language - type: group - fields: - - - name: name - type: keyword - description: > - Name of the programming language used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the programming language used. - overwrite: true - - - name: runtime - type: group - fields: - - - name: name - type: keyword - description: > - Name of the runtime used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the runtime used. - overwrite: true - - - name: framework - type: group - fields: - - - name: name - type: keyword - description: > - Name of the framework used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the framework used. - overwrite: true - - - name: transaction - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The transaction ID. - overwrite: true - - name: sampled - type: boolean - description: > - Transactions that are 'sampled' will include all available information. Transactions that are not sampled will not have spans or context. - overwrite: true - - name: type - type: keyword - description: > - Keyword of specific relevance in the service's domain (eg. 'request', 'backgroundjob', etc) - overwrite: true - - name: name - type: keyword - multi_fields: - - name: text - type: text - description: > - Generic designation of a transaction in the scope of a single service (eg. 'GET /users/:id'). - overwrite: true - - - name: trace - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The ID of the trace to which the event belongs to. - overwrite: true - - - name: parent - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The ID of the parent event. - overwrite: true - - - name: agent - type: group - dynamic: false - fields: - - - name: name - type: keyword - description: > - Name of the agent used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the agent used. - overwrite: true - - - name: ephemeral_id - type: keyword - description: > - The Ephemeral ID identifies a running process. - overwrite: true - - - name: container - type: group - dynamic: false - title: Container - description: > - Container fields are used for meta information about the specific container - that is the source of information. These fields help correlate data based - containers from any runtime. - fields: - - - name: id - type: keyword - description: > - Unique container id. - overwrite: true - - - name: kubernetes - type: group - dynamic: false - title: Kubernetes - description: > - Kubernetes metadata reported by agents - fields: - - - name: namespace - type: keyword - description: > - Kubernetes namespace - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Kubernetes node name - overwrite: true - - - name: pod - type: group - fields: - - - name: name - type: keyword - description: > - Kubernetes pod name - overwrite: true - - - name: uid - type: keyword - description: > - Kubernetes Pod UID - overwrite: true - - - name: network - type: group - dynamic: false - description: > - Optional network fields - fields: - - - name: connection - type: group - description: > - Network connection details - fields: - - - name: type - type: keyword - description: > - Network connection type, eg. "wifi", "cell" - overwrite: true - - - name: subtype - type: keyword - description: > - Detailed network connection sub-type, e.g. "LTE", "CDMA" - overwrite: true - - - name: carrier - type: group - description: > - Network operator - fields: - - - name: name - type: keyword - overwrite: true - description: > - Carrier name, eg. Vodafone, T-Mobile, etc. - - - name: mcc - type: keyword - overwrite: true - description: > - Mobile country code - - - name: mnc - type: keyword - overwrite: true - description: > - Mobile network code - - - name: icc - type: keyword - overwrite: true - description: > - ISO country code, eg. US - - - name: host - type: group - dynamic: false - description: > - Optional host fields. - fields: - - - name: architecture - type: keyword - description: > - The architecture of the host the event was recorded on. - overwrite: true - - - name: hostname - type: keyword - description: > - The hostname of the host the event was recorded on. - overwrite: true - - - name: name - type: keyword - description: > - Name of the host the event was recorded on. - It can contain same information as host.hostname or a name specified by the user. - overwrite: true - - - name: ip - type: ip - description: > - IP of the host that records the event. - overwrite: true - - - name: os - title: Operating System - group: 2 - description: > - The OS fields contain information about the operating system. - type: group - fields: - - name: platform - type: keyword - description: > - The platform of the host the event was recorded on. - overwrite: true - - - name: process - type: group - dynamic: false - description: > - Information pertaining to the running process where the data was collected - fields: - - name: args - level: extended - type: keyword - description: > - Process arguments. - May be filtered to protect sensitive information. - overwrite: true - - - name: pid - type: long - description: > - Numeric process ID of the service process. - overwrite: true - - - name: ppid - type: long - description: > - Numeric ID of the service's parent process. - overwrite: true - - - name: title - type: keyword - description: > - Service process title. - overwrite: true - - - name: observer - type: group - dynamic: false - fields: - - - name: listening - type: keyword - overwrite: true - description: > - Address the server is listening on. - - - name: hostname - type: keyword - overwrite: true - description: > - Hostname of the APM Server. - - - name: version - type: keyword - overwrite: true - description: > - APM Server version. - - - name: version_major - type: byte - overwrite: true - description: > - Major version number of the observer - - - name: type - type: keyword - overwrite: true - description: > - The type will be set to `apm-server`. - - - name: id - type: keyword - overwrite: true - description: > - Unique identifier of the APM Server. - - - name: ephemeral_id - type: keyword - overwrite: true - description: > - Ephemeral identifier of the APM Server. - - - name: user - type: group - dynamic: false - fields: - - - name: name - type: keyword - description: > - The username of the logged in user. - overwrite: true - - - name: domain - type: keyword - description: > - Domain of the logged in user. - overwrite: true - - - name: id - type: keyword - description: > - Identifier of the logged in user. - overwrite: true - - - name: email - type: keyword - description: > - Email of the logged in user. - overwrite: true - - - name: client - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Client domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the client of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the client. - overwrite: true - - - name: source - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Source domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the source of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the source. - overwrite: true - - - name: destination - title: Destination - group: 2 - description: 'Destination fields describe details about the destination of a packet/event. - - Destination fields are usually populated in conjunction with source fields.' - type: group - fields: - - name: address - level: extended - type: keyword - ignore_above: 1024 - description: 'Some event destination addresses are defined ambiguously. The - event will sometimes list an IP, a domain or a unix socket. You should always - store the raw address in the `.address` field. - Then it should be duplicated to `.ip` or `.domain`, depending on which one - it is.' - overwrite: true - - - name: ip - level: core - type: ip - description: 'IP addess of the destination. - Can be one of multiple IPv4 or IPv6 addresses.' - overwrite: true - - - name: port - level: core - type: long - format: string - description: Port of the destination. - overwrite: true - - - name: user_agent - dynamic: false - title: User agent - description: > - The user_agent fields normally come from a browser request. They often - show up in web service logs coming from the parsed user agent string. - type: group - overwrite: true - fields: - - - name: original - type: keyword - description: > - Unparsed version of the user_agent. - example: "Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1" - overwrite: true - - multi_fields: - - name: text - type: text - description: > - Software agent acting in behalf of a user, eg. a web browser / OS combination. - overwrite: true - - - name: name - type: keyword - overwrite: true - example: Safari - description: > - Name of the user agent. - - - name: version - type: keyword - overwrite: true - description: > - Version of the user agent. - example: 12.0 - - - name: device - type: group - overwrite: true - title: Device - description: > - Information concerning the device. - fields: - - - name: name - type: keyword - overwrite: true - example: iPhone - description: > - Name of the device. - - - name: os - type: group - overwrite: true - title: Operating System - description: > - The OS fields contain information about the operating system. - fields: - - - name: platform - type: keyword - overwrite: true - description: > - Operating system platform (such centos, ubuntu, windows). - example: darwin - - - name: name - type: keyword - overwrite: true - example: "Mac OS X" - description: > - Operating system name, without the version. - - - name: full - type: keyword - overwrite: true - example: "Mac OS Mojave" - description: > - Operating system name, including the version or code name. - - - name: family - type: keyword - overwrite: true - example: "debian" - description: > - OS family (such as redhat, debian, freebsd, windows). - - - name: version - type: keyword - overwrite: true - example: "10.14.1" - description: > - Operating system version as a raw string. - - - name: kernel - type: keyword - overwrite: true - example: "4.4.0-112-generic" - description: > - Operating system kernel version as a raw string. - - - name: cloud - title: Cloud - group: 2 - type: group - description: > - Cloud metadata reported by agents - fields: - - name: account - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account name - overwrite: true - - name: availability_zone - level: extended - type: keyword - ignore_above: 1024 - description: Cloud availability zone name - example: us-east1-a - overwrite: true - - name: instance - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine name - overwrite: true - - name: machine - type: group - dynamic: false - fields: - - name: type - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine type - example: t2.medium - overwrite: true - - name: project - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project name - overwrite: true - - name: provider - level: extended - type: keyword - ignore_above: 1024 - description: Cloud provider name - example: gcp - overwrite: true - - name: region - level: extended - type: keyword - ignore_above: 1024 - description: Cloud region name - example: us-east1 - overwrite: true - - name: service - type: group - dynamic: false - fields: - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: > - Cloud service name, intended to distinguish services running on - different platforms within a provider. - overwrite: true - - - name: event - type: group - fields: - - - name: outcome - level: core - type: keyword - ignore_above: 1024 - description: > - `event.outcome` simply denotes whether the event represents a success or a - failure from the perspective of the entity that produced the event. - example: success - overwrite: true - - - name: child - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The ID(s) of the child event(s). - - - name: span - type: group - dynamic: false - fields: - - name: type - type: keyword - count: 1 - description: > - Keyword of specific relevance in the service's domain (eg: 'db.postgresql.query', 'template.erb', 'cache', etc). - overwrite: true - - - name: subtype - type: keyword - count: 1 - description: > - A further sub-division of the type (e.g. postgresql, elasticsearch) - overwrite: true - - - name: id - type: keyword - overwrite: true - description: > - The ID of the span stored as hex encoded string. - - - name: name - type: keyword - count: 1 - description: > - Generic designation of a span in the scope of a transaction. - - - name: action - type: keyword - count: 1 - description: > - The specific kind of event within the sub-type represented by the span (e.g. query, connect) - - - name: kind - type: keyword - description: "The kind of span: CLIENT, SERVER, PRODUCER, CONSUMER, or INTERNAL." - - - name: start - type: group - fields: - - name: us - type: long - count: 1 - description: > - Offset relative to the transaction's timestamp identifying the start of the span, in microseconds. - - - name: duration - type: group - fields: - - - name: us - type: long - count: 1 - description: > - Duration of the span, in microseconds. - - - name: sync - type: boolean - description: > - Indicates whether the span was executed synchronously or asynchronously. - - - name: db - type: group - dynamic: false - fields: - - - name: link - type: keyword - description: > - Database link. - - - name: rows_affected - type: long - description: > - Number of rows affected by the database statement. - - - name: destination - type: group - dynamic: false - fields: - - - name: service - type: group - dynamic: false - description: Destination service context - fields: - - - name: type - type: keyword - description: > - Type of the destination service (e.g. 'db', 'elasticsearch'). Should typically be the same as span.type. - DEPRECATED: this field will be removed in a future release - - - name: name - type: keyword - description: > - Identifier for the destination service (e.g. 'http://elastic.co', 'elasticsearch', 'rabbitmq') - DEPRECATED: this field will be removed in a future release - - - name: resource - type: keyword - description: > - Identifier for the destination service resource being operated on (e.g. 'http://elastic.co:80', 'elasticsearch', 'rabbitmq/queue_name') - - - name: message - type: group - dynamic: false - fields: - - - name: queue - type: group - fields: - - - name: name - type: keyword - description: > - Name of the message queue or topic where the message is published or received. - - - name: age - type: group - fields: - - - name: ms - type: long - description: > - Age of a message in milliseconds. - - - name: composite - type: group - dynamic: false - fields: - - - name: count - type: long - description: > - Number of compressed spans the composite span represents. - - - name: sum - type: group - fields: - - - name: us - type: long - count: 1 - description: > - Sum of the durations of the compressed spans, in microseconds. - - - name: compression_strategy - type: keyword - description: > - The compression strategy that was used. diff --git a/model/transaction/_meta/fields.yml b/model/transaction/_meta/fields.yml deleted file mode 100644 index 8132d3c55d6..00000000000 --- a/model/transaction/_meta/fields.yml +++ /dev/null @@ -1,1052 +0,0 @@ -- key: apm-transaction - title: APM Transaction - description: Transaction-specific data for APM - fields: - - name: processor.name - type: keyword - description: Processor name. - overwrite: true - - - name: processor.event - type: keyword - description: Processor event. - overwrite: true - - - name: timestamp - type: group - fields: - - name: us - type: long - count: 1 - description: > - Timestamp of the event in microseconds since Unix epoch. - overwrite: true - - - name: url - type: group - description: > - A complete Url, with scheme, host and path. - dynamic: false - fields: - - - name: scheme - type: keyword - description: > - The protocol of the request, e.g. "https:". - overwrite: true - - - name: full - type: keyword - description: > - The full, possibly agent-assembled URL of the request, e.g https://example.com:443/search?q=elasticsearch#top. - overwrite: true - - - name: domain - type: keyword - description: > - The hostname of the request, e.g. "example.com". - overwrite: true - - - name: port - type: long - description: > - The port of the request, e.g. 443. - overwrite: true - - - name: path - type: keyword - description: > - The path of the request, e.g. "/search". - overwrite: true - - - name: query - type: keyword - description: > - The query string of the request, e.g. "q=elasticsearch". - overwrite: true - - - name: fragment - type: keyword - description: > - A fragment specifying a location in a web page , e.g. "top". - overwrite: true - - - name: http - type: group - dynamic: false - fields: - - - name: version - type: keyword - description: > - The http version of the request leading to this event. - overwrite: true - - - name: request - type: group - fields: - - - name: method - type: keyword - description: > - The http method of the request leading to this event. - overwrite: true - - - name: headers - type: object - enabled: false - description: > - The canonical headers of the monitored HTTP request. - overwrite: true - - - name: referrer - type: keyword - ignore_above: 1024 - description: Referrer for this HTTP request. - overwrite: true - - - name: response - type: group - fields: - - - name: status_code - type: long - description: > - The status code of the HTTP response. - overwrite: true - - - name: finished - type: boolean - description: > - Used by the Node agent to indicate when in the response life cycle an error has occurred. - overwrite: true - - - name: headers - type: object - enabled: false - description: > - The canonical headers of the monitored HTTP response. - overwrite: true - - - name: labels - type: object - object_type_params: - - object_type: keyword - - object_type: boolean - - object_type: scaled_float - scaling_factor: 1000000 - dynamic: true - overwrite: true - description: > - A flat mapping of user-defined labels with string, boolean or number values. - - - name: faas - type: group - dynamic: false - description: > - Function as a service fields. - fields: - - name: execution - type: keyword - description: > - Request ID of the function invocation. - overwrite: true - - name: coldstart - type: boolean - description: > - Boolean indicating whether the function invocation was a coldstart or not. - overwrite: true - - name: trigger.type - type: keyword - description: > - The trigger type. - overwrite: true - - name: trigger.request_id - type: keyword - description: > - The ID of the origin trigger request. - overwrite: true - - - name: service - type: group - dynamic: false - description: > - Service fields. - fields: - - name: id - type: keyword - description: > - Immutable id of the service emitting this event. - overwrite: true - - - name: name - type: keyword - description: > - Immutable name of the service emitting this event. - overwrite: true - - - name: version - type: keyword - description: > - Version of the service emitting this event. - overwrite: true - - - name: environment - type: keyword - description: > - Service environment. - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Unique meaningful name of the service node. - overwrite: true - - - name: language - type: group - fields: - - - name: name - type: keyword - description: > - Name of the programming language used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the programming language used. - overwrite: true - - - name: runtime - type: group - fields: - - - name: name - type: keyword - description: > - Name of the runtime used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the runtime used. - overwrite: true - - - name: framework - type: group - fields: - - - name: name - type: keyword - description: > - Name of the framework used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the framework used. - overwrite: true - - - name: origin - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - Immutable id of the service emitting this event. - overwrite: true - - - name: name - type: keyword - description: > - Immutable name of the service emitting this event. - overwrite: true - - - name: version - type: keyword - description: > - The version of the service the data was collected from. - overwrite: true - - - name: session - type: group - dynamic: false - fields: - - name: id - type: keyword - ignore_above: 1024 - description: > - The ID of the session to which the event belongs. - - name: sequence - type: long - description: > - The sequence number of the event within the session to which the event belongs. - - - name: span - type: group - dynamic: false - fields: - - name: kind - type: keyword - description: "The kind of span: CLIENT, SERVER, PRODUCER, CONSUMER, or INTERNAL." - - - name: transaction - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The transaction ID. - overwrite: true - - name: sampled - type: boolean - description: > - Transactions that are 'sampled' will include all available information. Transactions that are not sampled will not have spans or context. - overwrite: true - - name: type - type: keyword - description: > - Keyword of specific relevance in the service's domain (eg. 'request', 'backgroundjob', etc) - overwrite: true - - name: name - type: keyword - multi_fields: - - name: text - type: text - description: > - Generic designation of a transaction in the scope of a single service (eg. 'GET /users/:id'). - overwrite: true - - - name: trace - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The ID of the trace to which the event belongs to. - overwrite: true - - - name: parent - type: group - dynamic: false - fields: - - name: id - type: keyword - description: > - The ID of the parent event. - overwrite: true - - - name: agent - type: group - dynamic: false - fields: - - - name: name - type: keyword - description: > - Name of the agent used. - overwrite: true - - - name: version - type: keyword - description: > - Version of the agent used. - overwrite: true - - - name: ephemeral_id - type: keyword - description: > - The Ephemeral ID identifies a running process. - overwrite: true - - - name: container - type: group - dynamic: false - title: Container - description: > - Container fields are used for meta information about the specific container - that is the source of information. These fields help correlate data based - containers from any runtime. - fields: - - - name: id - type: keyword - description: > - Unique container id. - overwrite: true - - - name: kubernetes - type: group - dynamic: false - title: Kubernetes - description: > - Kubernetes metadata reported by agents - fields: - - - name: namespace - type: keyword - description: > - Kubernetes namespace - overwrite: true - - - name: node - type: group - fields: - - name: name - type: keyword - description: > - Kubernetes node name - overwrite: true - - - name: pod - type: group - fields: - - - name: name - type: keyword - description: > - Kubernetes pod name - overwrite: true - - - name: uid - type: keyword - description: > - Kubernetes Pod UID - overwrite: true - - - name: network - type: group - dynamic: false - description: > - Optional network fields - fields: - - - name: connection - type: group - description: > - Network connection details - fields: - - - name: type - type: keyword - description: > - Network connection type, eg. "wifi", "cell" - - - name: subtype - type: keyword - description: > - Detailed network connection sub-type, e.g. "LTE", "CDMA" - - - name: carrier - type: group - description: > - Network operator - fields: - - - name: name - type: keyword - overwrite: true - description: > - Carrier name, eg. Vodafone, T-Mobile, etc. - - - name: mcc - type: keyword - overwrite: true - description: > - Mobile country code - - - name: mnc - type: keyword - overwrite: true - description: > - Mobile network code - - - name: icc - type: keyword - overwrite: true - description: > - ISO country code, eg. US - - - name: host - type: group - dynamic: false - description: > - Optional host fields. - fields: - - - name: architecture - type: keyword - description: > - The architecture of the host the event was recorded on. - overwrite: true - - - name: hostname - type: keyword - description: > - The hostname of the host the event was recorded on. - overwrite: true - - - name: name - type: keyword - description: > - Name of the host the event was recorded on. - It can contain same information as host.hostname or a name specified by the user. - overwrite: true - - - name: ip - type: ip - description: > - IP of the host that records the event. - overwrite: true - - - name: os - title: Operating System - group: 2 - description: > - The OS fields contain information about the operating system. - type: group - fields: - - name: platform - type: keyword - description: > - The platform of the host the event was recorded on. - overwrite: true - - - name: process - type: group - dynamic: false - description: > - Information pertaining to the running process where the data was collected - fields: - - name: args - level: extended - type: keyword - description: > - Process arguments. - May be filtered to protect sensitive information. - overwrite: true - - - name: pid - type: long - description: > - Numeric process ID of the service process. - overwrite: true - - - name: ppid - type: long - description: > - Numeric ID of the service's parent process. - overwrite: true - - - name: title - type: keyword - description: > - Service process title. - overwrite: true - - - name: observer - type: group - dynamic: false - fields: - - - name: listening - type: keyword - overwrite: true - description: > - Address the server is listening on. - - - name: hostname - type: keyword - overwrite: true - description: > - Hostname of the APM Server. - - - name: version - type: keyword - overwrite: true - description: > - APM Server version. - - - name: version_major - type: byte - overwrite: true - description: > - Major version number of the observer - - - name: type - type: keyword - overwrite: true - description: > - The type will be set to `apm-server`. - - - name: id - type: keyword - overwrite: true - description: > - Unique identifier of the APM Server. - - - name: ephemeral_id - type: keyword - overwrite: true - description: > - Ephemeral identifier of the APM Server. - - - name: user - type: group - dynamic: false - fields: - - - name: domain - type: keyword - description: > - The domain of the logged in user. - overwrite: true - - - name: name - type: keyword - description: > - The username of the logged in user. - overwrite: true - - - name: id - type: keyword - description: > - Identifier of the logged in user. - overwrite: true - - - name: email - type: keyword - description: > - Email of the logged in user. - overwrite: true - - - name: client - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Client domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the client of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the client. - overwrite: true - - - name: source - dynamic: false - type: group - fields: - - - name: domain - type: keyword - ignore_above: 1024 - description: > - Source domain. - overwrite: true - - - name: ip - type: ip - description: > - IP address of the source of a recorded event. - This is typically obtained from a request's X-Forwarded-For or the X-Real-IP header or falls back to a given configuration for remote address. - overwrite: true - - - name: port - type: long - description: > - Port of the source. - overwrite: true - - - name: destination - title: Destination - group: 2 - description: 'Destination fields describe details about the destination of a packet/event. - - Destination fields are usually populated in conjunction with source fields.' - type: group - fields: - - name: address - level: extended - type: keyword - ignore_above: 1024 - description: 'Some event destination addresses are defined ambiguously. The - event will sometimes list an IP, a domain or a unix socket. You should always - store the raw address in the `.address` field. - Then it should be duplicated to `.ip` or `.domain`, depending on which one - it is.' - overwrite: true - - - name: ip - level: core - type: ip - description: 'IP addess of the destination. - Can be one of multiple IPv4 or IPv6 addresses.' - overwrite: true - - - name: port - level: core - type: long - format: string - description: Port of the destination. - overwrite: true - - - name: user_agent - dynamic: false - title: User agent - description: > - The user_agent fields normally come from a browser request. They often - show up in web service logs coming from the parsed user agent string. - type: group - overwrite: true - fields: - - - name: original - type: keyword - description: > - Unparsed version of the user_agent. - example: "Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1" - overwrite: true - - multi_fields: - - name: text - type: text - description: > - Software agent acting in behalf of a user, eg. a web browser / OS combination. - overwrite: true - - - name: name - type: keyword - overwrite: true - example: Safari - description: > - Name of the user agent. - - - name: version - type: keyword - overwrite: true - description: > - Version of the user agent. - example: 12.0 - - - name: device - type: group - overwrite: true - title: Device - description: > - Information concerning the device. - fields: - - - name: name - type: keyword - overwrite: true - example: iPhone - description: > - Name of the device. - - - name: os - type: group - overwrite: true - title: Operating System - description: > - The OS fields contain information about the operating system. - fields: - - - name: platform - type: keyword - overwrite: true - description: > - Operating system platform (such centos, ubuntu, windows). - example: darwin - - - name: name - type: keyword - overwrite: true - example: "Mac OS X" - description: > - Operating system name, without the version. - - - name: full - type: keyword - overwrite: true - example: "Mac OS Mojave" - description: > - Operating system name, including the version or code name. - - - name: family - type: keyword - overwrite: true - example: "debian" - description: > - OS family (such as redhat, debian, freebsd, windows). - - - name: version - type: keyword - overwrite: true - example: "10.14.1" - description: > - Operating system version as a raw string. - - - name: kernel - type: keyword - overwrite: true - example: "4.4.0-112-generic" - description: > - Operating system kernel version as a raw string. - - - name: cloud - title: Cloud - group: 2 - type: group - description: > - Cloud metadata reported by agents - fields: - - name: account - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud account name - overwrite: true - - name: availability_zone - level: extended - type: keyword - ignore_above: 1024 - description: Cloud availability zone name - example: us-east1-a - overwrite: true - - name: instance - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine name - overwrite: true - - name: machine - type: group - dynamic: false - fields: - - name: type - level: extended - type: keyword - ignore_above: 1024 - description: Cloud instance/machine type - example: t2.medium - overwrite: true - - name: origin - type: group - dynamic: false - fields: - - name: account.id - type: keyword - description: > - The cloud account or organization id used to identify different - entities in a multi-tenant environment. - - - name: provider - type: keyword - description: > - Name of the cloud provider. - - - name: region - type: keyword - description: > - Region in which this host, resource, or service is located. - - - name: service.name - type: keyword - description: > - The cloud service name is intended to distinguish services running - on different platforms within a provider. - - - name: project - type: group - dynamic: false - fields: - - name: id - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project ID - overwrite: true - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: Cloud project name - overwrite: true - - name: provider - level: extended - type: keyword - ignore_above: 1024 - description: Cloud provider name - example: gcp - overwrite: true - - name: region - level: extended - type: keyword - ignore_above: 1024 - description: Cloud region name - example: us-east1 - overwrite: true - - name: service - type: group - dynamic: false - fields: - - name: name - level: extended - type: keyword - ignore_above: 1024 - description: > - Cloud service name, intended to distinguish services running on - different platforms within a provider. - overwrite: true - - - name: event - type: group - fields: - - - name: outcome - level: core - type: keyword - ignore_above: 1024 - description: > - `event.outcome` simply denotes whether the event represents a success or a - failure from the perspective of the entity that produced the event. - example: success - overwrite: true - - - name: transaction - type: group - dynamic: false - fields: - - name: duration - type: group - fields: - - name: us - type: long - description: > - Total duration of this transaction, in microseconds. - - - name: result - type: keyword - description: > - The result of the transaction. HTTP status code for HTTP-related transactions. - - - name: marks - type: object - object_type: keyword - dynamic: true - description: > - A user-defined mapping of groups of marks in milliseconds. - - - name: marks.*.* - type: object - object_type: scaled_float - scaling_factor: 1000000 - dynamic: true - description: > - A user-defined mapping of groups of marks in milliseconds. - - - name: experience - type: group - fields: - - name: cls - type: scaled_float - scaling_factor: 1000000 - description: The Cumulative Layout Shift metric - - - name: fid - type: scaled_float - scaling_factor: 1000000 - description: The First Input Delay metric - - - name: tbt - type: scaled_float - scaling_factor: 1000000 - description: The Total Blocking Time metric - - - name: longtask - type: group - description: Longtask duration/count metrics - fields: - - name: count - type: long - description: The total number of of longtasks - - - name: sum - type: scaled_float - scaling_factor: 1000000 - description: The sum of longtask durations - - - name: max - type: scaled_float - scaling_factor: 1000000 - description: The max longtask duration - - - name: span_count - type: group - fields: - - name: dropped - type: long - description: The total amount of dropped spans for this transaction. - - - name: message - type: group - dynamic: false - fields: - - name: queue - type: group - fields: - - name: name - type: keyword - description: > - Name of the message queue or topic where the message is published or received. - - - name: age - type: group - fields: - - name: ms - type: long - description: > - Age of a message in milliseconds. diff --git a/packaging/files/README.md.tmpl b/packaging/files/README.md.tmpl index bceb8ae57ca..532ae4d4423 100644 --- a/packaging/files/README.md.tmpl +++ b/packaging/files/README.md.tmpl @@ -9,10 +9,7 @@ localhost first. After that, start APM Server with: ./{{.BeatName}} -c {{.BeatName}}.yml -e -This will start APM Server and send the data to your Elasticsearch instance. To -load the Elasticsearch template for APM Server into Kibana, run: - - ./{{.BeatName}} setup -e +This will start APM Server and send the data to your Elasticsearch instance. For further steps visit the [Getting started](https://www.elastic.co/guide/en/apm/get-started/{{ beat_doc_branch }}/) guide. diff --git a/tests/_meta/fields.yml b/tests/_meta/fields.yml deleted file mode 100644 index 61c3449f1de..00000000000 --- a/tests/_meta/fields.yml +++ /dev/null @@ -1,37 +0,0 @@ -- key: apm-transaction - title: APM Transaction - description: Transaction-specific data for APM - fields: - - name: transaction - type: group - fields: - - name: id - type: keyword - description: > - a UUID4 transaction ID - - - name: context - type: object - enabled: false - -- key: apm-exception - title: APM Exception - description: Exception-specific data for APM - fields: - - name: exception - type: group - fields: - - - name: http - type: group - fields: - - name: url - type: keyword - - - name: meta - type: object - enabled: true - - - name: stacktrace - type: object - enabled: false diff --git a/x-pack/apm-server/cmd/root.go b/x-pack/apm-server/cmd/root.go index 65d34918c44..1c68ca276cd 100644 --- a/x-pack/apm-server/cmd/root.go +++ b/x-pack/apm-server/cmd/root.go @@ -7,10 +7,9 @@ package cmd import ( "github.com/elastic/beats/v7/libbeat/beat" libbeatcmd "github.com/elastic/beats/v7/libbeat/cmd" - _ "github.com/elastic/beats/v7/x-pack/libbeat/include" // Fleet, processors + _ "github.com/elastic/beats/v7/x-pack/libbeat/management" // Fleet "github.com/elastic/apm-server/cmd" - _ "github.com/elastic/apm-server/x-pack/apm-server/include" // include assets ) // NewXPackRootCommand returns the Elastic licensed "apm-server" root command. diff --git a/x-pack/apm-server/fields/_meta/fields.yml b/x-pack/apm-server/fields/_meta/fields.yml deleted file mode 100644 index 090895f8457..00000000000 --- a/x-pack/apm-server/fields/_meta/fields.yml +++ /dev/null @@ -1,45 +0,0 @@ -- key: apm-transaction-metrics-xpack - title: "APM Transaction Metrics" - description: > - APM transaction metrics, and transaction metrics-specific properties, - requiring licensed features such as the histogram field type. - short_config: true - fields: - - name: transaction - type: group - dynamic: false - fields: - - - name: duration - type: group - fields: - - name: histogram - type: histogram - description: > - Pre-aggregated histogram of transaction durations. - -- key: apm-span-metrics-xpack - title: "APM Span Metrics" - description: > - APM span metrics are used for showing rate of requests and latency between instrumented services. - short_config: true - fields: - - name: metricset.period - unit: ms - type: long - description: Current data collection period for this event in milliseconds. - - name: span - type: group - dynamic: false - fields: - - name: destination.service - type: group - dynamic: false - fields: - - name: response_time.count - type: long - description: Number of aggregated outgoing requests. - - name: response_time.sum.us - unit: micros - type: long - description: Aggregated duration of outgoing requests, in microseconds. diff --git a/x-pack/apm-server/include/fields.go b/x-pack/apm-server/include/fields.go deleted file mode 100644 index c0af8442f01..00000000000 --- a/x-pack/apm-server/include/fields.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one -// or more contributor license agreements. Licensed under the Elastic License 2.0; -// you may not use this file except in compliance with the Elastic License 2.0. - -// Code generated by beats/dev-tools/cmd/asset/asset.go - DO NOT EDIT. - -package include - -import ( - "github.com/elastic/beats/v7/libbeat/asset" -) - -func init() { - if err := asset.SetFields("apm-server", "XPackFields", asset.ModuleFieldsPri, AssetXPackFields); err != nil { - panic(err) - } -} - -// AssetXPackFields returns asset data. -// This is the base64 encoded zlib format compressed contents of x-pack/apm-server. -func AssetXPackFields() string { - return "eJyck0Fv2zAMhe/+FUTPsX+ADwOKnTsU2O6FKj87RG1JI6l2+feDHLtxFqNbl1so6vGJ33NNLzi15NJUm7igzhvHUE8wYa/1r+T8S0VkbCNaurt/fKAflz56OPfdVUQd1AunUm7pS0VEVLo3qrSoHsiFbu+g1gTPPXtKEhPEGHqYlQQ/MwuHgUb2CIqOejjLAiXN/khOyY6gI6vFQdxEPWPsyE4JTUWkxyj25GPoeWjJJKOic4u284CagpvQbl3NdZolWhok5rRUulNwE/uWejcqluIqtvxd9bosbiO2J3dtZHv5/TXvJ+v9vZMdAOvvUVC7YRAMztBtthT7Kw6rW22qapMMTe7jSHxP7l+yUHRW1uQElGeQUQqft0JXnKGYKryhpnNSRmcI/kTPsDcgEAc1yRNCeYtCXtlDP0V58QBrEoRjtywrB7aWJr0iP8YwVDsb/ppFEIw6Z458HEecd3hWnF9lR1bCa+niQBOPIyt8DN3s9mKn7OX/0vZH2KDGYSbYLHv5MHe70rdxvAwQaIpB8WQ8ofExB7vK2c3Gdvb2LU/PkAJ5k8iYbYhzABbwzV+na56arFdzFn7sJeqnfd1f3KyfQTF54+xwZllmrCx/BwAA//9RTKg4" -} diff --git a/x-pack/apm-server/main.go b/x-pack/apm-server/main.go index c1e35d918ec..e10eb5128bb 100644 --- a/x-pack/apm-server/main.go +++ b/x-pack/apm-server/main.go @@ -97,10 +97,6 @@ func newProcessors(args beater.ServerParams) ([]namedProcessor, error) { } func newTailSamplingProcessor(args beater.ServerParams) (*sampling.Processor, error) { - if !args.Config.DataStreams.Enabled { - return nil, errors.New("tail-based sampling requires data streams") - } - tailSamplingConfig := args.Config.Sampling.Tail es, err := args.NewElasticsearchClient(tailSamplingConfig.ESConfig) if err != nil { diff --git a/x-pack/apm-server/main_test.go b/x-pack/apm-server/main_test.go index a8d566e7682..418040ddd56 100644 --- a/x-pack/apm-server/main_test.go +++ b/x-pack/apm-server/main_test.go @@ -65,7 +65,6 @@ func TestMonitoring(t *testing.T) { defer closeBadger() // close badger.DB so data dir can be deleted on Windows cfg := config.DefaultConfig() - cfg.DataStreams.Enabled = true cfg.Sampling.Tail.Enabled = true cfg.Sampling.Tail.Policies = []config.TailSamplingPolicy{{SampleRate: 0.1}}