From b4a8d21a36f628790207557b2da2dd3a976f66d9 Mon Sep 17 00:00:00 2001 From: rghetia Date: Fri, 14 Jun 2019 13:09:41 -0700 Subject: [PATCH] add license text. (#10) --- api/core/core.go | 14 ++++++++++++++ api/log/log.go | 14 ++++++++++++++ api/metric/api.go | 14 ++++++++++++++ api/metric/common.go | 14 ++++++++++++++ api/metric/gauge.go | 14 ++++++++++++++ api/metric/registry.go | 14 ++++++++++++++ api/scope/scope.go | 14 ++++++++++++++ api/stats/stats.go | 14 ++++++++++++++ api/tag/api.go | 14 ++++++++++++++ api/tag/map.go | 14 ++++++++++++++ api/tag/tag.go | 14 ++++++++++++++ api/trace/api.go | 14 ++++++++++++++ api/trace/span.go | 14 ++++++++++++++ api/trace/trace.go | 14 ++++++++++++++ api/unit/unit.go | 14 ++++++++++++++ example/example.go | 14 ++++++++++++++ example/http/client/client.go | 14 ++++++++++++++ example/http/server/server.go | 14 ++++++++++++++ exporter/buffer/buffer.go | 14 ++++++++++++++ exporter/loader/loader.go | 14 ++++++++++++++ exporter/observer/eventtype_string.go | 14 ++++++++++++++ exporter/observer/observer.go | 14 ++++++++++++++ exporter/reader/format/format.go | 14 ++++++++++++++ exporter/reader/reader.go | 14 ++++++++++++++ exporter/spandata/format/format.go | 14 ++++++++++++++ exporter/spandata/spandata.go | 14 ++++++++++++++ exporter/spanlog/install/package.go | 14 ++++++++++++++ exporter/spanlog/plugin/package.go | 14 ++++++++++++++ exporter/spanlog/spanlog.go | 14 ++++++++++++++ exporter/stderr/install/package.go | 14 ++++++++++++++ exporter/stderr/plugin/package.go | 14 ++++++++++++++ exporter/stderr/stderr.go | 14 ++++++++++++++ exporter/stdout/install/package.go | 14 ++++++++++++++ exporter/stdout/plugin/package.go | 14 ++++++++++++++ exporter/stdout/stdout.go | 14 ++++++++++++++ plugin/httptrace/api.go | 14 ++++++++++++++ plugin/httptrace/clienttrace.go | 14 ++++++++++++++ plugin/httptrace/httptrace.go | 14 ++++++++++++++ 38 files changed, 532 insertions(+) diff --git a/api/core/core.go b/api/core/core.go index 8dc005a31..dce685f2c 100644 --- a/api/core/core.go +++ b/api/core/core.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package core import ( diff --git a/api/log/log.go b/api/log/log.go index 62677e296..118375868 100644 --- a/api/log/log.go +++ b/api/log/log.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package log import ( diff --git a/api/metric/api.go b/api/metric/api.go index 861e27d0e..e52fb3894 100644 --- a/api/metric/api.go +++ b/api/metric/api.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package metric import ( diff --git a/api/metric/common.go b/api/metric/common.go index f43484e61..7e1b78f2b 100644 --- a/api/metric/common.go +++ b/api/metric/common.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package metric import ( diff --git a/api/metric/gauge.go b/api/metric/gauge.go index 30f1fd21f..59236c89f 100644 --- a/api/metric/gauge.go +++ b/api/metric/gauge.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package metric import ( diff --git a/api/metric/registry.go b/api/metric/registry.go index 5726e4c97..d67a061ba 100644 --- a/api/metric/registry.go +++ b/api/metric/registry.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + // Copyright 2018, OpenCensus Authors // // Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/api/scope/scope.go b/api/scope/scope.go index ab907a4bb..9f975e8c3 100644 --- a/api/scope/scope.go +++ b/api/scope/scope.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package scope import ( diff --git a/api/stats/stats.go b/api/stats/stats.go index 8445c1a20..16f208d7e 100644 --- a/api/stats/stats.go +++ b/api/stats/stats.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package stats import ( diff --git a/api/tag/api.go b/api/tag/api.go index 9021818fd..ae0a35163 100644 --- a/api/tag/api.go +++ b/api/tag/api.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package tag import ( diff --git a/api/tag/map.go b/api/tag/map.go index 2d885f6b2..4f57ae29c 100644 --- a/api/tag/map.go +++ b/api/tag/map.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package tag import ( diff --git a/api/tag/tag.go b/api/tag/tag.go index 16b03de64..b521d9657 100644 --- a/api/tag/tag.go +++ b/api/tag/tag.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package tag import ( diff --git a/api/trace/api.go b/api/trace/api.go index 0df0bc4f5..7fbdaa8b0 100644 --- a/api/trace/api.go +++ b/api/trace/api.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package trace import ( diff --git a/api/trace/span.go b/api/trace/span.go index 19b3894e4..b0b7083d6 100644 --- a/api/trace/span.go +++ b/api/trace/span.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package trace import ( diff --git a/api/trace/trace.go b/api/trace/trace.go index 12bfa6638..597a314e9 100644 --- a/api/trace/trace.go +++ b/api/trace/trace.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package trace import ( diff --git a/api/unit/unit.go b/api/unit/unit.go index 694663910..260cd239e 100644 --- a/api/unit/unit.go +++ b/api/unit/unit.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package unit type ( diff --git a/example/example.go b/example/example.go index 993f54aea..16890c339 100644 --- a/example/example.go +++ b/example/example.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package main import ( diff --git a/example/http/client/client.go b/example/http/client/client.go index 7bcc1c4de..23306752e 100644 --- a/example/http/client/client.go +++ b/example/http/client/client.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package main import ( diff --git a/example/http/server/server.go b/example/http/server/server.go index 2f84585e5..e9728af91 100644 --- a/example/http/server/server.go +++ b/example/http/server/server.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package main import ( diff --git a/exporter/buffer/buffer.go b/exporter/buffer/buffer.go index 4b4c94e50..5c0696664 100644 --- a/exporter/buffer/buffer.go +++ b/exporter/buffer/buffer.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package buffer import ( diff --git a/exporter/loader/loader.go b/exporter/loader/loader.go index 6e3cd0513..895b589d2 100644 --- a/exporter/loader/loader.go +++ b/exporter/loader/loader.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package loader import ( diff --git a/exporter/observer/eventtype_string.go b/exporter/observer/eventtype_string.go index 0a145453f..400906ec5 100644 --- a/exporter/observer/eventtype_string.go +++ b/exporter/observer/eventtype_string.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + // Code generated by "stringer -type=EventType"; DO NOT EDIT. package observer diff --git a/exporter/observer/observer.go b/exporter/observer/observer.go index 25f76051a..cd4df24e7 100644 --- a/exporter/observer/observer.go +++ b/exporter/observer/observer.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package observer import ( diff --git a/exporter/reader/format/format.go b/exporter/reader/format/format.go index c2d81a025..8bf8f9c9e 100644 --- a/exporter/reader/format/format.go +++ b/exporter/reader/format/format.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package format import ( diff --git a/exporter/reader/reader.go b/exporter/reader/reader.go index 3218617e0..db48a1ff7 100644 --- a/exporter/reader/reader.go +++ b/exporter/reader/reader.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package reader import ( diff --git a/exporter/spandata/format/format.go b/exporter/spandata/format/format.go index 101751837..2dfc32c53 100644 --- a/exporter/spandata/format/format.go +++ b/exporter/spandata/format/format.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package format import ( diff --git a/exporter/spandata/spandata.go b/exporter/spandata/spandata.go index 2ac548513..5a88d3966 100644 --- a/exporter/spandata/spandata.go +++ b/exporter/spandata/spandata.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package spandata import ( diff --git a/exporter/spanlog/install/package.go b/exporter/spanlog/install/package.go index 8622483a5..d08351f97 100644 --- a/exporter/spanlog/install/package.go +++ b/exporter/spanlog/install/package.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package install import ( diff --git a/exporter/spanlog/plugin/package.go b/exporter/spanlog/plugin/package.go index 1c2c51ee9..d137f89ef 100644 --- a/exporter/spanlog/plugin/package.go +++ b/exporter/spanlog/plugin/package.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package main import "github.com/open-telemetry/opentelemetry-go/exporter/spanlog" diff --git a/exporter/spanlog/spanlog.go b/exporter/spanlog/spanlog.go index 7d776c038..e005c4e59 100644 --- a/exporter/spanlog/spanlog.go +++ b/exporter/spanlog/spanlog.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package spanlog import ( diff --git a/exporter/stderr/install/package.go b/exporter/stderr/install/package.go index 50d08137d..d7d54bca6 100644 --- a/exporter/stderr/install/package.go +++ b/exporter/stderr/install/package.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package install import ( diff --git a/exporter/stderr/plugin/package.go b/exporter/stderr/plugin/package.go index b3bd041cf..5a9d3b067 100644 --- a/exporter/stderr/plugin/package.go +++ b/exporter/stderr/plugin/package.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package main import "github.com/open-telemetry/opentelemetry-go/exporter/stderr" diff --git a/exporter/stderr/stderr.go b/exporter/stderr/stderr.go index 1a4585cab..3a291ecbd 100644 --- a/exporter/stderr/stderr.go +++ b/exporter/stderr/stderr.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package stderr import ( diff --git a/exporter/stdout/install/package.go b/exporter/stdout/install/package.go index 382578710..c88bc3292 100644 --- a/exporter/stdout/install/package.go +++ b/exporter/stdout/install/package.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package install import ( diff --git a/exporter/stdout/plugin/package.go b/exporter/stdout/plugin/package.go index f3f455cc1..1e7cae4c1 100644 --- a/exporter/stdout/plugin/package.go +++ b/exporter/stdout/plugin/package.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package main import "github.com/open-telemetry/opentelemetry-go/exporter/stdout" diff --git a/exporter/stdout/stdout.go b/exporter/stdout/stdout.go index 2fc304683..37c0c9f29 100644 --- a/exporter/stdout/stdout.go +++ b/exporter/stdout/stdout.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package stdout import ( diff --git a/plugin/httptrace/api.go b/plugin/httptrace/api.go index 6443c19e6..53d52ee3e 100644 --- a/plugin/httptrace/api.go +++ b/plugin/httptrace/api.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package httptrace import ( diff --git a/plugin/httptrace/clienttrace.go b/plugin/httptrace/clienttrace.go index 02c15add0..f5024e318 100644 --- a/plugin/httptrace/clienttrace.go +++ b/plugin/httptrace/clienttrace.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package httptrace import ( diff --git a/plugin/httptrace/httptrace.go b/plugin/httptrace/httptrace.go index 464580836..1a88395c6 100644 --- a/plugin/httptrace/httptrace.go +++ b/plugin/httptrace/httptrace.go @@ -1,3 +1,17 @@ +// Copyright 2019, OpenTelemetry 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. + package httptrace import (