From 3ac98dd9217fdb7d698a59206ff17ae79b23d26a Mon Sep 17 00:00:00 2001 From: Dennis Pattmann Date: Mon, 9 Nov 2020 18:32:06 +0100 Subject: [PATCH] docs: Removed warning from README.md --- README.md | 2 -- handler.go | 18 ++++++++++++++++++ handler_test.go | 18 ++++++++++++++++++ 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf15a31..ecc2b36 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # prometheus-timestream-adapter -:warning: **This is a very early version**: Be very careful here! - Prometheus-timestream-adapter is a service which receives [Prometheus](https://github.com/prometheus) metrics through [`remote_write`](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write), and sends them into [AWS Timestream](https://aws.amazon.com/timestream). ## Building diff --git a/handler.go b/handler.go index 7c95cfa..aeba255 100644 --- a/handler.go +++ b/handler.go @@ -1,3 +1,21 @@ +// Copyright 2020 Dennis Pattmann +// +// 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. +// +// @author Dennis Pattmann +// @copyright 2020 Dennis Pattmann +// @license Apache-2.0 + package main import ( diff --git a/handler_test.go b/handler_test.go index 6e9fbfd..596458e 100644 --- a/handler_test.go +++ b/handler_test.go @@ -1,3 +1,21 @@ +// Copyright 2020 Dennis Pattmann +// +// 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. +// +// @author Dennis Pattmann +// @copyright 2020 Dennis Pattmann +// @license Apache-2.0 + package main import (