Skip to content

Commit

Permalink
Add missing copyright
Browse files Browse the repository at this point in the history
Signed-off-by: Heinz Gies <[email protected]>
  • Loading branch information
Licenser committed Sep 26, 2024
1 parent 6b97a00 commit abe85f8
Show file tree
Hide file tree
Showing 7 changed files with 98 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/all.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2020-2021, The Tremor Team
//
// 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.

use crate::opentelemetry::proto::collector::logs::v1 as logs_base;
use crate::opentelemetry::proto::collector::metrics::v1 as metrics_base;
use crate::opentelemetry::proto::collector::trace::v1 as trace_base;
Expand Down
14 changes: 14 additions & 0 deletions src/all/channels.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2020-2021, The Tremor Team
//
// 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.

use crate::opentelemetry::proto::collector::logs::v1 as logs_base;
use crate::opentelemetry::proto::collector::metrics::v1 as metrics_base;
use crate::opentelemetry::proto::collector::trace::v1 as trace_base;
Expand Down
14 changes: 14 additions & 0 deletions src/logs.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2020-2021, The Tremor Team
//
// 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.

use crate::opentelemetry::proto::collector::logs::v1 as base;
use crate::opentelemetry::proto::collector::logs::v1::logs_service_server as skel;

Expand Down
14 changes: 14 additions & 0 deletions src/logs/channels.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2020-2021, The Tremor Team
//
// 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.

use crate::opentelemetry::proto::collector::logs::v1 as base;
use crate::opentelemetry::proto::collector::logs::v1::logs_service_server as skel;
use tokio::sync::mpsc::{Receiver, Sender};
Expand Down
14 changes: 14 additions & 0 deletions src/metrics.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2020-2021, The Tremor Team
//
// 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.

use crate::opentelemetry::proto::collector::metrics::v1 as base;
use crate::opentelemetry::proto::collector::metrics::v1::metrics_service_server as skel;

Expand Down
14 changes: 14 additions & 0 deletions src/metrics/channels.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2020-2021, The Tremor Team
//
// 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.

use crate::opentelemetry::proto::collector::metrics::v1 as base;
use crate::opentelemetry::proto::collector::metrics::v1::metrics_service_server as skel;
use tokio::sync::mpsc::{Receiver, Sender};
Expand Down
14 changes: 14 additions & 0 deletions src/trace.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2020-2021, The Tremor Team
//
// 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.

use crate::opentelemetry::proto::collector::trace::v1 as base;
use crate::opentelemetry::proto::collector::trace::v1::trace_service_server as skel;

Expand Down

0 comments on commit abe85f8

Please sign in to comment.